diff --git a/.claude/state/current.yaml b/.claude/state/current.yaml new file mode 100644 index 000000000..a91ce6925 --- /dev/null +++ b/.claude/state/current.yaml @@ -0,0 +1,17 @@ +schema_version: '2.0' +session_id: s-1778653243-0ce4eb +role: standalone +status: active +started_at: '2026-05-13T06:20:43Z' +last_heartbeat: '2026-05-28T03:47:33Z' +branch: main +cwd: /Users/dp/software/GitHub/LeapLab/Uni-Lab-OS +current_task: '' +decisions: [] +blockers: [] +artifacts: [] +metrics: + edits: 18 + commits: 0 + errors_fixed: 0 + decisions_made: 0 diff --git a/.claude/state/current.yaml.lock b/.claude/state/current.yaml.lock new file mode 100755 index 000000000..e69de29bb diff --git a/.gitignore b/.gitignore index 12b344d63..01d0c99fd 100644 --- a/.gitignore +++ b/.gitignore @@ -250,5 +250,6 @@ local_test2.py ros-humble-unilabos-msgs-0.9.13-h6403a04_5.tar.bz2 *.bz2 test_config.py +.history diff --git a/docs/reconnection_design.md b/docs/reconnection_design.md new file mode 100644 index 000000000..fc9ce7ce6 --- /dev/null +++ b/docs/reconnection_design.md @@ -0,0 +1,301 @@ +# 断线重连功能设计文档 + +## 需求背景 + +当 edge 端与后端断开连接后重新连接时,需要同步断线期间的状态变化: +- edge 端在启动时会发送 `host_node_ready` 消息给后端 +- 后端需要返回断线之前下发给该 edge 的任务列表 +- edge 端需要检查当前实际状态,并将状态同步给后端 + +## 消息流程 + +``` +Edge Backend + | | + |---> host_node_ready -------->| + | (设备列表、动作列表) | + | | + |<--- host_node_ready_response-| + | (断线前的任务列表) | + | | + |--- 检查本地状态 ---| | + | | + |---> reconnection_sync ------>| + | (实际状态同步) | +``` + +## 数据结构 + +### host_node_ready_response 消息格式 + +```json +{ + "action": "host_node_ready_response", + "data": { + "pending_jobs": [ + { + "job_id": "uuid", + "task_id": "uuid", + "device_id": "device_name", + "action_name": "action_name", + "status": "started|ready|queue", + "timestamp": 1234567890.0 + } + ] + } +} +``` + +### reconnection_sync 消息格式 + +```json +{ + "action": "reconnection_sync", + "data": { + "synced_jobs": [ + { + "job_id": "uuid", + "actual_status": "completed|failed|not_found", + "result": {}, + "error": "error message if failed" + } + ], + "active_jobs": [ + { + "job_id": "uuid", + "device_id": "device_name", + "action_name": "action_name", + "status": "started" + } + ] + } +} +``` + +## 实现方案 + +### 1. 消息处理 (ws_client.py) + +在 `MessageProcessor` 类中添加: + +```python +async def _handle_host_ready_response(self, data: Dict[str, Any]): + """ + 处理 host_node_ready 的响应 + + 后端返回断线前下发的任务列表,需要: + 1. 检查这些任务在 edge 端的实际状态 + 2. 将实际状态同步给后端 + """ + pending_jobs = data.get("pending_jobs", []) + + if not pending_jobs: + logger.info("[Reconnection] No pending jobs from backend") + return + + logger.info(f"[Reconnection] Received {len(pending_jobs)} pending jobs from backend") + + # 收集实际状态 + synced_jobs = [] + active_jobs = [] + + for job_info in pending_jobs: + job_id = job_info.get("job_id") + device_id = job_info.get("device_id") + action_name = job_info.get("action_name") + backend_status = job_info.get("status") + + # 检查本地状态 + actual_status = await self._check_job_actual_status(job_id, device_id, action_name) + + if actual_status["status"] == "completed" or actual_status["status"] == "failed": + # 任务已完成,同步结果 + synced_jobs.append({ + "job_id": job_id, + "actual_status": actual_status["status"], + "result": actual_status.get("result", {}), + "error": actual_status.get("error", "") + }) + elif actual_status["status"] == "running": + # 任务仍在运行 + active_jobs.append({ + "job_id": job_id, + "device_id": device_id, + "action_name": action_name, + "status": "started" + }) + else: + # 任务不存在,可能已被清理 + synced_jobs.append({ + "job_id": job_id, + "actual_status": "not_found", + "error": "Job not found in edge" + }) + + # 发送同步消息 + self.send_message({ + "action": "reconnection_sync", + "data": { + "synced_jobs": synced_jobs, + "active_jobs": active_jobs + } + }) + + logger.info(f"[Reconnection] Synced {len(synced_jobs)} completed jobs, {len(active_jobs)} active jobs") +``` + +### 2. 状态检查 (ws_client.py) + +```python +async def _check_job_actual_status( + self, job_id: str, device_id: str, action_name: str +) -> Dict[str, Any]: + """ + 检查任务的实际状态 + + 返回: + - status: "completed" | "failed" | "running" | "not_found" + - result: 任务结果 (如果已完成) + - error: 错误信息 (如果失败) + """ + # 1. 检查 DeviceActionManager 中的任务状态 + job_info = self.device_manager.get_job_info(job_id) + if job_info: + if job_info.status == JobStatus.STARTED: + return {"status": "running"} + elif job_info.status == JobStatus.QUEUE or job_info.status == JobStatus.READY: + return {"status": "running"} # 排队中也算运行中 + + # 2. 检查 HostNode 中的 ROS2 goal 状态 + host_node = HostNode.get_instance(0) + if host_node: + goal_status = host_node.get_goal_status(job_id) + if goal_status: + if goal_status["is_active"]: + return {"status": "running"} + elif goal_status["is_succeeded"]: + return { + "status": "completed", + "result": goal_status.get("result", {}) + } + elif goal_status["is_failed"]: + return { + "status": "failed", + "error": goal_status.get("error", "Unknown error") + } + + # 3. 检查本地存储的任务结果 (如果有持久化) + from unilabos.app.web.controller import get_job_result + stored_result = get_job_result(job_id) + if stored_result: + return { + "status": stored_result["status"], + "result": stored_result.get("result", {}), + "error": stored_result.get("error", "") + } + + # 4. 任务不存在 + return {"status": "not_found"} +``` + +### 3. HostNode 扩展 (host_node.py) + +在 `HostNode` 类中添加方法: + +```python +def get_goal_status(self, job_id: str) -> Optional[Dict[str, Any]]: + """ + 获取指定 job_id 的 ROS2 goal 状态 + + 返回: + - is_active: 是否正在执行 + - is_succeeded: 是否成功完成 + - is_failed: 是否失败 + - result: 结果数据 (如果已完成) + - error: 错误信息 (如果失败) + """ + with self._goal_handles_lock: + if job_id in self._goal_handles: + goal_handle = self._goal_handles[job_id] + status = goal_handle.status + + return { + "is_active": status in [GoalStatus.STATUS_EXECUTING, GoalStatus.STATUS_ACCEPTED], + "is_succeeded": status == GoalStatus.STATUS_SUCCEEDED, + "is_failed": status in [GoalStatus.STATUS_ABORTED, GoalStatus.STATUS_CANCELED], + "result": self._goal_results.get(job_id, {}), + "error": self._goal_errors.get(job_id, "") + } + + return None +``` + +## 状态处理逻辑 + +### 场景 1: 任务已完成但后端未收到 + +- Edge 检测到任务已完成 +- 通过 `reconnection_sync` 发送完整的结果给后端 +- 后端更新任务状态 + +### 场景 2: 任务仍在执行 + +- Edge 检测到任务仍在运行 +- 通过 `reconnection_sync` 告知后端任务状态为 `started` +- 后端保持任务状态,等待后续的 `job_status` 更新 + +### 场景 3: 任务不存在 + +- Edge 在本地找不到该任务 +- 可能原因: + - 任务从未到达 edge + - 任务已完成并被清理 + - Edge 重启导致内存状态丢失 +- 通过 `reconnection_sync` 告知后端 `not_found` +- 后端决定是否重新下发或标记为失败 + +### 场景 4: 任务在队列中 + +- Edge 检测到任务在排队 +- 通过 `reconnection_sync` 告知后端任务状态为 `queue` +- 后端保持任务状态,等待执行 + +## 注意事项 + +1. **时序问题**: `host_node_ready_response` 可能在 edge 启动后立即到达,此时某些组件可能尚未完全初始化 + - 解决: 在处理前检查 HostNode 是否就绪 + +2. **并发问题**: 在检查状态时,任务状态可能正在变化 + - 解决: 使用锁保护关键数据结构的访问 + +3. **结果持久化**: 如果 edge 重启,内存中的任务状态会丢失 + - 当前方案: 依赖 `get_job_result` 从本地存储读取 + - 未来优化: 考虑将关键任务状态持久化到文件 + +4. **大量任务**: 如果断线时间较长,可能有大量待同步任务 + - 解决: 分批处理,避免单次消息过大 + +## 测试场景 + +1. **正常重连**: edge 断线后立即重连,任务仍在执行 +2. **延迟重连**: edge 断线较长时间后重连,部分任务已完成 +3. **重启重连**: edge 进程重启后重连,内存状态丢失 +4. **多任务重连**: 断线期间有多个设备的多个任务 +5. **并发重连**: 重连时有新任务下发 + +## 实现步骤 + +1. ✅ 在 `MessageProcessor._process_message` 中添加 `host_node_ready_response` 处理分支 +2. ⬜ 实现 `_handle_host_ready_response` 方法 +3. ⬜ 实现 `_check_job_actual_status` 方法 +4. ⬜ 在 `HostNode` 中添加 `get_goal_status` 方法 +5. ⬜ 添加必要的数据结构 (如 `_goal_results`, `_goal_errors`) +6. ⬜ 编写单元测试 +7. ⬜ 集成测试 + +## 后续优化 + +1. 添加任务状态持久化,支持进程重启后恢复 +2. 优化大量任务的同步性能 +3. 添加状态同步的重试机制 +4. 支持增量状态同步 (只同步变化的部分) diff --git a/stat.md b/stat.md new file mode 100644 index 000000000..28bf15f19 --- /dev/null +++ b/stat.md @@ -0,0 +1,4 @@ +cd /Users/dp/software/GitHub/LeapLab && + source /Users/dp/miniforge3/etc/profile.d/conda.sh && + conda activate unilab && +unilab --graph unilabos/test/experiments/fault_injection.json --config unilabos/test/experiments/fault_injection_config.py --ak a3d111bb-571a-4548-aa5d-c58ccca64466 --sk c2450c73-e84c-4319-b25f-b5cc4d575e7e --upload_registry --addr http://127.0.0.1:48197/api/v1 diff --git a/tests/test_decorators.py b/tests/test_decorators.py new file mode 100644 index 000000000..f76d5a766 --- /dev/null +++ b/tests/test_decorators.py @@ -0,0 +1,183 @@ +"""@action 装饰器超时/异常处理扩展单测 + +覆盖: +- 默认参数下的属性值 +- 协程超时被转换为 TimeoutException +- 协程未超时正常返回 +- exception_handling=False 时属性正确 +- get_action_timeout / is_exception_handling_enabled 辅助函数 +- 同步函数装饰后元数据齐全 +""" +import asyncio + +import pytest + +from unilabos.devices.exceptions import TimeoutException +from unilabos.registry.decorators import ( + action, + get_action_meta, + get_action_timeout, + is_exception_handling_enabled, +) + + +class DummyDevice: + """测试用宿主类,wrapper 沿用 *args, **kwargs,self 通过 args[0] 传入""" + + def _get_device_snapshot(self): + return {"step": 1} + + +# ---------- a) 默认参数 ---------- + +def test_default_attrs_async(): + @action() + async def foo(self): + return 1 + + assert foo._action_timeout is None + assert foo._exception_handling is True + + +def test_default_attrs_sync(): + @action() + def bar(self): + return 2 + + assert bar._action_timeout is None + assert bar._exception_handling is True + + +# ---------- b) 协程超时 -> TimeoutException ---------- + +def test_async_timeout_raises_timeout_exception(): + @action(timeout=0.1) + async def slow(self): + await asyncio.sleep(1) + + dev = DummyDevice() + with pytest.raises(TimeoutException) as ei: + asyncio.run(slow(dev)) + # 快照应被正确采集 + assert ei.value.device_snapshot == {"step": 1} + assert "slow" in ei.value.message + + +def test_async_timeout_snapshot_failure_does_not_break(): + """_get_device_snapshot 抛错也应正常抛 TimeoutException""" + + class BadDevice: + def _get_device_snapshot(self): + raise RuntimeError("snapshot broken") + + @action(timeout=0.05) + async def slow(self): + await asyncio.sleep(1) + + with pytest.raises(TimeoutException) as ei: + asyncio.run(slow(BadDevice())) + assert ei.value.device_snapshot == {} + + +# ---------- c) 未超时正常返回 ---------- + +def test_async_within_timeout_returns_value(): + @action(timeout=10) + async def quick(self): + await asyncio.sleep(0) + return 42 + + assert asyncio.run(quick(DummyDevice())) == 42 + + +def test_async_no_timeout_returns_value(): + @action() + async def quick(self): + return "ok" + + assert asyncio.run(quick(DummyDevice())) == "ok" + + +# ---------- d) exception_handling=False ---------- + +def test_exception_handling_disabled(): + @action(exception_handling=False) + async def foo(self): + return None + + assert foo._exception_handling is False + meta = get_action_meta(foo) + assert meta["exception_handling"] is False + + +def test_exception_handling_default_not_in_meta(): + """默认 True 时不写入 meta(沿用 feedback_interval 模式)""" + + @action() + async def foo(self): + return None + + meta = get_action_meta(foo) + assert "exception_handling" not in meta + + +# ---------- e) 辅助函数 ---------- + +def test_get_action_timeout(): + @action(timeout=5.0) + async def foo(self): + return None + + assert get_action_timeout(foo) == 5.0 + + +def test_get_action_timeout_none(): + @action() + async def foo(self): + return None + + assert get_action_timeout(foo) is None + + +def test_is_exception_handling_enabled_true(): + @action() + async def foo(self): + return None + + assert is_exception_handling_enabled(foo) is True + + +def test_is_exception_handling_enabled_false(): + @action(exception_handling=False) + async def foo(self): + return None + + assert is_exception_handling_enabled(foo) is False + + +# ---------- f) 同步函数元数据齐全 ---------- + +def test_sync_function_metadata(): + @action(timeout=3.0, exception_handling=False, default_on_user_timeout="retry") + def bar(self, x): + return x * 2 + + assert bar(DummyDevice(), 5) == 10 + assert bar._action_timeout == 3.0 + assert bar._exception_handling is False + + meta = get_action_meta(bar) + assert meta is not None + assert meta["timeout"] == 3.0 + assert meta["exception_handling"] is False + assert meta["default_on_user_timeout"] == "retry" + + +def test_default_on_user_timeout_default_not_in_meta(): + @action(timeout=1.0) + async def foo(self): + return None + + meta = get_action_meta(foo) + assert meta["timeout"] == 1.0 + assert "default_on_user_timeout" not in meta diff --git a/tests/test_exception_handling.py b/tests/test_exception_handling.py new file mode 100644 index 000000000..e87904a0d --- /dev/null +++ b/tests/test_exception_handling.py @@ -0,0 +1,294 @@ +"""框架层异常处理 + 用户决策回环 端到端测试 + +不依赖 ROS2 环境:FakeNode 内嵌等价的异常处理逻辑(与 BaseROS2DeviceNode 一致)。 +在真实环境中通过 _execute_with_exception_handling 方法验证;此处用 FakeNode 模拟 +即可覆盖核心分支(retry/skip/abort/manual_fix/自定义 action/超时/死循环防护)。 +""" +import asyncio +import logging +import traceback +from typing import Any, Dict, Optional +from unittest.mock import MagicMock + +import pytest + +from unilabos.devices.exceptions import ( + DeviceException, + ModbusConnectionError, + TipPickupError, + UserAction, +) + + +class FakeNode: + """最小化 device_node,方法逻辑与 BaseROS2DeviceNode 中等价""" + + device_id = "fake_device" + uuid = "fake-uuid-1" + + def __init__(self, decision_timeout: float = 5.0): + self._pending_decisions: Dict[str, asyncio.Future] = {} + self._user_decision_timeout = decision_timeout + self.ws_client = MagicMock() + self.ws_client.publish_device_exception_alarm = MagicMock() + + def get_logger(self): + return logging.getLogger("FakeNode") + + def _get_ws_client(self): + return self.ws_client + + async def _execute_with_exception_handling( + self, action_func, action_name, task_id, job_id, action_kwargs, + max_user_iterations: int = 10, + ) -> Any: + iteration = 0 + exc: Optional[DeviceException] = None + while True: + iteration += 1 + if iteration > max_user_iterations: + raise DeviceException( + f"动作 {action_name} 异常处理超过 {max_user_iterations} 轮,强制终止" + ) + try: + return await action_func(**action_kwargs) + except DeviceException as e: + exc = e + decision = await self._handle_device_exception(e, action_name, task_id, job_id) + except Exception as e: + wrapped = DeviceException( + f"未预期异常: {type(e).__name__}: {e}", + suggested_actions=[ + UserAction("retry", "重试"), + UserAction("abort", "终止"), + ], + cause=e, + ) + wrapped.traceback_str = traceback.format_exc() + exc = wrapped + decision = await self._handle_device_exception(wrapped, action_name, task_id, job_id) + + action = decision.get("action", "abort") + if action == "retry": + continue + if action == "skip": + return {"status": "skipped", "reason": decision.get("reason", "user_skip")} + if action == "manual_fix": + continue + if action == "abort": + raise exc + + matched: Optional[UserAction] = None + for ua in (exc.suggested_actions if isinstance(exc, DeviceException) else []): + if ua.action == action: + matched = ua + break + if matched is None or matched.handler is None: + raise exc + + try: + handler_result = await matched.handler(exception=exc, decision=decision) + except DeviceException as he: + exc = he + next_decision = await self._handle_device_exception(he, action_name, task_id, job_id) + act2 = next_decision.get("action", "abort") + if act2 == "retry" or act2 == "manual_fix": + continue + if act2 == "skip": + return {"status": "skipped", "reason": next_decision.get("reason", "user_skip")} + raise he + + then = matched.then + if then == "retry": + continue + if then == "skip": + return {"status": "skipped", "reason": f"after_{action}"} + if then == "continue": + return handler_result + continue + + async def _handle_device_exception(self, exc, action_name, task_id, job_id) -> dict: + alarm = exc.to_alarm_dict( + device_id=self.device_id, device_uuid=self.uuid, + action_name=action_name, task_id=task_id, job_id=job_id, + ) + self.ws_client.publish_device_exception_alarm(alarm) + try: + return await self._wait_for_user_decision(task_id, exc) + except asyncio.TimeoutError: + return {"action": "abort", "reason": "user_decision_timeout"} + + async def _wait_for_user_decision(self, task_id, exc) -> dict: + loop = asyncio.get_event_loop() + fut: asyncio.Future = loop.create_future() + key = f"{task_id}:{exc.message[:32]}" + self._pending_decisions[key] = fut + try: + return await asyncio.wait_for(fut, timeout=self._user_decision_timeout) + finally: + self._pending_decisions.pop(key, None) + + def handle_user_decision(self, task_id, decision): + for key in list(self._pending_decisions.keys()): + if key.startswith(f"{task_id}:"): + fut = self._pending_decisions[key] + if not fut.done(): + fut.set_result(decision) + break + + +def _post_decision(node, decision, delay=0.01): + async def _send(): + await asyncio.sleep(delay) + keys = list(node._pending_decisions.keys()) + if not keys: + return + task_id = keys[0].split(":", 1)[0] + node.handle_user_decision(task_id, decision) + return asyncio.create_task(_send()) + + +@pytest.mark.asyncio +async def test_normal_return(): + node = FakeNode() + async def driver(**kwargs): + return {"ok": True, "v": kwargs.get("v")} + result = await node._execute_with_exception_handling( + driver, "driver", "t1", "j1", {"v": 42}, + ) + assert result == {"ok": True, "v": 42} + node.ws_client.publish_device_exception_alarm.assert_not_called() + + +@pytest.mark.asyncio +async def test_retry_then_success(): + node = FakeNode() + calls = {"n": 0} + async def driver(**kwargs): + calls["n"] += 1 + if calls["n"] == 1: + raise ModbusConnectionError("first fail") + return {"ok": True} + _post_decision(node, {"action": "retry"}) + result = await node._execute_with_exception_handling(driver, "driver", "t2", "j2", {}) + assert result == {"ok": True} + assert calls["n"] == 2 + node.ws_client.publish_device_exception_alarm.assert_called_once() + + +@pytest.mark.asyncio +async def test_abort_raises(): + node = FakeNode() + async def driver(**kwargs): + raise ModbusConnectionError("network down") + _post_decision(node, {"action": "abort"}) + with pytest.raises(ModbusConnectionError): + await node._execute_with_exception_handling(driver, "driver", "t3", "j3", {}) + + +@pytest.mark.asyncio +async def test_skip_returns_skipped(): + node = FakeNode() + async def driver(**kwargs): + raise ModbusConnectionError("fail") + _post_decision(node, {"action": "skip", "reason": "user_skip_here"}) + result = await node._execute_with_exception_handling(driver, "driver", "t4", "j4", {}) + assert result["status"] == "skipped" + assert result["reason"] == "user_skip_here" + + +@pytest.mark.asyncio +async def test_user_decision_timeout_aborts(): + node = FakeNode(decision_timeout=0.05) + async def driver(**kwargs): + raise ModbusConnectionError("net err") + with pytest.raises(ModbusConnectionError): + await node._execute_with_exception_handling(driver, "driver", "t5", "j5", {}) + + +@pytest.mark.asyncio +async def test_custom_action_with_handler_then_retry(): + node = FakeNode() + state = {"tip": 0, "calls": 0} + + async def advance(exception, decision): + state["tip"] += 1 + + async def driver(**kwargs): + state["calls"] += 1 + if state["tip"] == 0: + raise TipPickupError( + "pickup failed", + suggested_actions=[ + UserAction("use_next_tip", "下一个", handler=advance, then="retry"), + UserAction("abort", "终止"), + ], + ) + return {"tip_used": state["tip"]} + + _post_decision(node, {"action": "use_next_tip"}) + result = await node._execute_with_exception_handling(driver, "driver", "t6", "j6", {}) + assert result == {"tip_used": 1} + assert state["calls"] == 2 + assert state["tip"] == 1 + + +@pytest.mark.asyncio +async def test_handler_raises_device_exception_enters_next_round(): + node = FakeNode() + + async def bad_handler(exception, decision): + raise ModbusConnectionError("handler also failed") + + async def driver(**kwargs): + raise TipPickupError( + "pickup failed", + suggested_actions=[ + UserAction("use_next_tip", "下一个", handler=bad_handler, then="retry"), + UserAction("abort", "终止"), + ], + ) + + async def feeder(): + # 第一轮:回 use_next_tip + for _ in range(50): + await asyncio.sleep(0.005) + keys = list(node._pending_decisions.keys()) + if keys: + node.handle_user_decision(keys[0].split(":", 1)[0], {"action": "use_next_tip"}) + break + # 第二轮:handler 抛错后,回 abort + for _ in range(50): + await asyncio.sleep(0.005) + keys = list(node._pending_decisions.keys()) + if keys: + node.handle_user_decision(keys[0].split(":", 1)[0], {"action": "abort"}) + return + + asyncio.create_task(feeder()) + with pytest.raises(ModbusConnectionError): + await node._execute_with_exception_handling(driver, "driver", "t7", "j7", {}) + assert node.ws_client.publish_device_exception_alarm.call_count >= 2 + + +@pytest.mark.asyncio +async def test_max_user_iterations(): + node = FakeNode() + calls = {"n": 0} + async def driver(**kwargs): + calls["n"] += 1 + raise ModbusConnectionError(f"fail {calls['n']}") + + async def auto_retry(): + for _ in range(50): + await asyncio.sleep(0.005) + keys = list(node._pending_decisions.keys()) + if keys: + node.handle_user_decision(keys[0].split(":", 1)[0], {"action": "retry"}) + + asyncio.create_task(auto_retry()) + with pytest.raises(DeviceException) as ei: + await node._execute_with_exception_handling( + driver, "driver", "t8", "j8", {}, max_user_iterations=3, + ) + assert "强制终止" in str(ei.value) diff --git a/tests/test_exceptions.py b/tests/test_exceptions.py new file mode 100644 index 000000000..3dbdcede0 --- /dev/null +++ b/tests/test_exceptions.py @@ -0,0 +1,105 @@ +"""设备异常体系单测""" +from unilabos.devices.exceptions import ( + DeviceException, + DeviceExceptionCategory, + DeviceExceptionSeverity, + UserAction, + TimeoutException, + ParameterError, + ModbusConnectionError, + OPCUAConnectionError, + EmergencyStopError, + PLCStepTimeout, + SensorError, + ResourceConflictError, + TipPickupError, +) + + +def _alarm_kwargs(): + return dict( + device_id="dev-1", + device_uuid="uuid-1", + action_name="do_something", + task_id="task-1", + job_id="job-1", + ) + + +def test_device_exception_defaults(): + exc = DeviceException("base error") + assert exc.category == DeviceExceptionCategory.UNKNOWN + assert exc.severity == DeviceExceptionSeverity.ERROR + + +def test_subclass_category_severity_overrides(): + assert ModbusConnectionError.category == DeviceExceptionCategory.NETWORK + assert ModbusConnectionError.severity == DeviceExceptionSeverity.ERROR + + assert EmergencyStopError.category == DeviceExceptionCategory.HARDWARE + assert EmergencyStopError.severity == DeviceExceptionSeverity.CRITICAL + + assert ParameterError.category == DeviceExceptionCategory.PARAMETER + assert ParameterError.severity == DeviceExceptionSeverity.WARNING + + +def test_to_alarm_dict_has_required_fields(): + exc = ModbusConnectionError("connect fail", device_snapshot={"foo": "bar"}) + d = exc.to_alarm_dict(**_alarm_kwargs()) + for key in ( + "device_id", "action_name", "exception_type", + "suggested_actions", "device_snapshot", "traceback", + "require_confirmation", + ): + assert key in d + assert d["exception_type"] == "ModbusConnectionError" + assert d["device_snapshot"] == {"foo": "bar"} + assert d["require_confirmation"] is True + + +def test_plc_step_timeout_extra_fields(): + exc = PLCStepTimeout("step stuck", current_step=3, expected_step=4) + d = exc.to_alarm_dict(**_alarm_kwargs()) + assert d["current_step"] == 3 + assert d["expected_step"] == 4 + + +def test_tip_pickup_error_extra_fields(): + exc = TipPickupError("pickup fail", tip_position="A1", remaining_tips=5) + d = exc.to_alarm_dict(**_alarm_kwargs()) + assert d["tip_position"] == "A1" + assert d["remaining_tips"] == 5 + + +def test_user_action_handler_not_serialized(): + async def my_handler(exception, decision): + return None + + exc = TipPickupError( + "fail", + tip_position="A1", + remaining_tips=1, + suggested_actions=[ + UserAction("use_next_tip", "下一个", "切换", handler=my_handler), + UserAction("abort", "终止"), + ], + ) + d = exc.to_alarm_dict(**_alarm_kwargs()) + for item in d["suggested_actions"]: + assert set(item.keys()) == {"action", "label", "description"} + assert "handler" not in item + + +def test_default_suggested_actions_non_empty(): + for cls in ( + DeviceException, TimeoutException, ParameterError, + ModbusConnectionError, OPCUAConnectionError, EmergencyStopError, + PLCStepTimeout, SensorError, ResourceConflictError, TipPickupError, + ): + if cls is PLCStepTimeout: + exc = cls("msg", current_step=0, expected_step=1) + elif cls is TipPickupError: + exc = cls("msg", tip_position="A1", remaining_tips=0) + else: + exc = cls("msg") + assert len(exc.suggested_actions) > 0 diff --git a/trace.md b/trace.md new file mode 100644 index 000000000..c92548f4a --- /dev/null +++ b/trace.md @@ -0,0 +1,81 @@ +# Trace: Uni-Lab-OS + +### EARS — Session Start (2026-05-27 14:01) + +- Task: 在设备异常处理的默认操作中添加"跳过"选项 +- Why: 用户需要在设备异常时能够跳过失败的动作继续执行后续步骤,而不是只能重试或终止整个任务 + +**完成情况**: +1. ✅ `DeviceException` 基类 `_default_actions()` 添加 skip(retry → skip → abort) +2. ✅ `base_device_node.py` 未预期异常处理添加 skip +3. ✅ `TimeoutException` 添加 skip(retry → skip → manual_fix → abort) +4. ✅ `ModbusConnectionError` 添加 skip(retry → skip → manual_fix → abort) +5. ✅ `ResourceConflictError` 已有 skip,无需修改 +6. ✅ `ParameterError` 和 `EmergencyStopError` 不适合 skip,保持原样 + +**修改文件**: +- `unilabos/devices/exceptions.py` - 3 处修改 +- `unilabos/ros/nodes/base_device_node.py` - 1 处修改 + +**验证**:所有异常类型的 suggested_actions 都正确包含 skip 选项。 + +### EARS — Progress (2026-05-18 14:30) + +踩坑:conda `unilab` env 里有 pip 装的 unilabos 旧版本(site-packages),GitHub repo 的修改不会被加载。必须在 repo 根目录 `pip install -e .` 覆盖。否则跑的还是云端 bohrium 地址,本地异常处理代码完全不生效。 + +### EARS — Fix (2026-05-18 16:12) + +踩坑:`_handle_device_exception` 中 `_get_ws_client()` 始终返回 None,导致设备异常报警从未上行、前端一直 loading。根因是 `_get_ws_client()` 写的是 `from unilabos.app.communication import CommunicationFactory`,但实际类名是 `CommunicationClientFactory`。`ImportError` 被裸 `except Exception: return None` 静默吞掉。教训:禁止 `except Exception` 兜底返回 None —— 让真实错误自然抛出才能定位问题,符合用户 CLAUDE.md 中"严格控制 try/except"原则。 + +### EARS — Fix (2026-05-21 17:36) + +**问题**:用户点击异常弹窗的"重试/终止任务"按钮后,Edge 侧永远不执行对应操作。 + +**根本原因**:跨线程 Future 唤醒失败 +- `_wait_for_user_decision` 在 ROS2 设备节点的事件循环中创建 Future 并 await +- WebSocket 客户端在**另一个线程/事件循环**中接收决策消息 +- `handle_user_decision` 直接调用 `fut.set_result(decision)` 无法跨线程唤醒 Future +- 导致 `await asyncio.wait_for(fut)` 永远阻塞 + +**解决方案**: +```python +# 错误:直接 set_result(同线程才有效) +fut.set_result(decision) + +# 正确:使用 call_soon_threadsafe 跨线程唤醒 +fut.get_loop().call_soon_threadsafe(fut.set_result, decision) +``` + +**调试过程**:添加详细日志,发现 `fut.set_result()` 被调用但 `await` 没有返回,识别出经典的 asyncio 跨线程问题。 + +**修改文件**:`unilabos/ros/nodes/base_device_node.py:1681` - `handle_user_decision` 方法 + +**知识点**:asyncio.Future 必须在创建它的事件循环中设置结果,跨线程必须用 `call_soon_threadsafe`。 + +### EARS — Fix (2026-05-28 11:27) + +**问题**:用户点击"跳过"操作后,工作流中的 action 块仍然显示绿色边框(success),而不是灰色边框(skipped)。 + +**根本原因**:跳过状态在多个层级被覆盖或未正确传递 +1. **Edge 侧**:`base_device_node.py:1587` 正确返回 `{"status": "skipped"}` +2. **HostNode 层**:`host_node.py:943` 硬编码 `status = "success"`,忽略了 `result_data` 中的 status 字段 +3. **WebSocket 层**:`ws_client.py:1513` 只处理 `["success", "failed"]`,不包含 `"skipped"`,导致任务未被标记为完成 + +**解决方案**: +```python +# 1. host_node.py:943 - 优先读取 result_data 中的 status +result_data = convert_from_ros_msg(result_msg) +status = result_data.get("status", "success") # 之前硬编码为 "success" + +# 2. ws_client.py:1513 - 将 skipped 加入最终状态列表 +if status in ["success", "failed", "skipped"]: # 之前只有 success 和 failed + self.queue_processor.handle_job_completed(item.job_id, status) +``` + +**修改文件**: +- `unilabos/ros/nodes/presets/host_node.py:943` +- `unilabos/app/ws_client.py:1513` +- `Uni-Lab-Cloud/web/src/app/@enterprise/(new)/laboratory/[uuid]/workflow/[workflowid]/components/basic-node.tsx:153`(前端样式已修改) + +**知识点**:状态传递链路中任何一层的硬编码或遗漏都会导致状态丢失。需要追踪完整的数据流:Edge → HostNode → WebSocket → Backend → Frontend。 + diff --git a/trace/trace.jsonl b/trace/trace.jsonl new file mode 100644 index 000000000..4b16fbe3a --- /dev/null +++ b/trace/trace.jsonl @@ -0,0 +1,3 @@ +{"step_type": "decision", "timestamp": "2026-05-18T08:12:58Z", "title": "stuck_thrashing:base_device_node.py", "body": "Thrashing detected: base_device_node.py edited 4 times. Agent must record alternatives_considered."} +{"step_type": "decision", "timestamp": "2026-05-21T09:27:57Z", "title": "stuck_thrashing:base_device_node.py", "body": "Thrashing detected: base_device_node.py edited 4 times. Agent must record alternatives_considered."} +{"step_type": "observation", "timestamp": "2026-05-27T06:01:43Z", "title": "session_start", "body": "Session started in Uni-Lab-OS at 2026-05-27T06:01:43Z. Agent should fill task/why on next response."} diff --git a/unilabos/app/ws_client.py b/unilabos/app/ws_client.py index da39f5ce4..f783254fa 100644 --- a/unilabos/app/ws_client.py +++ b/unilabos/app/ws_client.py @@ -781,6 +781,10 @@ async def _process_message(self, message_type: str, message_data: Dict[str, Any] await self._handle_device_manage(message_data, "remove") elif message_type == "request_restart": await self._handle_request_restart(message_data) + elif message_type == "device_exception_decision": + await self._on_device_exception_decision(message_data) + elif message_type == "host_node_ready_response": + await self._handle_host_ready_response(message_data) else: logger.debug(f"[MessageProcessor] Unknown message type: {message_type}") @@ -1327,6 +1331,31 @@ def do_cleanup(): cleanup_thread.start() logger.info(f"[MessageProcessor] Restart cleanup scheduled") + async def _on_device_exception_decision(self, data: Dict[str, Any]): + """处理后端转发的用户决策,路由到对应 device_node.handle_user_decision""" + task_id = data.get("task_id", "") + device_id = data.get("device_id", "") + decision = { + "action": data.get("action", "abort"), + "reason": data.get("reason", ""), + "extra": data.get("extra", {}), + } + logger.info(f"[DEBUG] 收到异常决策消息: task_id={task_id}, device_id={device_id}, action={decision['action']}") + host_node = HostNode.get_instance(0) + if host_node is None: + logger.warning(f"[MessageProcessor] HostNode 未就绪,丢弃决策 task_id={task_id}") + return + wrapper = host_node.devices_instances.get(device_id) + if wrapper is None: + logger.warning(f"[MessageProcessor] 设备 {device_id} 未找到,丢弃决策 task_id={task_id}") + return + base_node = getattr(wrapper, "_ros_node", None) or wrapper + if not hasattr(base_node, "handle_user_decision"): + logger.warning(f"[MessageProcessor] 设备 {device_id} 节点不支持异常决策") + return + logger.info(f"[DEBUG] 调用设备节点的 handle_user_decision") + base_node.handle_user_decision(task_id, decision) + async def _send_action_state_response( self, device_id: str, @@ -1873,7 +1902,7 @@ def publish_job_status( job_log = format_job_log(item.job_id, item.task_id, item.device_id, item.action_name) # 拦截最终结果状态,与原版本逻辑一致 - if status in ["success", "failed"]: + if status in ["success", "failed", "skipped"]: self._job_running_last_sent.pop(item.job_id, None) host_node = HostNode.get_instance(0) @@ -1931,6 +1960,19 @@ def publish_job_status( logger.trace(f"[WebSocketClient] Job status published: {job_log} - {status}") + def publish_device_exception_alarm(self, alarm_data: dict) -> None: + """上行: 推送设备异常报警到后端""" + if self.is_disabled or not self.is_connected(): + logger.warning( + f"[WebSocketClient] 未连接,无法推送设备异常: {alarm_data.get('device_id')} - {alarm_data.get('action_name')}" + ) + return + message = {"action": "device_exception_alarm", "data": alarm_data} + self.message_processor.send_message(message) + logger.info( + f"[WebSocketClient] device_exception_alarm: {alarm_data.get('device_id')} {alarm_data.get('exception_type')}" + ) + def send_ping(self, ping_id: str, timestamp: float) -> None: """发送ping消息""" if self.is_disabled or not self.is_connected(): diff --git a/unilabos/devices/exceptions.py b/unilabos/devices/exceptions.py new file mode 100644 index 000000000..e81c33084 --- /dev/null +++ b/unilabos/devices/exceptions.py @@ -0,0 +1,220 @@ +"""设备异常基类与具体异常定义 + +设计原则: +1. 所有设备异常继承自 DeviceException +2. 子类通过类属性声明 category/severity (无需 __init__ 设置) +3. suggested_actions 通过 _default_actions() 提供,可被实例覆盖 +4. device_snapshot 在抛出点采集,框架层不负责 +""" +from __future__ import annotations +from dataclasses import dataclass, field +from enum import Enum +from typing import Any, Awaitable, Callable, List, Optional +import traceback + + +class DeviceExceptionCategory(str, Enum): + NETWORK = "network" # 通信类: Modbus/OPC-UA/串口 + HARDWARE = "hardware" # 硬件类: 急停/传感器/电机 + TIMEOUT = "timeout" # 超时类: 步序卡死/动作超时 + PARAMETER = "parameter" # 参数类: 用户输入/范围越界 + RESOURCE = "resource" # 资源类: 位置占用/耗材不足 + UNKNOWN = "unknown" + + +class DeviceExceptionSeverity(str, Enum): + WARNING = "warning" # 可继续,需注意 + ERROR = "error" # 当前任务失败,需处理 + CRITICAL = "critical" # 影响设备安全,需立即处理 + + +@dataclass +class UserAction: + """前端给用户展示的可选操作 + + 通用 action(retry/skip/abort/manual_fix)由框架直接处理。 + 设备特定 action(如 use_next_tip)需提供 handler 回调,框架调用 handler + 后再根据 then 字段决定后续行为(默认 retry)。 + """ + action: str # 通用: retry | skip | abort | manual_fix + # 自定义: 任意字符串,如 use_next_tip + label: str # 按钮文案,如"使用下一个枪头" + description: str = "" # hover 提示 + # 驱动层提供的恢复回调,框架在 retry 前调用。仅在 Edge 侧使用,不序列化 + handler: Optional[Callable[..., Awaitable[Any]]] = field( + default=None, repr=False, compare=False + ) + # handler 执行后的下一步: retry(重新执行原函数) / skip(跳过) / continue(直接返回 handler 结果) + then: str = "retry" + + +class DeviceException(Exception): + """设备异常基类 + + 驱动开发者通过继承此类定义设备特有异常。 + 框架层只需要 catch DeviceException 即可统一处理。 + """ + # 子类通过类属性覆盖 + category: DeviceExceptionCategory = DeviceExceptionCategory.UNKNOWN + severity: DeviceExceptionSeverity = DeviceExceptionSeverity.ERROR + + def __init__( + self, + message: str, + suggested_actions: Optional[List[UserAction]] = None, + device_snapshot: Optional[dict] = None, + cause: Optional[BaseException] = None, + ): + super().__init__(message) + self.message = message + self.suggested_actions = suggested_actions or self._default_actions() + self.device_snapshot = device_snapshot or {} + self.cause = cause + self.traceback_str = traceback.format_exc() + + def _default_actions(self) -> List[UserAction]: + return [ + UserAction("retry", "重试", "重新执行当前操作"), + UserAction("skip", "跳过", "跳过当前操作继续执行"), + UserAction("abort", "终止任务", "停止当前任务"), + ] + + def to_alarm_dict( + self, device_id: str, device_uuid: str, + action_name: str, task_id: str, job_id: str, + ) -> dict: + return { + "device_id": device_id, + "device_uuid": device_uuid, + "action_name": action_name, + "task_id": task_id, + "job_id": job_id, + "exception_type": type(self).__name__, + "category": self.category.value, + "severity": self.severity.value, + "error_message": self.message, + "suggested_actions": [ + {"action": a.action, "label": a.label, "description": a.description} + for a in self.suggested_actions + ], + "device_snapshot": self.device_snapshot, + "traceback": self.traceback_str, + "require_confirmation": True, + } + + +# ==================== 通用异常 ==================== + +class TimeoutException(DeviceException): + """通用超时异常,由装饰器从 asyncio.TimeoutError 转换而来""" + category = DeviceExceptionCategory.TIMEOUT + severity = DeviceExceptionSeverity.ERROR + + def _default_actions(self): + return [ + UserAction("retry", "重试", "延长超时时间再次尝试"), + UserAction("skip", "跳过", "跳过当前操作继续执行"), + UserAction("manual_fix", "手动干预", "现场检查后继续"), + UserAction("abort", "终止任务", "停止当前任务"), + ] + + +class ParameterError(DeviceException): + category = DeviceExceptionCategory.PARAMETER + severity = DeviceExceptionSeverity.WARNING + + def _default_actions(self): + return [ + UserAction("abort", "终止任务", "参数错误需修改后重新提交"), + ] + + +# ==================== 通信类异常 ==================== + +class ModbusConnectionError(DeviceException): + category = DeviceExceptionCategory.NETWORK + severity = DeviceExceptionSeverity.ERROR + + def _default_actions(self): + return [ + UserAction("retry", "重试连接", "重新建立 Modbus 连接"), + UserAction("skip", "跳过", "跳过当前操作继续执行"), + UserAction("manual_fix", "手动检查", "检查网络和电源后继续"), + UserAction("abort", "终止任务", "停止当前任务"), + ] + + +class OPCUAConnectionError(DeviceException): + category = DeviceExceptionCategory.NETWORK + severity = DeviceExceptionSeverity.ERROR + + +# ==================== 硬件类异常 ==================== + +class EmergencyStopError(DeviceException): + """急停异常 - 默认 critical,弹窗不自动关闭""" + category = DeviceExceptionCategory.HARDWARE + severity = DeviceExceptionSeverity.CRITICAL + + def _default_actions(self): + return [ + UserAction("manual_fix", "解除急停", "现场解除急停按钮后继续"), + UserAction("abort", "终止任务", "停止任务"), + ] + + +class PLCStepTimeout(DeviceException): + """PLC 步序超时 - 步序号卡住""" + category = DeviceExceptionCategory.TIMEOUT + severity = DeviceExceptionSeverity.ERROR + + def __init__(self, message: str, current_step: int = -1, + expected_step: int = -1, **kwargs): + super().__init__(message, **kwargs) + self.current_step = current_step + self.expected_step = expected_step + + def to_alarm_dict(self, **kwargs) -> dict: + d = super().to_alarm_dict(**kwargs) + d["current_step"] = self.current_step + d["expected_step"] = self.expected_step + return d + + +class SensorError(DeviceException): + """传感器异常: 液位/温度/压力等读数异常""" + category = DeviceExceptionCategory.HARDWARE + severity = DeviceExceptionSeverity.ERROR + + +# ==================== 资源类异常 ==================== + +class ResourceConflictError(DeviceException): + """资源冲突: 位置占用 / 耗材不足""" + category = DeviceExceptionCategory.RESOURCE + severity = DeviceExceptionSeverity.WARNING + + def _default_actions(self): + return [ + UserAction("retry", "等待重试", "等待资源释放后重试"), + UserAction("skip", "跳过该步", "跳过当前动作继续下一步"), + UserAction("abort", "终止任务", "停止任务"), + ] + + +class TipPickupError(DeviceException): + """枪头拾取失败""" + category = DeviceExceptionCategory.HARDWARE + severity = DeviceExceptionSeverity.ERROR + + def __init__(self, message: str, tip_position: str = "", + remaining_tips: int = 0, **kwargs): + super().__init__(message, **kwargs) + self.tip_position = tip_position + self.remaining_tips = remaining_tips + + def to_alarm_dict(self, **kwargs) -> dict: + d = super().to_alarm_dict(**kwargs) + d["tip_position"] = self.tip_position + d["remaining_tips"] = self.remaining_tips + return d diff --git a/unilabos/devices/virtual/fault_injection_device.py b/unilabos/devices/virtual/fault_injection_device.py new file mode 100644 index 000000000..2ce7499be --- /dev/null +++ b/unilabos/devices/virtual/fault_injection_device.py @@ -0,0 +1,220 @@ +""" +故障注入设备 - 用于异常处理 e2e 联调 + +通过 @action 触发不同 DeviceException 子类,验证: +- timeout 自动转 TimeoutException +- 自定义异常上抛 → Edge 上报 alarm → 前端弹窗 → 用户决策 → 恢复 +""" + +import asyncio +import logging +from typing import Any, Dict, List, Optional + +from typing_extensions import TypedDict + +from unilabos.devices.exceptions import ( + EmergencyStopError, + ModbusConnectionError, + PLCStepTimeout, + SensorError, + TipPickupError, + UserAction, +) +from unilabos.registry.decorators import action, device, not_action +from unilabos.ros.nodes.base_device_node import BaseROS2DeviceNode + + +class SimpleResult(TypedDict): + success: bool + message: str + + +@device( + id="fault_injection_device", + display_name="故障注入设备", + category=["virtual_device"], + description="按 fault_type 主动抛出各类 DeviceException 用于 e2e 测试", +) +class FaultInjectionDevice: + """故障注入设备,依据传入参数 fault_type 抛出不同异常。""" + + _ros_node: BaseROS2DeviceNode + + def __init__( + self, + device_id: Optional[str] = None, + config: Optional[Dict[str, Any]] = None, + **kwargs, + ): + if device_id is None and "id" in kwargs: + device_id = kwargs.pop("id") + if config is None and "config" in kwargs: + config = kwargs.pop("config") + + self.device_id = device_id or "fault_injection_device" + self.config = config or {} + self.logger = logging.getLogger(f"FaultInjectionDevice.{self.device_id}") + self.data: Dict[str, Any] = {} + + # 用于 use_next_tip 自定义恢复 handler 计数 + self._tip_index = 0 + + @not_action + def post_init(self, ros_node: BaseROS2DeviceNode): + self._ros_node = ros_node + + # ----------- 自定义恢复 handler ----------- + + @not_action + async def _use_next_tip(self, **kwargs) -> Dict[str, Any]: + """用户选择"使用下一个 tip"时调用,跳过当前编号继续。""" + self._tip_index += 1 + self.logger.info(f"[fault_injection] 切换到下一个 tip: index={self._tip_index}") + return {"success": True, "tip_index": self._tip_index} + + # ----------- @action: 普通正常调用 ----------- + + @action(description="正常调用,立即返回成功") + async def run_ok(self) -> SimpleResult: + self.logger.info("[fault_injection] run_ok 正常执行") + await asyncio.sleep(0.2) + return {"success": True, "message": "ok"} + + # ----------- @action: 超时(timeout 触发) ----------- + + @action(description="模拟长耗时操作,触发 timeout", timeout=2.0) + async def run_long(self, duration: float = 5.0) -> SimpleResult: + """sleep duration 秒。当 duration > timeout(2s) 时触发 TimeoutException。""" + self.logger.info(f"[fault_injection] run_long sleep {duration}s") + await asyncio.sleep(duration) + return {"success": True, "message": f"slept {duration}s"} + + # ----------- @action: Modbus 连接异常 ----------- + + @action(description="抛出 ModbusConnectionError") + async def raise_modbus_error(self) -> SimpleResult: + self.logger.warning("[fault_injection] 抛出 ModbusConnectionError") + raise ModbusConnectionError( + message="Modbus 端口连接失败 (模拟)", + device_snapshot={"port": "/dev/ttyUSB0", "baudrate": 9600}, + ) + + # ----------- @action: 急停异常(critical) ----------- + + @action(description="抛出 EmergencyStopError,critical 不可关闭") + async def raise_emergency_stop(self) -> SimpleResult: + self.logger.warning("[fault_injection] 抛出 EmergencyStopError") + raise EmergencyStopError( + message="急停按钮已触发 (模拟)", + ) + + # ----------- @action: PLC 步序超时 ----------- + + @action(description="抛出 PLCStepTimeout") + async def raise_plc_step_timeout(self) -> SimpleResult: + self.logger.warning("[fault_injection] 抛出 PLCStepTimeout") + raise PLCStepTimeout( + message="PLC 步序 step_5 长时间未变化 (模拟)", + device_snapshot={"current_step": 5, "elapsed_seconds": 120}, + ) + + # ----------- @action: 传感器异常 ----------- + + @action(description="抛出 SensorError") + async def raise_sensor_error(self) -> SimpleResult: + self.logger.warning("[fault_injection] 抛出 SensorError") + raise SensorError( + message="温度传感器读数异常 (模拟)", + device_snapshot={"sensor": "temp_1", "value": -999.0}, + ) + + # ----------- @action: 取头失败(带自定义 handler) ----------- + + @action(description="抛出 TipPickupError,提供 use_next_tip 自定义恢复") + async def raise_tip_pickup_error(self) -> SimpleResult: + self.logger.warning("[fault_injection] 抛出 TipPickupError") + raise TipPickupError( + message=f"tip {self._tip_index} 取头失败 (模拟)", + device_snapshot={"tip_index": self._tip_index}, + suggested_actions=[ + UserAction(action="retry", label="重试当前 tip"), + UserAction( + action="use_next_tip", + label="使用下一个 tip", + handler=self._use_next_tip, + ), + UserAction(action="skip", label="跳过此步骤"), + UserAction(action="abort", label="中止任务"), + ], + ) + + # =========== 同步版本驱动函数(用于 simple backend 测试) =========== + + # =========== 同步版本驱动函数(注意:同步函数不支持异常处理回环)=========== + # + # 重要说明:框架的 DeviceException 异常处理机制(上报 alarm → 前端弹窗 → 用户决策) + # 只对异步函数生效。同步函数抛出异常后只会被记录到日志,不会触发前端弹窗。 + # + # 如果需要测试异常处理,请使用上面的异步版本(run_ok、raise_modbus_error 等)。 + # 以下同步版本仅用于演示同步函数的写法。 + + @action(description="同步版本:正常调用", exception_handling=True) + def run_ok_sync(self) -> SimpleResult: + """同步版本的正常调用,不使用 async/await""" + self.logger.info("[fault_injection] run_ok_sync 正常执行(同步)") + import time + time.sleep(0.2) + return {"success": True, "message": "ok (sync)"} + + @action(description="同步版本:模拟长耗时触发超时", timeout=2.0, exception_handling=True) + def run_long_sync(self, duration: float = 5.0) -> SimpleResult: + """同步版本:sleep duration 秒。当 duration > timeout(2s) 时触发 TimeoutException。""" + self.logger.info(f"[fault_injection] run_long_sync sleep {duration}s") + import time + time.sleep(duration) + return {"success": True, "message": f"slept {duration}s (sync)"} + + @action(description="同步版本:抛出 ModbusConnectionError", exception_handling=True) + def raise_modbus_error_sync(self) -> SimpleResult: + """同步版本的 Modbus 异常(注意:不会触发前端弹窗)""" + self.logger.warning("[fault_injection] 抛出 ModbusConnectionError(同步)") + raise ModbusConnectionError( + message="Modbus 端口连接失败 (模拟-同步)", + device_snapshot={"port": "/dev/ttyUSB0", "baudrate": 9600}, + ) + + @action(description="同步版本:抛出 SensorError", exception_handling=True) + def raise_sensor_error_sync(self) -> SimpleResult: + """同步版本的传感器异常(注意:不会触发前端弹窗)""" + self.logger.warning("[fault_injection] 抛出 SensorError(同步)") + raise SensorError( + message="温度传感器读数异常 (模拟-同步)", + device_snapshot={"sensor": "temp_1", "value": -999.0}, + ) + + @action(description="同步版本:抛出 TipPickupError", exception_handling=True) + def raise_tip_pickup_error_sync(self) -> SimpleResult: + """同步版本的取头失败异常(注意:不会触发前端弹窗)""" + self.logger.warning("[fault_injection] 抛出 TipPickupError(同步)") + raise TipPickupError( + message=f"tip {self._tip_index} 取头失败 (模拟-同步)", + device_snapshot={"tip_index": self._tip_index}, + suggested_actions=[ + UserAction(action="retry", label="重试当前 tip"), + UserAction( + action="use_next_tip", + label="使用下一个 tip", + handler=self._use_next_tip, + ), + UserAction(action="skip", label="跳过此步骤"), + UserAction(action="abort", label="中止任务"), + ], + ) + + @action(description="同步版本:抛出 EmergencyStopError", exception_handling=True) + def raise_emergency_stop_sync(self) -> SimpleResult: + """同步版本的急停异常(注意:不会触发前端弹窗)""" + self.logger.warning("[fault_injection] 抛出 EmergencyStopError(同步)") + raise EmergencyStopError( + message="急停按钮已触发 (模拟-同步)", + ) diff --git a/unilabos/registry/decorators.py b/unilabos/registry/decorators.py index 927376e66..6180a3401 100644 --- a/unilabos/registry/decorators.py +++ b/unilabos/registry/decorators.py @@ -357,6 +357,9 @@ def action( parent: bool = False, node_type: Optional["NodeType"] = None, feedback_interval: Optional[float] = None, + timeout: Optional[float] = None, + exception_handling: bool = True, + default_on_user_timeout: str = "abort", ): """ 动作方法装饰器 @@ -389,6 +392,10 @@ def AddProtocol(self): ... parent: 若为 True,当方法参数为空 (*args, **kwargs) 时,通过 MRO 从父类获取真实方法参数 node_type: 动作的节点类型 (NodeType.ILAB / NodeType.MANUAL_CONFIRM)。 不填写时不写入注册表。 + timeout: 动作超时秒数。None 表示不限时;协程函数超时后自动转换为 + TimeoutException 走异常处理流程 + exception_handling: 是否启用异常处理 + 用户决策回环 (默认 True) + default_on_user_timeout: 用户决策超时时默认动作 ("abort"/"retry"/"skip") """ def decorator(func: F) -> F: @@ -397,10 +404,50 @@ def decorator(func: F) -> F: if _asyncio.iscoroutinefunction(func): @wraps(func) async def wrapper(*args, **kwargs): - return await func(*args, **kwargs) + # 未设置 timeout:保持透传 + if timeout is None: + return await func(*args, **kwargs) + # 设置 timeout:用 asyncio.wait_for 包裹。 + # 当前线程若没有 running asyncio loop(rclpy executor 驱动场景), + # 退化为把协程提交到 ROS2DeviceNode._asyncio_loop 上跑并同步等结果。 + try: + _asyncio.get_running_loop() + has_running_loop = True + except RuntimeError: + has_running_loop = False + + try: + if has_running_loop: + return await _asyncio.wait_for(func(*args, **kwargs), timeout=timeout) + from unilabos.ros.nodes.base_device_node import ROS2DeviceNode + target_loop = ROS2DeviceNode.get_asyncio_loop() + if target_loop is None or not target_loop.is_running(): + # 没有可用 asyncio loop,降级为直接 await,不做 timeout + return await func(*args, **kwargs) + cfuture = _asyncio.run_coroutine_threadsafe( + _asyncio.wait_for(func(*args, **kwargs), timeout=timeout), + target_loop, + ) + return cfuture.result() + except _asyncio.TimeoutError as e: + # 延迟 import 避免循环依赖 + from unilabos.devices.exceptions import TimeoutException + # 采集设备快照(self 在 args[0]),失败不影响异常抛出 + snapshot = {} + if args and hasattr(args[0], "_get_device_snapshot"): + try: + snapshot = args[0]._get_device_snapshot() + except Exception: + pass + raise TimeoutException( + f"动作 {func.__name__} 执行超时 (>{timeout}s)", + device_snapshot=snapshot, + cause=e, + ) else: @wraps(func) def wrapper(*args, **kwargs): + # 同步函数:保持透传,超时由框架层 run_in_executor 包装处理 return func(*args, **kwargs) # action_type 为哨兵值 => 用户没传, 视为 None (UniLabJsonCommand) @@ -424,7 +471,17 @@ def wrapper(*args, **kwargs): meta["feedback_interval"] = feedback_interval if node_type is not None: meta["node_type"] = node_type.value if isinstance(node_type, NodeType) else str(node_type) + # 异常处理相关元数据:沿用 "不为默认值才加" 原则 + if timeout is not None: + meta["timeout"] = timeout + if exception_handling is not True: + meta["exception_handling"] = exception_handling + if default_on_user_timeout != "abort": + meta["default_on_user_timeout"] = default_on_user_timeout wrapper._action_registry_meta = meta # type: ignore[attr-defined] + # 框架层快速判断标记 + wrapper._exception_handling = exception_handling # type: ignore[attr-defined] + wrapper._action_timeout = timeout # type: ignore[attr-defined] # 设置 _is_always_free 保持与旧 @always_free 装饰器兼容 if always_free: @@ -445,6 +502,16 @@ def has_action_decorator(func) -> bool: return hasattr(func, "_action_registry_meta") +def get_action_timeout(func) -> Optional[float]: + """获取动作的超时秒数 (None 表示不限时)""" + return getattr(func, "_action_timeout", None) + + +def is_exception_handling_enabled(func) -> bool: + """该动作是否启用异常处理流程""" + return getattr(func, "_exception_handling", False) + + # --------------------------------------------------------------------------- # @resource 类/函数装饰器 # --------------------------------------------------------------------------- diff --git a/unilabos/ros/nodes/base_device_node.py b/unilabos/ros/nodes/base_device_node.py index 3177d61b4..9fc1fa757 100644 --- a/unilabos/ros/nodes/base_device_node.py +++ b/unilabos/ros/nodes/base_device_node.py @@ -444,6 +444,10 @@ def __init__( max_workers=max(len(action_value_mappings), 1), thread_name_prefix=f"ROSDevice{self.device_id}" ) + # 设备异常处理:等待用户决策的 Future 表 + self._pending_decisions: Dict[str, asyncio.Future] = {} + self._user_decision_timeout: float = 300.0 + self._append_resource_lock = RclpyAsyncMutex(name=f"AR:{device_id}") # 创建资源管理客户端 @@ -1548,6 +1552,180 @@ def get_real_function(self, instance, attr_name): obj = getattr(instance, attr_name) return obj, get_type_hints(obj) + # ================================================================ + # 设备异常处理 - 用户决策回环 + # ================================================================ + + async def _execute_with_exception_handling( + self, + action_func, + action_name: str, + task_id: str, + job_id: str, + action_kwargs: dict, + max_user_iterations: int = 10, + ) -> Any: + """带异常处理 + 用户决策回环的动作执行主循环 + + - DeviceException 抛出 → 推送报警 → 等待决策 → 分支 + - 其他异常 → 包装为 UNKNOWN DeviceException 后同样流程 + - 通用 action: retry/skip/manual_fix/abort + - 自定义 action: 在 exc.suggested_actions 中查 handler,按 then 决定下一步 + """ + from unilabos.devices.exceptions import DeviceException, UserAction + + iteration = 0 + exc: Optional[DeviceException] = None + while True: + iteration += 1 + if iteration > max_user_iterations: + raise DeviceException( + f"动作 {action_name} 异常处理超过 {max_user_iterations} 轮,强制终止" + ) + + try: + return await action_func(**action_kwargs) + except DeviceException as e: + exc = e + decision = await self._handle_device_exception(e, action_name, task_id, job_id) + except Exception as e: + wrapped = DeviceException( + f"未预期异常: {type(e).__name__}: {e}", + suggested_actions=[ + UserAction("retry", "重试", "重新执行"), + UserAction("skip", "跳过", "跳过当前操作继续执行"), + UserAction("abort", "终止", "终止任务"), + ], + cause=e, + ) + wrapped.traceback_str = traceback.format_exc() + exc = wrapped + decision = await self._handle_device_exception(wrapped, action_name, task_id, job_id) + + action = decision.get("action", "abort") + self.get_logger().info(f"[DEBUG] 用户决策 action={action}, reason={decision.get('reason', '')}") + + if action == "retry": + self.get_logger().info(f"[DEBUG] 执行 retry,重新执行动作") + continue + if action == "skip": + self.get_logger().info(f"[DEBUG] 执行 skip,跳过动作") + return {"status": "skipped", "reason": decision.get("reason", "user_skip")} + if action == "manual_fix": + self.get_logger().info(f"[DEBUG] 执行 manual_fix,重新执行动作") + continue + if action == "abort": + self.get_logger().info(f"[DEBUG] 执行 abort,终止任务") + raise exc + + # 自定义 action: 找 handler + matched: Optional[UserAction] = None + for ua in (exc.suggested_actions if isinstance(exc, DeviceException) else []): + if ua.action == action: + matched = ua + break + + if matched is None or matched.handler is None: + self.get_logger().warning( + f"未知决策 action={action} 且无 handler,fallback 为 abort" + ) + raise exc + + try: + handler_result = await matched.handler(exception=exc, decision=decision) + except DeviceException as he: + # handler 自身抛 DeviceException → 进入下一轮决策 + exc = he + # 直接发起一次决策,然后回到主循环顶端按新决策处理 + next_decision = await self._handle_device_exception(he, action_name, task_id, job_id) + # 把新决策塞回 action_func 重试前先处理:简化做法 — 复用 continue 让外层捕获 + # 由于外层 try 已不再进入,这里手动处理 next_decision + action = next_decision.get("action", "abort") + if action == "retry" or action == "manual_fix": + continue + if action == "skip": + return {"status": "skipped", "reason": next_decision.get("reason", "user_skip")} + if action == "abort": + raise he + # 自定义 action 继续套用主循环逻辑:这里简化为 abort + raise he + + then = matched.then + if then == "retry": + continue + if then == "skip": + return {"status": "skipped", "reason": f"after_{action}"} + if then == "continue": + return handler_result + continue + + async def _handle_device_exception( + self, + exc, + action_name: str, + task_id: str, + job_id: str, + ) -> dict: + """推送异常报警并等待用户决策,超时默认 abort""" + alarm_data = exc.to_alarm_dict( + device_id=self.device_id, + device_uuid=self.uuid, + action_name=action_name, + task_id=task_id, + job_id=job_id, + ) + self.get_logger().error( + f"[DeviceException] {action_name} 抛出 {type(exc).__name__}: {exc.message}" + ) + + ws_client = self._get_ws_client() + ws_client.publish_device_exception_alarm(alarm_data) + + self.get_logger().info(f"[DEBUG] 开始等待用户决策: task_id={task_id}") + try: + decision = await self._wait_for_user_decision(task_id, exc) + self.get_logger().info(f"[DEBUG] _handle_device_exception 收到决策: {decision}") + return decision + except asyncio.TimeoutError: + self.get_logger().warning( + f"[DeviceException] 用户决策超时,默认 abort: {action_name}" + ) + return {"action": "abort", "reason": "user_decision_timeout"} + + async def _wait_for_user_decision(self, task_id: str, exc) -> dict: + """通过 Future 阻塞等待用户决策""" + loop = asyncio.get_event_loop() + fut: asyncio.Future = loop.create_future() + key = f"{task_id}:{exc.message[:32]}" + self._pending_decisions[key] = fut + try: + result = await asyncio.wait_for(fut, timeout=self._user_decision_timeout) + self.get_logger().info(f"[DEBUG] _wait_for_user_decision 返回: {result}") + return result + finally: + self._pending_decisions.pop(key, None) + + def handle_user_decision(self, task_id: str, decision: dict): + """由 ws_client 在收到 device_exception_decision 时调用""" + self.get_logger().info(f"[DEBUG] 收到用户决策: task_id={task_id}, decision={decision}") + for key in list(self._pending_decisions.keys()): + if key.startswith(f"{task_id}:"): + fut = self._pending_decisions[key] + if not fut.done(): + self.get_logger().info(f"[DEBUG] 设置 Future 结果: key={key}") + # 使用 call_soon_threadsafe 确保跨线程安全地设置结果 + fut.get_loop().call_soon_threadsafe(fut.set_result, decision) + else: + self.get_logger().warning(f"[DEBUG] Future 已完成: key={key}") + break + else: + self.get_logger().warning(f"[DEBUG] 未找到匹配的 pending_decision, task_id={task_id}, 当前 keys={list(self._pending_decisions.keys())}") + + def _get_ws_client(self): + """获取通信客户端(单例),节点无法直接持有 ws_client 时通过工厂取得""" + from unilabos.app.communication import CommunicationClientFactory + return CommunicationClientFactory.get_client() + def _create_execute_callback(self, action_name, action_value_mapping): """创建动作执行回调函数""" @@ -1652,7 +1830,58 @@ def ACTION(**kwargs): time_start = time.time() time_overall = 100 future = None - if not error_skip: + # ──── 异常处理新路径:启用时走 _execute_with_exception_handling ──── + from unilabos.registry.decorators import is_exception_handling_enabled, get_action_timeout + use_exception_handling = (not error_skip) and is_exception_handling_enabled(ACTION) + if use_exception_handling: + action_timeout = get_action_timeout(ACTION) + ctx = getattr(self, "_current_job_context", None) or {} + task_id = (getattr(goal, "task_id", "") or "") or ctx.get("task_id", "") or "" + job_id = (getattr(goal, "job_id", "") or "") or ctx.get("job_id", "") or "" + self.get_logger().warn( + f"[DEBUG-EXC-CTX] action={ACTION.__name__} task_id={task_id!r} job_id={job_id!r} ctx={ctx!r}" + ) + + async def _wrapped_action(**kwargs): + if asyncio.iscoroutinefunction(ACTION): + return await ACTION(**kwargs) + loop = asyncio.get_event_loop() + import functools as _ft + return await loop.run_in_executor( + self._executor, _ft.partial(ACTION, **kwargs) + ) + + async def _wrapped_with_timeout(**kwargs): + # 同步函数 + timeout:由框架层用 wait_for 包装,捕获 TimeoutError 转 TimeoutException + if action_timeout is not None and not asyncio.iscoroutinefunction(ACTION): + try: + return await asyncio.wait_for( + _wrapped_action(**kwargs), timeout=action_timeout + ) + except asyncio.TimeoutError as e: + from unilabos.devices.exceptions import TimeoutException + raise TimeoutException( + f"动作 {ACTION.__name__} 执行超时 (>{action_timeout}s)", + cause=e, + ) + return await _wrapped_action(**kwargs) + + try: + action_return_value = await self._execute_with_exception_handling( + action_func=_wrapped_with_timeout, + action_name=ACTION.__name__, + task_id=task_id, + job_id=job_id, + action_kwargs=action_kwargs, + ) + execution_success = True + except Exception as _: + execution_error = traceback.format_exc() + execution_success = False + error( + f"动作 {ACTION.__name__} 异常处理后仍失败\n{traceback.format_exc()}" + ) + elif not error_skip: # 将阻塞操作放入线程池执行 if asyncio.iscoroutinefunction(ACTION): try: @@ -1855,6 +2084,12 @@ async def _wake(): attr_name, get_result_info_str(execution_error, execution_success, action_return_value), ) + elif attr_name == "status": + # 如果 action_return_value 包含 status 字段(如 skipped),则使用它 + if isinstance(action_return_value, dict) and "status" in action_return_value: + setattr(result_msg, attr_name, action_return_value["status"]) + else: + setattr(result_msg, attr_name, "success" if execution_success else "failed") self.lab_logger().trace(f"动作 {action_name} 完成并返回结果") return result_msg @@ -2098,6 +2333,27 @@ async def _execute_driver_command_async(self, string: str): ) raise JsonCommandInitError(f"ResourceSlot列表参数转换失败: {arg_name}") + # 启用异常处理时,走用户决策回环;并且因当前线程通常无 asyncio loop, + # 提交到 ROS2DeviceNode._asyncio_loop 上跑(与 @action wrapper case B 一致) + from unilabos.registry.decorators import is_exception_handling_enabled + if is_exception_handling_enabled(function): + target_loop = ROS2DeviceNode.get_asyncio_loop() + if target_loop is not None and target_loop.is_running(): + ctx = getattr(self, "_current_job_context", None) or {} + self.get_logger().warn( + f"[DEBUG-EXC-CTX-JSON] action={function_name} ctx={ctx!r}" + ) + cfuture = asyncio.run_coroutine_threadsafe( + self._execute_with_exception_handling( + action_func=function, + action_name=function_name, + task_id=ctx.get("task_id", "") or "", + job_id=ctx.get("job_id", "") or "", + action_kwargs=function_args, + ), + target_loop, + ) + return cfuture.result() return await function(**function_args) except KeyError as ex: raise JsonCommandInitError( diff --git a/unilabos/ros/nodes/presets/host_node.py b/unilabos/ros/nodes/presets/host_node.py index 9e34c16b4..754c7eff6 100644 --- a/unilabos/ros/nodes/presets/host_node.py +++ b/unilabos/ros/nodes/presets/host_node.py @@ -835,6 +835,14 @@ def send_goal( action_client: ActionClient = self._action_clients[action_id] goal_msg = convert_to_ros_msg(action_client._action_type.Goal(), action_kwargs) + # 把当前 job 上下文写到目标 device_node,异常处理时 alarm 才能携带 task_id/job_id + target_wrapper = self.devices_instances.get(device_id) + if target_wrapper is not None and getattr(target_wrapper, "_ros_node", None) is not None: + target_wrapper._ros_node._current_job_context = { + "task_id": item.task_id, + "job_id": item.job_id, + } + # self.lab_logger().trace(f"[Host Node] Sending goal for {action_id}: {str(goal_msg)[:1000]}") self.lab_logger().trace(f"[Host Node] Sending goal for {action_id}: {action_kwargs}") self.lab_logger().trace(f"[Host Node] Sending goal for {action_id}: {goal_msg}") @@ -932,13 +940,17 @@ def get_result_callback(self, item: "QueueItem", action_id: str, future) -> None return_info = serialize_result_info("Job was cancelled", False, {}) else: result_data = convert_from_ros_msg(result_msg) - status = "success" + # 优先检查 result_data 中的 status 字段(支持 skipped 等状态) + status = result_data.get("status", "success") return_info_str = result_data.get("return_info") if return_info_str is not None: try: return_info = json.loads(return_info_str) - # 适配后端的一些额外处理 + # 检查 return_value 中是否有 status 字段(跳过操作会返回 {"status": "skipped"}) return_value = return_info.get("return_value") + if isinstance(return_value, dict) and "status" in return_value: + status = return_value["status"] + # 适配后端的一些额外处理 if isinstance(return_value, dict): unilabos_samples = return_value.pop(RETURN_UNILABOS_SAMPLES, None) if isinstance(unilabos_samples, list) and unilabos_samples: @@ -949,7 +961,7 @@ def get_result_callback(self, item: "QueueItem", action_id: str, future) -> None ) return_info["samples"] = unilabos_samples suc = return_info.get("suc", False) - if not suc: + if not suc and status == "success": status = "failed" except json.JSONDecodeError: status = "failed" diff --git a/unilabos/test/experiments/fault_injection.json b/unilabos/test/experiments/fault_injection.json new file mode 100644 index 000000000..7d2d73a69 --- /dev/null +++ b/unilabos/test/experiments/fault_injection.json @@ -0,0 +1,15 @@ +{ + "nodes": [ + { + "id": "fault_injection_device", + "name": "fault_injection_device", + "type": "device", + "class": "fault_injection_device", + "parent": null, + "children": [], + "config": {}, + "data": {} + } + ], + "links": [] +} diff --git a/unilabos/test/experiments/fault_injection_config.py b/unilabos/test/experiments/fault_injection_config.py new file mode 100644 index 000000000..ce7bbf3ca --- /dev/null +++ b/unilabos/test/experiments/fault_injection_config.py @@ -0,0 +1,18 @@ +# fault_injection e2e 测试用配置 +# ak/sk 请替换为本地 Go 后端创建的实验室凭证 + +class BasicConfig: + ak = "REPLACE_WITH_LAB_AK" + sk = "REPLACE_WITH_LAB_SK" + machine_name = "fault_injection_edge" + + +class WSConfig: + reconnect_interval = 5 + max_reconnect_attempts = 999 + ping_interval = 30 + + +class HTTPConfig: + # 指向本地 Go 后端 + remote_addr = "http://127.0.0.1:48197/api/v1" diff --git a/unilabos/test/experiments/registry_cache.pkl b/unilabos/test/experiments/registry_cache.pkl new file mode 100644 index 000000000..6345ea7e2 Binary files /dev/null and b/unilabos/test/experiments/registry_cache.pkl differ diff --git a/unilabos/test/experiments/req_device_registry_upload.json b/unilabos/test/experiments/req_device_registry_upload.json new file mode 100644 index 000000000..39d1e682c --- /dev/null +++ b/unilabos/test/experiments/req_device_registry_upload.json @@ -0,0 +1,61699 @@ +{ + "resources": [ + { + "id": "fault_injection_device", + "category": [ + "virtual_device" + ], + "class": { + "module": "unilabos.devices.virtual.fault_injection_device:FaultInjectionDevice", + "status_types": {}, + "action_value_mappings": { + "raise_emergency_stop": { + "type": "UniLabJsonCommandAsync", + "goal": {}, + "feedback": {}, + "result": {}, + "schema": { + "title": "raise_emergency_stop参数", + "description": "抛出 EmergencyStopError,critical 不可关闭", + "type": "object", + "properties": { + "goal": { + "type": "object", + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "_unilabos_placeholder_info": {} + }, + "feedback": {}, + "result": { + "properties": { + "success": { + "title": "Success", + "type": "boolean" + }, + "message": { + "title": "Message", + "type": "string" + } + }, + "required": [ + "success", + "message" + ], + "title": "SimpleResult", + "type": "object" + } + }, + "required": [ + "goal" + ] + }, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "feedback_interval": 1.0 + }, + "raise_modbus_error": { + "type": "UniLabJsonCommandAsync", + "goal": {}, + "feedback": {}, + "result": {}, + "schema": { + "title": "raise_modbus_error参数", + "description": "抛出 ModbusConnectionError", + "type": "object", + "properties": { + "goal": { + "type": "object", + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "_unilabos_placeholder_info": {} + }, + "feedback": {}, + "result": { + "properties": { + "success": { + "title": "Success", + "type": "boolean" + }, + "message": { + "title": "Message", + "type": "string" + } + }, + "required": [ + "success", + "message" + ], + "title": "SimpleResult", + "type": "object" + } + }, + "required": [ + "goal" + ] + }, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "feedback_interval": 1.0 + }, + "raise_plc_step_timeout": { + "type": "UniLabJsonCommandAsync", + "goal": {}, + "feedback": {}, + "result": {}, + "schema": { + "title": "raise_plc_step_timeout参数", + "description": "抛出 PLCStepTimeout", + "type": "object", + "properties": { + "goal": { + "type": "object", + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "_unilabos_placeholder_info": {} + }, + "feedback": {}, + "result": { + "properties": { + "success": { + "title": "Success", + "type": "boolean" + }, + "message": { + "title": "Message", + "type": "string" + } + }, + "required": [ + "success", + "message" + ], + "title": "SimpleResult", + "type": "object" + } + }, + "required": [ + "goal" + ] + }, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "feedback_interval": 1.0 + }, + "raise_sensor_error": { + "type": "UniLabJsonCommandAsync", + "goal": {}, + "feedback": {}, + "result": {}, + "schema": { + "title": "raise_sensor_error参数", + "description": "抛出 SensorError", + "type": "object", + "properties": { + "goal": { + "type": "object", + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "_unilabos_placeholder_info": {} + }, + "feedback": {}, + "result": { + "properties": { + "success": { + "title": "Success", + "type": "boolean" + }, + "message": { + "title": "Message", + "type": "string" + } + }, + "required": [ + "success", + "message" + ], + "title": "SimpleResult", + "type": "object" + } + }, + "required": [ + "goal" + ] + }, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "feedback_interval": 1.0 + }, + "raise_tip_pickup_error": { + "type": "UniLabJsonCommandAsync", + "goal": {}, + "feedback": {}, + "result": {}, + "schema": { + "title": "raise_tip_pickup_error参数", + "description": "抛出 TipPickupError,提供 use_next_tip 自定义恢复", + "type": "object", + "properties": { + "goal": { + "type": "object", + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "_unilabos_placeholder_info": {} + }, + "feedback": {}, + "result": { + "properties": { + "success": { + "title": "Success", + "type": "boolean" + }, + "message": { + "title": "Message", + "type": "string" + } + }, + "required": [ + "success", + "message" + ], + "title": "SimpleResult", + "type": "object" + } + }, + "required": [ + "goal" + ] + }, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "feedback_interval": 1.0 + }, + "run_long": { + "type": "UniLabJsonCommandAsync", + "goal": { + "duration": "duration" + }, + "feedback": {}, + "result": {}, + "schema": { + "title": "run_long参数", + "description": "模拟长耗时操作,触发 timeout", + "type": "object", + "properties": { + "goal": { + "type": "object", + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "duration": { + "type": "number", + "default": 5.0, + "title": "duration", + "description": "" + } + }, + "required": [], + "_unilabos_placeholder_info": {} + }, + "feedback": {}, + "result": { + "properties": { + "success": { + "title": "Success", + "type": "boolean" + }, + "message": { + "title": "Message", + "type": "string" + } + }, + "required": [ + "success", + "message" + ], + "title": "SimpleResult", + "type": "object" + } + }, + "required": [ + "goal" + ] + }, + "goal_default": { + "duration": 5.0 + }, + "handles": {}, + "placeholder_keys": {}, + "feedback_interval": 1.0 + }, + "run_ok": { + "type": "UniLabJsonCommandAsync", + "goal": {}, + "feedback": {}, + "result": {}, + "schema": { + "title": "run_ok参数", + "description": "正常调用,立即返回成功", + "type": "object", + "properties": { + "goal": { + "type": "object", + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "_unilabos_placeholder_info": {} + }, + "feedback": {}, + "result": { + "properties": { + "success": { + "title": "Success", + "type": "boolean" + }, + "message": { + "title": "Message", + "type": "string" + } + }, + "required": [ + "success", + "message" + ], + "title": "SimpleResult", + "type": "object" + } + }, + "required": [ + "goal" + ] + }, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "feedback_interval": 1.0 + } + }, + "type": "python" + }, + "config_info": [], + "description": "按 fault_type 主动抛出各类 DeviceException 用于 e2e 测试", + "handles": [], + "icon": "", + "init_param_schema": { + "config": { + "type": "object", + "properties": { + "device_id": { + "type": "string", + "title": "device_id", + "description": "" + }, + "config": { + "type": "object", + "title": "config", + "description": "" + } + }, + "required": [] + }, + "data": { + "type": "object", + "properties": {}, + "required": [] + } + }, + "version": "1.0.0", + "registry_type": "device", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/devices/virtual/fault_injection_device.py" + }, + { + "id": "virtual_workbench", + "category": [ + "virtual_device" + ], + "class": { + "module": "unilabos.devices.virtual.workbench:VirtualWorkbench", + "status_types": { + "active_tasks_count": "Int64", + "arm_current_task": "String", + "arm_state": "String", + "heating_station_1_material": "String", + "heating_station_1_progress": "Float64", + "heating_station_1_state": "String", + "heating_station_2_material": "String", + "heating_station_2_progress": "Float64", + "heating_station_2_state": "String", + "heating_station_3_material": "String", + "heating_station_3_progress": "Float64", + "heating_station_3_state": "String", + "message": "String", + "status": "String" + }, + "action_value_mappings": { + "auto-move_to_heating_station": { + "type": "UniLabJsonCommand", + "goal": { + "material_number": "material_number" + }, + "feedback": {}, + "result": {}, + "schema": { + "title": "move_to_heating_station参数", + "description": "将物料从An位置移动到空闲加热台, 返回分配的加热台ID", + "type": "object", + "properties": { + "goal": { + "type": "object", + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "material_number": { + "type": "integer", + "title": "物料编号", + "description": "要移动的物料编号,对应 A1、A2 等起始位置。" + } + }, + "required": [ + "material_number" + ], + "_unilabos_placeholder_info": {} + }, + "feedback": {}, + "result": { + "$defs": { + "LabSample": { + "properties": { + "sample_uuid": { + "title": "Sample Uuid", + "type": "string" + }, + "oss_path": { + "title": "Oss Path", + "type": "string" + }, + "extra": { + "additionalProperties": true, + "title": "Extra", + "type": "object" + } + }, + "required": [ + "sample_uuid", + "oss_path", + "extra" + ], + "title": "LabSample", + "type": "object" + } + }, + "description": "move_to_heating_station 返回类型", + "properties": { + "success": { + "title": "Success", + "type": "boolean" + }, + "station_id": { + "title": "Station Id", + "type": "integer" + }, + "material_id": { + "title": "Material Id", + "type": "string" + }, + "material_number": { + "title": "Material Number", + "type": "integer" + }, + "message": { + "title": "Message", + "type": "string" + }, + "unilabos_samples": { + "items": { + "$ref": "#/$defs/LabSample" + }, + "title": "Unilabos Samples", + "type": "array" + } + }, + "required": [ + "success", + "station_id", + "material_id", + "material_number", + "message", + "unilabos_samples" + ], + "title": "MoveToHeatingStationResult", + "type": "object" + } + }, + "required": [ + "goal" + ] + }, + "goal_default": { + "material_number": 0 + }, + "handles": { + "input": [ + { + "handler_key": "material_input", + "data_type": "workbench_material", + "label": "物料编号", + "data_key": "material_number", + "data_source": "handle", + "io_type": "source" + } + ], + "output": [ + { + "handler_key": "heating_station_output", + "data_type": "workbench_station", + "label": "加热台ID", + "data_key": "station_id", + "data_source": "executor" + }, + { + "handler_key": "material_number_output", + "data_type": "workbench_material", + "label": "物料编号", + "data_key": "material_number", + "data_source": "executor" + } + ] + }, + "placeholder_keys": {}, + "feedback_interval": 1.0 + }, + "auto-move_to_output": { + "type": "UniLabJsonCommand", + "goal": { + "station_id": "station_id", + "material_number": "material_number" + }, + "feedback": {}, + "result": {}, + "schema": { + "title": "move_to_output参数", + "description": "将物料从加热台移动到输出位置Cn", + "type": "object", + "properties": { + "goal": { + "type": "object", + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "station_id": { + "type": "integer", + "title": "加热台ID", + "description": "已完成加热的加热台编号。" + }, + "material_number": { + "type": "integer", + "title": "物料编号", + "description": "要移动到输出位置的物料编号,对应 Cn。" + } + }, + "required": [ + "station_id", + "material_number" + ], + "_unilabos_placeholder_info": {} + }, + "feedback": {}, + "result": { + "$defs": { + "LabSample": { + "properties": { + "sample_uuid": { + "title": "Sample Uuid", + "type": "string" + }, + "oss_path": { + "title": "Oss Path", + "type": "string" + }, + "extra": { + "additionalProperties": true, + "title": "Extra", + "type": "object" + } + }, + "required": [ + "sample_uuid", + "oss_path", + "extra" + ], + "title": "LabSample", + "type": "object" + } + }, + "description": "move_to_output 返回类型", + "properties": { + "success": { + "title": "Success", + "type": "boolean" + }, + "station_id": { + "title": "Station Id", + "type": "integer" + }, + "material_id": { + "title": "Material Id", + "type": "string" + }, + "output_position": { + "title": "Output Position", + "type": "string" + }, + "message": { + "title": "Message", + "type": "string" + }, + "unilabos_samples": { + "items": { + "$ref": "#/$defs/LabSample" + }, + "title": "Unilabos Samples", + "type": "array" + } + }, + "required": [ + "success", + "station_id", + "material_id", + "output_position", + "message", + "unilabos_samples" + ], + "title": "MoveToOutputResult", + "type": "object" + } + }, + "required": [ + "goal" + ] + }, + "goal_default": { + "station_id": 0, + "material_number": 0 + }, + "handles": { + "input": [ + { + "handler_key": "output_station_input", + "data_type": "workbench_station", + "label": "加热台ID", + "data_key": "station_id", + "data_source": "handle", + "io_type": "source" + }, + { + "handler_key": "output_material_input", + "data_type": "workbench_material", + "label": "物料编号", + "data_key": "material_number", + "data_source": "handle", + "io_type": "source" + } + ], + "output": [] + }, + "placeholder_keys": {}, + "feedback_interval": 1.0 + }, + "auto-prepare_materials": { + "type": "UniLabJsonCommand", + "goal": { + "count": "count" + }, + "feedback": {}, + "result": {}, + "schema": { + "title": "prepare_materials参数", + "description": "批量准备物料 - 虚拟起始节点, 生成A1-A5物料, 输出5个handle供后续节点使用", + "type": "object", + "properties": { + "goal": { + "type": "object", + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "count": { + "type": "integer", + "default": 5, + "title": "物料数量", + "description": "要生成的物料数量,默认生成 5 个。" + } + }, + "required": [], + "_unilabos_placeholder_info": {} + }, + "feedback": {}, + "result": { + "$defs": { + "LabSample": { + "properties": { + "sample_uuid": { + "title": "Sample Uuid", + "type": "string" + }, + "oss_path": { + "title": "Oss Path", + "type": "string" + }, + "extra": { + "additionalProperties": true, + "title": "Extra", + "type": "object" + } + }, + "required": [ + "sample_uuid", + "oss_path", + "extra" + ], + "title": "LabSample", + "type": "object" + } + }, + "description": "prepare_materials 返回类型 - 批量准备物料", + "properties": { + "success": { + "title": "Success", + "type": "boolean" + }, + "count": { + "title": "Count", + "type": "integer" + }, + "material_1": { + "title": "Material 1", + "type": "integer" + }, + "material_2": { + "title": "Material 2", + "type": "integer" + }, + "material_3": { + "title": "Material 3", + "type": "integer" + }, + "material_4": { + "title": "Material 4", + "type": "integer" + }, + "material_5": { + "title": "Material 5", + "type": "integer" + }, + "message": { + "title": "Message", + "type": "string" + }, + "unilabos_samples": { + "items": { + "$ref": "#/$defs/LabSample" + }, + "title": "Unilabos Samples", + "type": "array" + } + }, + "required": [ + "success", + "count", + "material_1", + "material_2", + "material_3", + "material_4", + "material_5", + "message", + "unilabos_samples" + ], + "title": "PrepareMaterialsResult", + "type": "object" + } + }, + "required": [ + "goal" + ] + }, + "goal_default": { + "count": 5 + }, + "handles": { + "output": [ + { + "handler_key": "channel_1", + "data_type": "workbench_material", + "label": "实验1", + "data_key": "material_1", + "data_source": "executor" + }, + { + "handler_key": "channel_2", + "data_type": "workbench_material", + "label": "实验2", + "data_key": "material_2", + "data_source": "executor" + }, + { + "handler_key": "channel_3", + "data_type": "workbench_material", + "label": "实验3", + "data_key": "material_3", + "data_source": "executor" + }, + { + "handler_key": "channel_4", + "data_type": "workbench_material", + "label": "实验4", + "data_key": "material_4", + "data_source": "executor" + }, + { + "handler_key": "channel_5", + "data_type": "workbench_material", + "label": "实验5", + "data_key": "material_5", + "data_source": "executor" + } + ] + }, + "placeholder_keys": {}, + "feedback_interval": 1.0 + }, + "auto-start_heating": { + "type": "UniLabJsonCommand", + "goal": { + "station_id": "station_id", + "material_number": "material_number" + }, + "feedback": {}, + "result": {}, + "schema": { + "title": "start_heating参数", + "description": "启动指定加热台的加热程序", + "type": "object", + "properties": { + "goal": { + "type": "object", + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "station_id": { + "type": "integer", + "title": "加热台ID", + "description": "要启动加热的加热台编号。" + }, + "material_number": { + "type": "integer", + "title": "物料编号", + "description": "当前加热台上的物料编号。" + } + }, + "required": [ + "station_id", + "material_number" + ], + "_unilabos_placeholder_info": {} + }, + "feedback": {}, + "result": { + "$defs": { + "LabSample": { + "properties": { + "sample_uuid": { + "title": "Sample Uuid", + "type": "string" + }, + "oss_path": { + "title": "Oss Path", + "type": "string" + }, + "extra": { + "additionalProperties": true, + "title": "Extra", + "type": "object" + } + }, + "required": [ + "sample_uuid", + "oss_path", + "extra" + ], + "title": "LabSample", + "type": "object" + } + }, + "description": "start_heating 返回类型", + "properties": { + "success": { + "title": "Success", + "type": "boolean" + }, + "station_id": { + "title": "Station Id", + "type": "integer" + }, + "material_id": { + "title": "Material Id", + "type": "string" + }, + "material_number": { + "title": "Material Number", + "type": "integer" + }, + "message": { + "title": "Message", + "type": "string" + }, + "unilabos_samples": { + "items": { + "$ref": "#/$defs/LabSample" + }, + "title": "Unilabos Samples", + "type": "array" + } + }, + "required": [ + "success", + "station_id", + "material_id", + "material_number", + "message", + "unilabos_samples" + ], + "title": "StartHeatingResult", + "type": "object" + } + }, + "required": [ + "goal" + ] + }, + "goal_default": { + "station_id": 0, + "material_number": 0 + }, + "handles": { + "input": [ + { + "handler_key": "station_id_input", + "data_type": "workbench_station", + "label": "加热台ID", + "data_key": "station_id", + "data_source": "handle", + "io_type": "source" + }, + { + "handler_key": "material_number_input", + "data_type": "workbench_material", + "label": "物料编号", + "data_key": "material_number", + "data_source": "handle", + "io_type": "source" + } + ], + "output": [ + { + "handler_key": "heating_done_station", + "data_type": "workbench_station", + "label": "加热完成-加热台ID", + "data_key": "station_id", + "data_source": "executor" + }, + { + "handler_key": "heating_done_material", + "data_type": "workbench_material", + "label": "加热完成-物料编号", + "data_key": "material_number", + "data_source": "executor" + } + ] + }, + "placeholder_keys": {}, + "always_free": true, + "feedback_interval": 1.0 + }, + "manual_confirm": { + "type": "UniLabJsonCommand", + "goal": { + "resource": "resource", + "target_device": "target_device", + "mount_resource": "mount_resource", + "collector_mass": "collector_mass", + "active_material": "active_material", + "capacity": "capacity", + "battery_system": "battery_system", + "timeout_seconds": "timeout_seconds", + "assignee_user_ids": "assignee_user_ids" + }, + "feedback": {}, + "result": {}, + "schema": { + "title": "manual_confirm参数", + "description": "人工确认资源转移和扣电测试参数。", + "type": "object", + "properties": { + "goal": { + "type": "object", + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "resource": { + "items": { + "type": "object", + "additionalProperties": false, + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "title": "resource" + }, + "type": "array", + "title": "待转移资源", + "description": "需要人工确认的资源列表。" + }, + "target_device": { + "type": "string", + "description": "资源要转移到的目标设备 ID。", + "title": "目标设备" + }, + "mount_resource": { + "items": { + "type": "object", + "additionalProperties": false, + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "title": "mount_resource" + }, + "type": "array", + "title": "目标孔位", + "description": "资源要挂载到的目标孔位列表。" + }, + "collector_mass": { + "type": "array", + "items": { + "type": "number" + }, + "title": "极流体质量", + "description": "每个样品对应的极流体质量。" + }, + "active_material": { + "type": "array", + "items": { + "type": "number" + }, + "title": "活性物质含量", + "description": "每个样品对应的活性物质含量。" + }, + "capacity": { + "type": "array", + "items": { + "type": "number" + }, + "title": "克容量", + "description": "每个样品对应的克容量,单位 mAh/g。" + }, + "battery_system": { + "type": "array", + "items": { + "type": "string" + }, + "title": "电池体系", + "description": "每个样品对应的电池体系名称。" + }, + "timeout_seconds": { + "type": "integer", + "title": "超时时间", + "description": "人工确认超时时间,单位秒。" + }, + "assignee_user_ids": { + "type": "array", + "items": { + "type": "string" + }, + "title": "确认人", + "description": "指定处理人工确认任务的用户 ID 列表。" + } + }, + "required": [ + "resource", + "target_device", + "mount_resource", + "collector_mass", + "active_material", + "capacity", + "battery_system", + "timeout_seconds", + "assignee_user_ids" + ], + "_unilabos_placeholder_info": { + "resource": "unilabos_resources", + "target_device": "unilabos_devices", + "mount_resource": "unilabos_resources", + "assignee_user_ids": "unilabos_manual_confirm" + } + }, + "feedback": {}, + "result": { + "type": "object" + } + }, + "required": [ + "goal" + ] + }, + "goal_default": { + "resource": [], + "target_device": "", + "mount_resource": [], + "collector_mass": [], + "active_material": [], + "capacity": [], + "battery_system": [], + "timeout_seconds": 3600, + "assignee_user_ids": [] + }, + "handles": { + "input": [ + { + "handler_key": "target_device", + "data_type": "device_id", + "label": "目标设备", + "data_key": "target_device", + "data_source": "handle", + "io_type": "source" + }, + { + "handler_key": "resource", + "data_type": "resource", + "label": "待转移资源", + "data_key": "resource", + "data_source": "handle", + "io_type": "source" + }, + { + "handler_key": "mount_resource", + "data_type": "resource", + "label": "目标孔位", + "data_key": "mount_resource", + "data_source": "handle", + "io_type": "source" + }, + { + "handler_key": "collector_mass", + "data_type": "collector_mass", + "label": "极流体质量", + "data_key": "collector_mass", + "data_source": "handle", + "io_type": "source" + }, + { + "handler_key": "active_material", + "data_type": "active_material", + "label": "活性物质含量", + "data_key": "active_material", + "data_source": "handle", + "io_type": "source" + }, + { + "handler_key": "capacity", + "data_type": "capacity", + "label": "克容量", + "data_key": "capacity", + "data_source": "handle", + "io_type": "source" + }, + { + "handler_key": "battery_system", + "data_type": "battery_system", + "label": "电池体系", + "data_key": "battery_system", + "data_source": "handle", + "io_type": "source" + } + ], + "output": [ + { + "handler_key": "target_device", + "data_type": "device_id", + "label": "目标设备", + "data_key": "target_device", + "data_source": "executor" + }, + { + "handler_key": "resource", + "data_type": "resource", + "label": "待转移资源", + "data_key": "resource.@flatten", + "data_source": "executor" + }, + { + "handler_key": "mount_resource", + "data_type": "resource", + "label": "目标孔位", + "data_key": "mount_resource.@flatten", + "data_source": "executor" + }, + { + "handler_key": "collector_mass", + "data_type": "collector_mass", + "label": "极流体质量", + "data_key": "collector_mass", + "data_source": "executor" + }, + { + "handler_key": "active_material", + "data_type": "active_material", + "label": "活性物质含量", + "data_key": "active_material", + "data_source": "executor" + }, + { + "handler_key": "capacity", + "data_type": "capacity", + "label": "克容量", + "data_key": "capacity", + "data_source": "executor" + }, + { + "handler_key": "battery_system", + "data_type": "battery_system", + "label": "电池体系", + "data_key": "battery_system", + "data_source": "executor" + } + ] + }, + "placeholder_keys": { + "resource": "unilabos_resources", + "target_device": "unilabos_devices", + "mount_resource": "unilabos_resources", + "assignee_user_ids": "unilabos_manual_confirm" + }, + "always_free": true, + "feedback_interval": 300, + "node_type": "manual_confirm" + }, + "test": { + "type": "UniLabJsonCommandAsync", + "goal": { + "resource": "resource", + "mount_resource": "mount_resource", + "collector_mass": "collector_mass", + "active_material": "active_material", + "capacity": "capacity", + "battery_system": "battery_system" + }, + "feedback": {}, + "result": {}, + "schema": { + "title": "test参数", + "description": "扣电测试启动", + "type": "object", + "properties": { + "goal": { + "type": "object", + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "resource": { + "items": { + "type": "object", + "additionalProperties": false, + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "title": "resource" + }, + "type": "array", + "title": "待测试资源", + "description": "需要进行扣电测试的资源列表。" + }, + "mount_resource": { + "items": { + "type": "object", + "additionalProperties": false, + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "title": "mount_resource" + }, + "type": "array", + "title": "测试孔位", + "description": "扣电测试使用的目标孔位列表。" + }, + "collector_mass": { + "type": "array", + "items": { + "type": "number" + }, + "title": "极流体质量", + "description": "每个样品对应的极流体质量。" + }, + "active_material": { + "type": "array", + "items": { + "type": "number" + }, + "title": "活性物质含量", + "description": "每个样品对应的活性物质含量。" + }, + "capacity": { + "type": "array", + "items": { + "type": "number" + }, + "title": "克容量", + "description": "每个样品对应的克容量,单位 mAh/g。" + }, + "battery_system": { + "type": "array", + "items": { + "type": "string" + }, + "title": "电池体系", + "description": "每个样品对应的电池体系名称。" + } + }, + "required": [ + "resource", + "mount_resource", + "collector_mass", + "active_material", + "capacity", + "battery_system" + ], + "_unilabos_placeholder_info": { + "resource": "unilabos_resources", + "mount_resource": "unilabos_resources" + } + }, + "feedback": {}, + "result": {} + }, + "required": [ + "goal" + ] + }, + "goal_default": { + "resource": [], + "mount_resource": [], + "collector_mass": [], + "active_material": [], + "capacity": [], + "battery_system": [] + }, + "handles": { + "input": [ + { + "handler_key": "resource", + "data_type": "resource", + "label": "待转移资源", + "data_key": "resource", + "data_source": "handle", + "io_type": "source" + }, + { + "handler_key": "mount_resource", + "data_type": "resource", + "label": "目标孔位", + "data_key": "mount_resource", + "data_source": "handle", + "io_type": "source" + }, + { + "handler_key": "collector_mass", + "data_type": "collector_mass", + "label": "极流体质量", + "data_key": "collector_mass", + "data_source": "handle", + "io_type": "source" + }, + { + "handler_key": "active_material", + "data_type": "active_material", + "label": "活性物质含量", + "data_key": "active_material", + "data_source": "handle", + "io_type": "source" + }, + { + "handler_key": "capacity", + "data_type": "capacity", + "label": "克容量", + "data_key": "capacity", + "data_source": "handle", + "io_type": "source" + }, + { + "handler_key": "battery_system", + "data_type": "battery_system", + "label": "电池体系", + "data_key": "battery_system", + "data_source": "handle", + "io_type": "source" + } + ], + "output": [] + }, + "placeholder_keys": { + "resource": "unilabos_resources", + "mount_resource": "unilabos_resources" + }, + "feedback_interval": 1.0 + }, + "transfer": { + "type": "UniLabJsonCommandAsync", + "goal": { + "resource": "resource", + "target_device": "target_device", + "mount_resource": "mount_resource" + }, + "feedback": {}, + "result": {}, + "schema": { + "title": "transfer参数", + "description": "转移物料", + "type": "object", + "properties": { + "goal": { + "type": "object", + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "resource": { + "items": { + "type": "object", + "additionalProperties": false, + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "title": "resource" + }, + "type": "array", + "title": "待转移资源", + "description": "待转移的资源列表。" + }, + "target_device": { + "type": "string", + "description": "接收资源的目标设备 ID。", + "title": "目标设备" + }, + "mount_resource": { + "items": { + "type": "object", + "additionalProperties": false, + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "title": "mount_resource" + }, + "type": "array", + "title": "目标孔位", + "description": "目标设备上的挂载孔位列表。" + } + }, + "required": [ + "resource", + "target_device", + "mount_resource" + ], + "_unilabos_placeholder_info": { + "resource": "unilabos_resources", + "target_device": "unilabos_devices", + "mount_resource": "unilabos_resources" + } + }, + "feedback": {}, + "result": {} + }, + "required": [ + "goal" + ] + }, + "goal_default": { + "resource": [], + "target_device": "", + "mount_resource": [] + }, + "handles": { + "input": [ + { + "handler_key": "target_device", + "data_type": "device_id", + "label": "目标设备", + "data_key": "target_device", + "data_source": "handle", + "io_type": "source" + }, + { + "handler_key": "resource", + "data_type": "resource", + "label": "待转移资源", + "data_key": "resource", + "data_source": "handle", + "io_type": "source" + }, + { + "handler_key": "mount_resource", + "data_type": "resource", + "label": "目标孔位", + "data_key": "mount_resource", + "data_source": "handle", + "io_type": "source" + } + ], + "output": [] + }, + "placeholder_keys": { + "resource": "unilabos_resources", + "target_device": "unilabos_devices", + "mount_resource": "unilabos_resources" + }, + "feedback_interval": 1.0 + } + }, + "type": "python" + }, + "config_info": [], + "description": "Virtual Workbench with 1 robotic arm and 3 heating stations for concurrent material processing", + "handles": [], + "icon": "", + "init_param_schema": { + "config": { + "type": "object", + "properties": { + "device_id": { + "type": "string", + "title": "设备ID", + "description": "工作台设备实例 ID,默认使用 virtual_workbench。" + }, + "config": { + "type": "object", + "title": "设备配置", + "description": "可包含 arm_operation_time、heating_time、num_heating_stations。" + } + }, + "required": [] + }, + "data": { + "type": "object", + "properties": { + "status": { + "type": "string" + }, + "arm_state": { + "type": "string" + }, + "arm_current_task": { + "type": "string" + }, + "heating_station_1_state": { + "type": "string" + }, + "heating_station_1_material": { + "type": "string" + }, + "heating_station_1_progress": { + "type": "number" + }, + "heating_station_2_state": { + "type": "string" + }, + "heating_station_2_material": { + "type": "string" + }, + "heating_station_2_progress": { + "type": "number" + }, + "heating_station_3_state": { + "type": "string" + }, + "heating_station_3_material": { + "type": "string" + }, + "heating_station_3_progress": { + "type": "number" + }, + "active_tasks_count": { + "type": "integer" + }, + "message": { + "type": "string" + } + }, + "required": [ + "status", + "arm_state", + "arm_current_task", + "heating_station_1_state", + "heating_station_1_material", + "heating_station_1_progress", + "heating_station_2_state", + "heating_station_2_material", + "heating_station_2_progress", + "heating_station_3_state", + "heating_station_3_material", + "heating_station_3_progress", + "active_tasks_count", + "message" + ] + } + }, + "version": "1.0.0", + "registry_type": "device", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/devices/virtual/workbench.py" + }, + { + "id": "camera", + "category": [ + "camera" + ], + "class": { + "module": "unilabos.ros.nodes.presets.camera:VideoPublisher", + "status_types": {}, + "action_value_mappings": { + "auto-destroy_node": { + "type": "UniLabJsonCommand", + "goal": {}, + "feedback": {}, + "result": {}, + "schema": { + "title": "destroy_node参数", + "description": "destroy_node的参数schema", + "type": "object", + "properties": { + "goal": { + "type": "object", + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "_unilabos_placeholder_info": {} + }, + "feedback": {}, + "result": {} + }, + "required": [ + "goal" + ] + }, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "feedback_interval": 1.0 + }, + "auto-timer_callback": { + "type": "UniLabJsonCommand", + "goal": {}, + "feedback": {}, + "result": {}, + "schema": { + "title": "timer_callback参数", + "description": "timer_callback的参数schema", + "type": "object", + "properties": { + "goal": { + "type": "object", + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "_unilabos_placeholder_info": {} + }, + "feedback": {}, + "result": {} + }, + "required": [ + "goal" + ] + }, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "feedback_interval": 1.0 + } + }, + "type": "ros2" + }, + "config_info": [], + "description": "VideoPublisher摄像头设备节点,用于实时视频采集和流媒体发布。该设备通过OpenCV连接本地摄像头(如USB摄像头、内置摄像头等),定时采集视频帧并将其转换为ROS2的sensor_msgs/Image消息格式发布到视频话题。主要用于实验室自动化系统中的视觉监控、图像分析、实时观察等应用场景。支持可配置的摄像头索引、发布频率等参数。", + "handles": [], + "icon": "", + "init_param_schema": { + "config": { + "type": "object", + "properties": { + "device_id": { + "type": "string", + "default": "video_publisher", + "title": "device_id", + "description": "" + }, + "registry_name": { + "type": "string", + "default": "", + "title": "registry_name", + "description": "" + }, + "device_uuid": { + "type": "string", + "default": "", + "title": "device_uuid", + "description": "" + }, + "camera_index": { + "type": "string", + "default": 0, + "title": "camera_index", + "description": "" + }, + "period": { + "type": "number", + "default": 0.1, + "title": "period", + "description": "" + }, + "resource_tracker": { + "type": "object", + "title": "resource_tracker", + "description": "" + } + }, + "required": [] + }, + "data": { + "type": "object", + "properties": {}, + "required": [] + } + }, + "version": "1.0.0", + "registry_type": "device", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/ros/nodes/presets/camera.py" + }, + { + "id": "host_node", + "class": { + "module": "unilabos.ros.nodes.presets.host_node:HostNode", + "status_types": {}, + "action_value_mappings": { + "create_resource": { + "type": "ResourceCreateFromOuterEasy", + "goal": { + "res_id": "res_id", + "class_name": "class_name", + "parent": "parent", + "device_id": "device_id", + "bind_locations": "bind_locations", + "liquid_input_slot": "liquid_input_slot[]", + "liquid_type": "liquid_type[]", + "liquid_volume": "liquid_volume[]", + "slot_on_deck": "slot_on_deck" + }, + "feedback": {}, + "result": { + "success": "success" + }, + "schema": { + "title": "ResourceCreateFromOuterEasy", + "description": "用于创建或更新物料资源,每次传入一个物料信息。", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "res_id": { + "type": "string", + "title": "res_id", + "description": "" + }, + "device_id": { + "type": "string", + "title": "device_id", + "description": "" + }, + "class_name": { + "type": "string", + "title": "class_name", + "description": "" + }, + "parent": { + "type": "string", + "title": "parent", + "description": "" + }, + "bind_locations": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "bind_locations", + "additionalProperties": false, + "description": "" + }, + "liquid_input_slot": { + "type": "array", + "items": { + "type": "integer" + }, + "title": "liquid_input_slot", + "description": "" + }, + "liquid_type": { + "type": "array", + "items": { + "type": "string" + }, + "title": "liquid_type", + "description": "" + }, + "liquid_volume": { + "type": "array", + "items": { + "type": "number" + }, + "title": "liquid_volume", + "description": "" + }, + "slot_on_deck": { + "type": "string", + "title": "slot_on_deck", + "description": "" + } + }, + "title": "ResourceCreateFromOuterEasy_Goal", + "_unilabos_placeholder_info": { + "res_id": "unilabos_resources", + "device_id": "unilabos_devices", + "parent": "unilabos_nodes", + "class_name": "unilabos_class" + } + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "ResourceCreateFromOuterEasy_Feedback" + }, + "result": { + "$defs": { + "ResourceDict": { + "properties": { + "id": { + "description": "Resource ID", + "title": "Id", + "type": "string" + }, + "uuid": { + "description": "Resource UUID", + "title": "Uuid", + "type": "string" + }, + "name": { + "description": "Resource name", + "title": "Name", + "type": "string" + }, + "description": { + "default": "", + "description": "Resource description", + "title": "Description", + "type": "string" + }, + "schema": { + "additionalProperties": true, + "description": "Resource schema", + "title": "Schema", + "type": "object" + }, + "model": { + "additionalProperties": true, + "description": "Resource model", + "title": "Model", + "type": "object" + }, + "icon": { + "default": "", + "description": "Resource icon", + "title": "Icon", + "type": "string" + }, + "parent_uuid": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Parent resource uuid", + "title": "Parent Uuid" + }, + "parent": { + "anyOf": [ + { + "$ref": "#/$defs/ResourceDict" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Parent resource object" + }, + "type": { + "anyOf": [ + { + "const": "device", + "type": "string" + }, + { + "type": "string" + } + ], + "description": "Resource type", + "title": "Type" + }, + "class": { + "description": "Resource class name", + "title": "Class", + "type": "string" + }, + "pose": { + "$ref": "#/$defs/ResourceDictPosition", + "description": "Resource position" + }, + "config": { + "additionalProperties": true, + "description": "Resource configuration", + "title": "Config", + "type": "object" + }, + "data": { + "additionalProperties": true, + "description": "Resource data, eg: container liquid data", + "title": "Data", + "type": "object" + }, + "extra": { + "additionalProperties": true, + "description": "Extra data, eg: slot index", + "title": "Extra", + "type": "object" + }, + "machine_name": { + "default": "", + "description": "Machine this resource belongs to", + "title": "Machine Name", + "type": "string" + } + }, + "required": [ + "id", + "uuid", + "name", + "type", + "class", + "config", + "data", + "extra" + ], + "title": "ResourceDict", + "type": "object" + }, + "ResourceDictPosition": { + "properties": { + "size": { + "$ref": "#/$defs/ResourceDictPositionSize", + "description": "Resource size" + }, + "scale": { + "$ref": "#/$defs/ResourceDictPositionScale", + "description": "Resource scale" + }, + "layout": { + "default": "x-y", + "description": "Resource layout", + "enum": [ + "2d", + "x-y", + "z-y", + "x-z" + ], + "title": "Layout", + "type": "string" + }, + "position": { + "$ref": "#/$defs/ResourceDictPositionObject", + "description": "Resource position" + }, + "position3d": { + "$ref": "#/$defs/ResourceDictPositionObject", + "description": "Resource position in 3D space" + }, + "rotation": { + "$ref": "#/$defs/ResourceDictPositionObject", + "description": "Resource rotation" + }, + "cross_section_type": { + "default": "rectangle", + "description": "Cross section type", + "enum": [ + "rectangle", + "circle", + "rounded_rectangle" + ], + "title": "Cross Section Type", + "type": "string" + }, + "extra": { + "anyOf": [ + { + "additionalProperties": true, + "type": "object" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Extra data", + "title": "Extra" + } + }, + "title": "ResourceDictPosition", + "type": "object" + }, + "ResourceDictPositionObject": { + "properties": { + "x": { + "default": 0.0, + "description": "X coordinate", + "title": "X", + "type": "number" + }, + "y": { + "default": 0.0, + "description": "Y coordinate", + "title": "Y", + "type": "number" + }, + "z": { + "default": 0.0, + "description": "Z coordinate", + "title": "Z", + "type": "number" + } + }, + "title": "ResourceDictPositionObject", + "type": "object" + }, + "ResourceDictPositionScale": { + "properties": { + "x": { + "default": 0.0, + "description": "x scale", + "title": "X", + "type": "number" + }, + "y": { + "default": 0.0, + "description": "y scale", + "title": "Y", + "type": "number" + }, + "z": { + "default": 0.0, + "description": "z scale", + "title": "Z", + "type": "number" + } + }, + "title": "ResourceDictPositionScale", + "type": "object" + }, + "ResourceDictPositionSize": { + "properties": { + "depth": { + "default": 0.0, + "description": "Depth", + "title": "Depth", + "type": "number" + }, + "width": { + "default": 0.0, + "description": "Width", + "title": "Width", + "type": "number" + }, + "height": { + "default": 0.0, + "description": "Height", + "title": "Height", + "type": "number" + } + }, + "title": "ResourceDictPositionSize", + "type": "object" + } + }, + "properties": { + "created_resource_tree": { + "items": { + "items": { + "$ref": "#/$defs/ResourceDict" + }, + "type": "array" + }, + "title": "Created Resource Tree", + "type": "array" + }, + "liquid_input_resource_tree": { + "items": { + "additionalProperties": true, + "type": "object" + }, + "title": "Liquid Input Resource Tree", + "type": "array" + } + }, + "required": [ + "created_resource_tree", + "liquid_input_resource_tree" + ], + "title": "CreateResourceReturn", + "type": "object" + } + }, + "required": [ + "goal" + ] + }, + "goal_default": { + "res_id": "", + "device_id": "", + "class_name": "", + "parent": "", + "bind_locations": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "liquid_input_slot": [], + "liquid_type": [], + "liquid_volume": [], + "slot_on_deck": "" + }, + "handles": { + "output": [ + { + "handler_key": "labware", + "data_type": "resource", + "label": "Labware", + "data_source": "executor", + "data_key": "created_resource_tree.@flatten" + }, + { + "handler_key": "liquid_slots", + "data_type": "resource", + "label": "LiquidSlots", + "data_source": "executor", + "data_key": "liquid_input_resource_tree.@flatten" + }, + { + "handler_key": "materials", + "data_type": "resource", + "label": "AllMaterials", + "data_source": "executor", + "data_key": "[created_resource_tree,liquid_input_resource_tree].@flatten.@flatten" + } + ] + }, + "placeholder_keys": { + "res_id": "unilabos_resources", + "device_id": "unilabos_devices", + "parent": "unilabos_nodes", + "class_name": "unilabos_class" + }, + "always_free": true, + "feedback_interval": 300.0 + }, + "test_latency": { + "type": "UniLabJsonCommand", + "goal": {}, + "feedback": {}, + "result": {}, + "schema": { + "title": "test_latency参数", + "description": "测试网络延迟的action实现", + "type": "object", + "properties": { + "goal": { + "type": "object", + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "_unilabos_placeholder_info": {} + }, + "feedback": {}, + "result": { + "description": "test_latency方法的返回值类型", + "properties": { + "avg_rtt_ms": { + "title": "Avg Rtt Ms", + "type": "number" + }, + "avg_time_diff_ms": { + "title": "Avg Time Diff Ms", + "type": "number" + }, + "max_time_error_ms": { + "title": "Max Time Error Ms", + "type": "number" + }, + "task_delay_ms": { + "title": "Task Delay Ms", + "type": "number" + }, + "raw_delay_ms": { + "title": "Raw Delay Ms", + "type": "number" + }, + "test_count": { + "title": "Test Count", + "type": "integer" + }, + "status": { + "title": "Status", + "type": "string" + } + }, + "required": [ + "avg_rtt_ms", + "avg_time_diff_ms", + "max_time_error_ms", + "task_delay_ms", + "raw_delay_ms", + "test_count", + "status" + ], + "title": "TestLatencyReturn", + "type": "object" + } + }, + "required": [ + "goal" + ] + }, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "feedback_interval": 1.0 + }, + "auto-test_resource": { + "type": "UniLabJsonCommand", + "goal": { + "resource": "resource", + "resources": "resources", + "device": "device", + "devices": "devices" + }, + "feedback": {}, + "result": {}, + "schema": { + "title": "test_resource参数", + "description": "test_resource的参数schema", + "type": "object", + "properties": { + "goal": { + "type": "object", + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "resource": { + "type": "object", + "additionalProperties": false, + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "title": "resource", + "description": "" + }, + "resources": { + "items": { + "type": "object", + "additionalProperties": false, + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "title": "resources" + }, + "type": "array", + "title": "resources", + "description": "" + }, + "device": { + "type": "string", + "description": "device reference", + "title": "device" + }, + "devices": { + "type": "string", + "description": "device reference", + "title": "devices" + } + }, + "required": [], + "_unilabos_placeholder_info": { + "resource": "unilabos_resources", + "resources": "unilabos_resources", + "device": "unilabos_devices", + "devices": "unilabos_devices" + } + }, + "feedback": {}, + "result": { + "$defs": { + "ResourceDict": { + "properties": { + "id": { + "description": "Resource ID", + "title": "Id", + "type": "string" + }, + "uuid": { + "description": "Resource UUID", + "title": "Uuid", + "type": "string" + }, + "name": { + "description": "Resource name", + "title": "Name", + "type": "string" + }, + "description": { + "default": "", + "description": "Resource description", + "title": "Description", + "type": "string" + }, + "schema": { + "additionalProperties": true, + "description": "Resource schema", + "title": "Schema", + "type": "object" + }, + "model": { + "additionalProperties": true, + "description": "Resource model", + "title": "Model", + "type": "object" + }, + "icon": { + "default": "", + "description": "Resource icon", + "title": "Icon", + "type": "string" + }, + "parent_uuid": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Parent resource uuid", + "title": "Parent Uuid" + }, + "parent": { + "anyOf": [ + { + "$ref": "#/$defs/ResourceDict" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Parent resource object" + }, + "type": { + "anyOf": [ + { + "const": "device", + "type": "string" + }, + { + "type": "string" + } + ], + "description": "Resource type", + "title": "Type" + }, + "class": { + "description": "Resource class name", + "title": "Class", + "type": "string" + }, + "pose": { + "$ref": "#/$defs/ResourceDictPosition", + "description": "Resource position" + }, + "config": { + "additionalProperties": true, + "description": "Resource configuration", + "title": "Config", + "type": "object" + }, + "data": { + "additionalProperties": true, + "description": "Resource data, eg: container liquid data", + "title": "Data", + "type": "object" + }, + "extra": { + "additionalProperties": true, + "description": "Extra data, eg: slot index", + "title": "Extra", + "type": "object" + }, + "machine_name": { + "default": "", + "description": "Machine this resource belongs to", + "title": "Machine Name", + "type": "string" + } + }, + "required": [ + "id", + "uuid", + "name", + "type", + "class", + "config", + "data", + "extra" + ], + "title": "ResourceDict", + "type": "object" + }, + "ResourceDictPosition": { + "properties": { + "size": { + "$ref": "#/$defs/ResourceDictPositionSize", + "description": "Resource size" + }, + "scale": { + "$ref": "#/$defs/ResourceDictPositionScale", + "description": "Resource scale" + }, + "layout": { + "default": "x-y", + "description": "Resource layout", + "enum": [ + "2d", + "x-y", + "z-y", + "x-z" + ], + "title": "Layout", + "type": "string" + }, + "position": { + "$ref": "#/$defs/ResourceDictPositionObject", + "description": "Resource position" + }, + "position3d": { + "$ref": "#/$defs/ResourceDictPositionObject", + "description": "Resource position in 3D space" + }, + "rotation": { + "$ref": "#/$defs/ResourceDictPositionObject", + "description": "Resource rotation" + }, + "cross_section_type": { + "default": "rectangle", + "description": "Cross section type", + "enum": [ + "rectangle", + "circle", + "rounded_rectangle" + ], + "title": "Cross Section Type", + "type": "string" + }, + "extra": { + "anyOf": [ + { + "additionalProperties": true, + "type": "object" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Extra data", + "title": "Extra" + } + }, + "title": "ResourceDictPosition", + "type": "object" + }, + "ResourceDictPositionObject": { + "properties": { + "x": { + "default": 0.0, + "description": "X coordinate", + "title": "X", + "type": "number" + }, + "y": { + "default": 0.0, + "description": "Y coordinate", + "title": "Y", + "type": "number" + }, + "z": { + "default": 0.0, + "description": "Z coordinate", + "title": "Z", + "type": "number" + } + }, + "title": "ResourceDictPositionObject", + "type": "object" + }, + "ResourceDictPositionScale": { + "properties": { + "x": { + "default": 0.0, + "description": "x scale", + "title": "X", + "type": "number" + }, + "y": { + "default": 0.0, + "description": "y scale", + "title": "Y", + "type": "number" + }, + "z": { + "default": 0.0, + "description": "z scale", + "title": "Z", + "type": "number" + } + }, + "title": "ResourceDictPositionScale", + "type": "object" + }, + "ResourceDictPositionSize": { + "properties": { + "depth": { + "default": 0.0, + "description": "Depth", + "title": "Depth", + "type": "number" + }, + "width": { + "default": 0.0, + "description": "Width", + "title": "Width", + "type": "number" + }, + "height": { + "default": 0.0, + "description": "Height", + "title": "Height", + "type": "number" + } + }, + "title": "ResourceDictPositionSize", + "type": "object" + } + }, + "properties": { + "resources": { + "items": { + "items": { + "$ref": "#/$defs/ResourceDict" + }, + "type": "array" + }, + "title": "Resources", + "type": "array" + }, + "devices": { + "items": { + "additionalProperties": true, + "type": "object" + }, + "title": "Devices", + "type": "array" + } + }, + "required": [ + "resources", + "devices" + ], + "title": "TestResourceReturn", + "type": "object" + } + }, + "required": [ + "goal" + ] + }, + "goal_default": { + "resource": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } + }, + "config": "", + "data": "" + }, + "resources": [], + "device": "", + "devices": "" + }, + "handles": { + "input": [ + { + "handler_key": "input_resources", + "data_type": "resource", + "label": "InputResources", + "data_source": "handle", + "data_key": "resources" + } + ] + }, + "placeholder_keys": { + "resource": "unilabos_resources", + "resources": "unilabos_resources", + "device": "unilabos_devices", + "devices": "unilabos_devices" + }, + "feedback_interval": 1.0 + }, + "manual_confirm": { + "type": "UniLabJsonCommand", + "goal": { + "timeout_seconds": "timeout_seconds", + "assignee_user_ids": "assignee_user_ids" + }, + "feedback": {}, + "result": {}, + "schema": { + "title": "manual_confirm参数", + "description": "manual_confirm的参数schema", + "type": "object", + "properties": { + "goal": { + "type": "object", + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "timeout_seconds": { + "type": "integer", + "title": "timeout_seconds", + "description": "超时时间(秒),默认3600秒\n修改的结果无效,是只读的" + }, + "assignee_user_ids": { + "type": "array", + "items": { + "type": "string" + }, + "title": "assignee_user_ids", + "description": "" + } + }, + "required": [ + "timeout_seconds", + "assignee_user_ids" + ], + "_unilabos_placeholder_info": { + "assignee_user_ids": "unilabos_manual_confirm" + } + }, + "feedback": {}, + "result": { + "type": "object" + } + }, + "required": [ + "goal" + ] + }, + "goal_default": { + "timeout_seconds": 3600, + "assignee_user_ids": [] + }, + "handles": {}, + "placeholder_keys": { + "assignee_user_ids": "unilabos_manual_confirm" + }, + "always_free": true, + "feedback_interval": 1.0, + "node_type": "manual_confirm" + } + }, + "init_params": {} + }, + "version": "1.0.0", + "category": [], + "config_info": [], + "icon": "icon_device.webp", + "registry_type": "device", + "description": "Host Node", + "handles": [], + "init_param_schema": {}, + "file_path": "/" + }, + { + "id": "gas_source.mock", + "category": [ + "gas_handler" + ], + "class": { + "action_value_mappings": { + "auto-is_closed": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "is_closed的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "is_closed参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-is_open": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "is_open的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "is_open参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "close": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": { + "return_info": "return_info" + }, + "schema": { + "title": "EmptyIn", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": true, + "title": "EmptyIn_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "EmptyIn_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + } + }, + "title": "EmptyIn_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "EmptyIn" + }, + "open": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": { + "return_info": "return_info" + }, + "schema": { + "title": "EmptyIn", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": true, + "title": "EmptyIn_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "EmptyIn_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + } + }, + "title": "EmptyIn_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "EmptyIn" + }, + "set_status": { + "feedback": {}, + "goal": { + "string": "string" + }, + "goal_default": { + "string": "" + }, + "handles": {}, + "placeholder_keys": {}, + "result": { + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "StrSingleInput", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "string": { + "type": "string", + "title": "string", + "description": "" + } + }, + "title": "StrSingleInput_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "StrSingleInput_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "StrSingleInput_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "StrSingleInput" + } + }, + "module": "unilabos.devices.pump_and_valve.vacuum_pump_mock:VacuumPumpMock", + "status_types": { + "status": "String" + }, + "type": "python" + }, + "config_info": [], + "description": "模拟气体源设备,用于系统测试和开发调试。该设备模拟真实气体源的开关控制和状态监测功能,支持气体供应的启停操作。提供与真实气体源相同的接口和状态反馈,便于在没有实际硬件的情况下进行系统集成测试和算法验证。适用于气路系统调试、软件开发和实验流程验证等场景。", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/devices/gas_handler.yaml", + "handles": [ + { + "data_key": "fluid_out", + "data_source": "executor", + "data_type": "fluid", + "handler_key": "out", + "io_type": "source", + "label": "out" + } + ], + "icon": "", + "init_param_schema": { + "config": { + "properties": { + "port": { + "default": "COM6", + "type": "string" + } + }, + "required": [], + "type": "object" + }, + "data": { + "properties": { + "status": { + "type": "string" + } + }, + "required": [ + "status" + ], + "type": "object" + } + }, + "registry_type": "device", + "version": "1.0.0" + }, + { + "id": "vacuum_pump.mock", + "category": [ + "vacuum_and_purge", + "gas_handler" + ], + "class": { + "action_value_mappings": { + "auto-is_closed": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "is_closed的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "is_closed参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-is_open": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "is_open的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "is_open参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "close": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": { + "return_info": "return_info" + }, + "schema": { + "title": "EmptyIn", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": true, + "title": "EmptyIn_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "EmptyIn_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + } + }, + "title": "EmptyIn_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "EmptyIn" + }, + "open": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": { + "return_info": "return_info" + }, + "schema": { + "title": "EmptyIn", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": true, + "title": "EmptyIn_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "EmptyIn_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + } + }, + "title": "EmptyIn_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "EmptyIn" + }, + "set_status": { + "feedback": {}, + "goal": { + "string": "string" + }, + "goal_default": { + "string": "" + }, + "handles": {}, + "placeholder_keys": {}, + "result": { + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "StrSingleInput", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "string": { + "type": "string", + "title": "string", + "description": "" + } + }, + "title": "StrSingleInput_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "StrSingleInput_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "StrSingleInput_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "StrSingleInput" + } + }, + "module": "unilabos.devices.pump_and_valve.vacuum_pump_mock:VacuumPumpMock", + "status_types": { + "status": "String" + }, + "type": "python" + }, + "config_info": [], + "description": "模拟真空泵设备,用于系统测试和开发调试。该设备模拟真实真空泵的抽气功能和状态控制,支持真空系统的启停操作和状态监测。提供与真实真空泵相同的接口和控制逻辑,便于在没有实际硬件的情况下进行真空系统的集成测试。适用于真空工艺调试、软件开发和实验流程验证等场景。", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/devices/gas_handler.yaml", + "handles": [ + { + "data_key": "fluid_in", + "data_source": "handle", + "data_type": "fluid", + "handler_key": "out", + "io_type": "source", + "label": "out" + } + ], + "icon": "", + "init_param_schema": { + "config": { + "properties": { + "port": { + "default": "COM6", + "type": "string" + } + }, + "required": [], + "type": "object" + }, + "data": { + "properties": { + "status": { + "type": "string" + } + }, + "required": [ + "status" + ], + "type": "object" + } + }, + "registry_type": "device", + "version": "1.0.0" + }, + { + "id": "coincellassemblyworkstation_device", + "category": [ + "coin_cell_workstation" + ], + "class": { + "action_value_mappings": { + "auto-change_hole_sheet_to_2": { + "feedback": {}, + "goal": {}, + "goal_default": { + "hole": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "hole": { + "type": "object", + "title": "hole", + "description": "" + } + }, + "required": [ + "hole" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "change_hole_sheet_to_2参数", + "type": "object" + }, + "type": "UniLabJsonCommandAsync" + }, + "auto-fill_plate": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "fill_plate参数", + "type": "object" + }, + "type": "UniLabJsonCommandAsync" + }, + "auto-fun_wuliao_test": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "boolean" + } + }, + "required": [ + "goal" + ], + "title": "fun_wuliao_test参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-func_allpack_cmd": { + "feedback": {}, + "goal": {}, + "goal_default": { + "assembly_pressure": 4200, + "assembly_type": 7, + "elec_num": null, + "elec_use_num": null, + "elec_vol": 50, + "file_path": "/Users/sml/work" + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "assembly_pressure": { + "default": 4200, + "type": "integer", + "title": "assembly_pressure", + "description": "" + }, + "assembly_type": { + "default": 7, + "type": "integer", + "title": "assembly_type", + "description": "" + }, + "elec_num": { + "type": "string", + "title": "elec_num", + "description": "" + }, + "elec_use_num": { + "type": "string", + "title": "elec_use_num", + "description": "" + }, + "elec_vol": { + "default": 50, + "type": "integer", + "title": "elec_vol", + "description": "" + }, + "file_path": { + "default": "/Users/sml/work", + "type": "string", + "title": "file_path", + "description": "" + } + }, + "required": [ + "elec_num", + "elec_use_num" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "func_allpack_cmd参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-func_allpack_cmd_simp": { + "feedback": {}, + "goal": {}, + "goal_default": { + "assembly_pressure": 4200, + "assembly_type": 7, + "battery_clean_ignore": false, + "battery_pressure_mode": true, + "dual_drop_first_volume": 25, + "dual_drop_mode": false, + "dual_drop_start_timing": false, + "dual_drop_suction_timing": false, + "elec_num": null, + "elec_use_num": null, + "elec_vol": 50, + "file_path": "/Users/sml/work", + "fujipian_juzhendianwei": 0, + "fujipian_panshu": 0, + "gemo_juzhendianwei": 0, + "gemopanshu": 0, + "lvbodian": true, + "qiangtou_juzhendianwei": 0 + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "简化版电池组装函数,整合了参数设置和双滴模式", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "assembly_pressure": { + "default": 4200, + "description": "电池压制力(N)", + "type": "integer", + "title": "assembly_pressure" + }, + "assembly_type": { + "default": 7, + "description": "组装类型(7=不用铝箔垫, 8=使用铝箔垫)", + "type": "integer", + "title": "assembly_type" + }, + "battery_clean_ignore": { + "default": false, + "description": "是否忽略电池清洁步骤", + "type": "boolean", + "title": "battery_clean_ignore" + }, + "battery_pressure_mode": { + "default": true, + "description": "是否启用压力模式", + "type": "boolean", + "title": "battery_pressure_mode" + }, + "dual_drop_first_volume": { + "default": 25, + "description": "二次滴液第一次排液体积(μL)", + "type": "integer", + "title": "dual_drop_first_volume" + }, + "dual_drop_mode": { + "default": false, + "description": "电解液添加模式(false=单次滴液, true=二次滴液)", + "type": "boolean", + "title": "dual_drop_mode" + }, + "dual_drop_start_timing": { + "default": false, + "description": "二次滴液开始滴液时机(false=正极片前, true=正极片后)", + "type": "boolean", + "title": "dual_drop_start_timing" + }, + "dual_drop_suction_timing": { + "default": false, + "description": "二次滴液吸液时机(false=正常吸液, true=先吸液)", + "type": "boolean", + "title": "dual_drop_suction_timing" + }, + "elec_num": { + "description": "电解液瓶数", + "type": "string", + "title": "elec_num" + }, + "elec_use_num": { + "description": "每瓶电解液组装电池数", + "type": "string", + "title": "elec_use_num" + }, + "elec_vol": { + "default": 50, + "description": "电解液吸液量(μL)", + "type": "integer", + "title": "elec_vol" + }, + "file_path": { + "default": "/Users/sml/work", + "description": "实验记录保存路径", + "type": "string", + "title": "file_path" + }, + "fujipian_juzhendianwei": { + "default": 0, + "description": "负极片矩阵点位。盘位置从1开始计数,有效范围:1-8, 13-20 (写入值比实际位置少1,例如:写0取盘位1,写1取盘位2)", + "type": "integer", + "title": "fujipian_juzhendianwei" + }, + "fujipian_panshu": { + "default": 0, + "description": "负极片盘数", + "type": "integer", + "title": "fujipian_panshu" + }, + "gemo_juzhendianwei": { + "default": 0, + "description": "隔膜矩阵点位。盘位置从1开始计数,有效范围:1-8, 13-20 (写入值比实际位置少1,例如:写0取盘位1,写1取盘位2)", + "type": "integer", + "title": "gemo_juzhendianwei" + }, + "gemopanshu": { + "default": 0, + "description": "隔膜盘数", + "type": "integer", + "title": "gemopanshu" + }, + "lvbodian": { + "default": true, + "description": "是否使用铝箔垫片", + "type": "boolean", + "title": "lvbodian" + }, + "qiangtou_juzhendianwei": { + "default": 0, + "description": "枪头盒矩阵点位。盘位置从1开始计数,有效范围:1-32, 64-96 (写入值比实际位置少1,例如:写0取盘位1,写1取盘位2)", + "type": "integer", + "title": "qiangtou_juzhendianwei" + } + }, + "required": [ + "elec_num", + "elec_use_num" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "func_allpack_cmd_simp参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-func_get_csv_export_status": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "func_get_csv_export_status参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-func_pack_device_auto": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "func_pack_device_auto参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-func_pack_device_init": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "func_pack_device_init参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-func_pack_device_init_auto_start_combined": { + "feedback": {}, + "goal": {}, + "goal_default": { + "material_search_enable": false + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "组合函数:设备初始化 + 物料搜寻确认 + 切换自动模式 + 启动。初始化过程中会自动检测物料搜寻确认弹窗,并根据参数自动点击\"是\"或\"否\"按钮", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "material_search_enable": { + "default": false, + "description": "是否启用物料搜寻功能。设备初始化后会弹出物料搜寻确认弹窗,此参数控制自动点击\"是\"(启用)或\"否\"(不启用)。默认为false(不启用物料搜寻)", + "type": "boolean", + "title": "material_search_enable" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "boolean" + } + }, + "required": [ + "goal" + ], + "title": "func_pack_device_init_auto_start_combined参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-func_pack_device_start": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "func_pack_device_start参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-func_pack_device_stop": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "boolean" + } + }, + "required": [ + "goal" + ], + "title": "func_pack_device_stop参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-func_pack_get_msg_cmd": { + "feedback": {}, + "goal": {}, + "goal_default": { + "file_path": "D:\\coin_cell_data" + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "file_path": { + "default": "D:\\coin_cell_data", + "type": "string", + "title": "file_path", + "description": "" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "boolean" + } + }, + "required": [ + "goal" + ], + "title": "func_pack_get_msg_cmd参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-func_pack_send_bottle_num": { + "feedback": {}, + "goal": {}, + "goal_default": { + "bottle_num": null + }, + "handles": { + "input": [ + { + "data_key": "bottle_num", + "data_source": "workflow", + "data_type": "integer", + "handler_key": "bottle_count", + "io_type": "source", + "label": "配液瓶数", + "required": true + } + ] + }, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "bottle_num": { + "type": "string", + "title": "bottle_num", + "description": "" + } + }, + "required": [ + "bottle_num" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "func_pack_send_bottle_num参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-func_pack_send_finished_cmd": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "boolean" + } + }, + "required": [ + "goal" + ], + "title": "func_pack_send_finished_cmd参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-func_pack_send_msg_cmd": { + "feedback": {}, + "goal": {}, + "goal_default": { + "assembly_pressure": null, + "assembly_type": null, + "elec_use_num": null, + "elec_vol": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "assembly_pressure": { + "type": "string", + "title": "assembly_pressure", + "description": "" + }, + "assembly_type": { + "type": "string", + "title": "assembly_type", + "description": "" + }, + "elec_use_num": { + "type": "string", + "title": "elec_use_num", + "description": "" + }, + "elec_vol": { + "type": "string", + "title": "elec_vol", + "description": "" + } + }, + "required": [ + "elec_use_num", + "elec_vol", + "assembly_type", + "assembly_pressure" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "boolean" + } + }, + "required": [ + "goal" + ], + "title": "func_pack_send_msg_cmd参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-func_read_data_and_output": { + "feedback": {}, + "goal": {}, + "goal_default": { + "file_path": "/Users/sml/work" + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "file_path": { + "default": "/Users/sml/work", + "type": "string", + "title": "file_path", + "description": "" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "func_read_data_and_output参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-func_sendbottle_allpack_multi": { + "feedback": {}, + "goal": {}, + "goal_default": { + "assembly_pressure": 4200, + "assembly_type": 7, + "battery_clean_ignore": false, + "battery_pressure_mode": true, + "dual_drop_first_volume": 25, + "dual_drop_mode": false, + "dual_drop_start_timing": false, + "dual_drop_suction_timing": false, + "elec_num": null, + "elec_use_num": null, + "elec_vol": 50, + "file_path": "/Users/sml/work", + "fujipian_juzhendianwei": 0, + "fujipian_panshu": 0, + "gemo_juzhendianwei": 0, + "gemopanshu": 0, + "lvbodian": true, + "qiangtou_juzhendianwei": 0 + }, + "handles": { + "input": [ + { + "data_key": "elec_num", + "data_source": "workflow", + "data_type": "integer", + "handler_key": "bottle_count", + "io_type": "source", + "label": "配液瓶数", + "required": true + } + ] + }, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "发送瓶数+简化组装函数(适用于第二批次及后续批次),合并了发送瓶数和简化组装流程", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "assembly_pressure": { + "default": 4200, + "description": "电池压制力(N)", + "type": "integer", + "title": "assembly_pressure" + }, + "assembly_type": { + "default": 7, + "description": "组装类型(7=不用铝箔垫, 8=使用铝箔垫)", + "type": "integer", + "title": "assembly_type" + }, + "battery_clean_ignore": { + "default": false, + "description": "是否忽略电池清洁步骤", + "type": "boolean", + "title": "battery_clean_ignore" + }, + "battery_pressure_mode": { + "default": true, + "description": "是否启用压力模式", + "type": "boolean", + "title": "battery_pressure_mode" + }, + "dual_drop_first_volume": { + "default": 25, + "description": "二次滴液第一次排液体积(μL)", + "type": "integer", + "title": "dual_drop_first_volume" + }, + "dual_drop_mode": { + "default": false, + "description": "电解液添加模式(false=单次滴液, true=二次滴液)", + "type": "boolean", + "title": "dual_drop_mode" + }, + "dual_drop_start_timing": { + "default": false, + "description": "二次滴液开始滴液时机(false=正极片前, true=正极片后)", + "type": "boolean", + "title": "dual_drop_start_timing" + }, + "dual_drop_suction_timing": { + "default": false, + "description": "二次滴液吸液时机(false=正常吸液, true=先吸液)", + "type": "boolean", + "title": "dual_drop_suction_timing" + }, + "elec_num": { + "description": "电解液瓶数,如果在workflow中已通过handles连接上游(create_orders的bottle_count输出),则此参数会自动从上游获取,无需手动填写;如果单独使用此函数(没有上游连接),则必须手动填写电解液瓶数", + "type": "string", + "title": "elec_num" + }, + "elec_use_num": { + "description": "每瓶电解液组装电池数", + "type": "string", + "title": "elec_use_num" + }, + "elec_vol": { + "default": 50, + "description": "电解液吸液量(μL)", + "type": "integer", + "title": "elec_vol" + }, + "file_path": { + "default": "/Users/sml/work", + "description": "实验记录保存路径", + "type": "string", + "title": "file_path" + }, + "fujipian_juzhendianwei": { + "default": 0, + "description": "负极片矩阵点位。盘位置从1开始计数,有效范围:1-8, 13-20 (写入值比实际位置少1,例如:写0取盘位1,写1取盘位2)", + "type": "integer", + "title": "fujipian_juzhendianwei" + }, + "fujipian_panshu": { + "default": 0, + "description": "负极片盘数", + "type": "integer", + "title": "fujipian_panshu" + }, + "gemo_juzhendianwei": { + "default": 0, + "description": "隔膜矩阵点位。盘位置从1开始计数,有效范围:1-8, 13-20 (写入值比实际位置少1,例如:写0取盘位1,写1取盘位2)", + "type": "integer", + "title": "gemo_juzhendianwei" + }, + "gemopanshu": { + "default": 0, + "description": "隔膜盘数", + "type": "integer", + "title": "gemopanshu" + }, + "lvbodian": { + "default": true, + "description": "是否使用铝箔垫片", + "type": "boolean", + "title": "lvbodian" + }, + "qiangtou_juzhendianwei": { + "default": 0, + "description": "枪头盒矩阵点位。盘位置从1开始计数,有效范围:1-32, 64-96 (写入值比实际位置少1,例如:写0取盘位1,写1取盘位2)", + "type": "integer", + "title": "qiangtou_juzhendianwei" + } + }, + "required": [ + "elec_num", + "elec_use_num" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "func_sendbottle_allpack_multi参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-func_stop_read_data": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "func_stop_read_data参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-modify_deck_name": { + "feedback": {}, + "goal": {}, + "goal_default": { + "resource_name": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "resource_name": { + "type": "string", + "title": "resource_name", + "description": "" + } + }, + "required": [ + "resource_name" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "modify_deck_name参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-qiming_coin_cell_code": { + "feedback": {}, + "goal": {}, + "goal_default": { + "battery_clean_ignore": false, + "battery_pressure": 4000, + "battery_pressure_mode": true, + "fujipian_juzhendianwei": 0, + "fujipian_panshu": null, + "gemo_juzhendianwei": 0, + "gemopanshu": 0, + "lvbodian": true + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "battery_clean_ignore": { + "default": false, + "type": "boolean", + "title": "battery_clean_ignore", + "description": "" + }, + "battery_pressure": { + "default": 4000, + "type": "integer", + "title": "battery_pressure", + "description": "" + }, + "battery_pressure_mode": { + "default": true, + "type": "boolean", + "title": "battery_pressure_mode", + "description": "" + }, + "fujipian_juzhendianwei": { + "default": 0, + "type": "integer", + "title": "fujipian_juzhendianwei", + "description": "" + }, + "fujipian_panshu": { + "type": "integer", + "title": "fujipian_panshu", + "description": "" + }, + "gemo_juzhendianwei": { + "default": 0, + "type": "integer", + "title": "gemo_juzhendianwei", + "description": "" + }, + "gemopanshu": { + "default": 0, + "type": "integer", + "title": "gemopanshu", + "description": "" + }, + "lvbodian": { + "default": true, + "type": "boolean", + "title": "lvbodian", + "description": "" + } + }, + "required": [ + "fujipian_panshu" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "boolean" + } + }, + "required": [ + "goal" + ], + "title": "qiming_coin_cell_code参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + } + }, + "module": "unilabos.devices.workstation.coin_cell_assembly.coin_cell_assembly:CoinCellAssemblyWorkstation", + "status_types": { + "data_assembly_coin_cell_num": "Int64", + "data_assembly_pressure": "Int64", + "data_assembly_time": "Float64", + "data_axis_x_pos": "Float64", + "data_axis_y_pos": "Float64", + "data_axis_z_pos": "Float64", + "data_coin_cell_code": "String", + "data_coin_num": "Int64", + "data_electrolyte_code": "String", + "data_electrolyte_volume": "Int64", + "data_glove_box_o2_content": "Float64", + "data_glove_box_pressure": "Float64", + "data_glove_box_water_content": "Float64", + "data_open_circuit_voltage": "Float64", + "data_pole_weight": "Float64", + "request_rec_msg_status": "Bool", + "request_send_msg_status": "Bool", + "sys_mode": "String", + "sys_status": "String" + }, + "type": "python" + }, + "config_info": [], + "description": "", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/devices/coin_cell_workstation.yaml", + "handles": [], + "icon": "koudian.webp", + "init_param_schema": { + "config": { + "properties": { + "address": { + "default": "172.16.28.102", + "type": "string" + }, + "config": { + "type": "object" + }, + "debug_mode": { + "default": false, + "type": "boolean" + }, + "deck": { + "type": "string" + }, + "port": { + "default": "502", + "type": "string" + } + }, + "required": [], + "type": "object" + }, + "data": { + "properties": { + "data_assembly_coin_cell_num": { + "type": "integer" + }, + "data_assembly_pressure": { + "type": "integer" + }, + "data_assembly_time": { + "type": "number" + }, + "data_axis_x_pos": { + "type": "number" + }, + "data_axis_y_pos": { + "type": "number" + }, + "data_axis_z_pos": { + "type": "number" + }, + "data_coin_cell_code": { + "type": "string" + }, + "data_coin_num": { + "type": "integer" + }, + "data_electrolyte_code": { + "type": "string" + }, + "data_electrolyte_volume": { + "type": "integer" + }, + "data_glove_box_o2_content": { + "type": "number" + }, + "data_glove_box_pressure": { + "type": "number" + }, + "data_glove_box_water_content": { + "type": "number" + }, + "data_open_circuit_voltage": { + "type": "number" + }, + "data_pole_weight": { + "type": "number" + }, + "request_rec_msg_status": { + "type": "boolean" + }, + "request_send_msg_status": { + "type": "boolean" + }, + "sys_mode": { + "type": "string" + }, + "sys_status": { + "type": "string" + } + }, + "required": [ + "data_assembly_coin_cell_num", + "data_assembly_pressure", + "data_assembly_time", + "data_axis_x_pos", + "data_axis_y_pos", + "data_axis_z_pos", + "data_coin_cell_code", + "data_coin_num", + "data_electrolyte_code", + "data_electrolyte_volume", + "data_glove_box_o2_content", + "data_glove_box_pressure", + "data_glove_box_water_content", + "data_open_circuit_voltage", + "data_pole_weight", + "request_rec_msg_status", + "request_send_msg_status", + "sys_mode", + "sys_status" + ], + "type": "object" + } + }, + "registry_type": "device", + "version": "1.0.0" + }, + { + "id": "xrd_d7mate", + "category": [ + "xrd_d7mate" + ], + "class": { + "action_value_mappings": { + "auto-close": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "安全关闭与XRD D7-Mate设备的TCP连接,释放网络资源。", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "close参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-connect": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "与XRD D7-Mate设备建立TCP连接,配置超时参数。", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "connect参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-start_from_string": { + "feedback": {}, + "goal": {}, + "goal_default": { + "params": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "params": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "object" + } + ], + "title": "params", + "description": "" + } + }, + "required": [ + "params" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "start_from_string参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "get_current_acquire_data": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "result": {}, + "schema": { + "title": "EmptyIn", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": true, + "title": "EmptyIn_Goal" + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "EmptyIn_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + } + }, + "title": "EmptyIn_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "EmptyIn" + }, + "get_sample_down": { + "feedback": {}, + "goal": { + "int_input": "int_input", + "sample_station": "sample_station" + }, + "goal_default": { + "int_input": 0 + }, + "handles": {}, + "placeholder_keys": {}, + "result": { + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "IntSingleInput", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "int_input": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "int_input", + "description": "" + } + }, + "title": "IntSingleInput_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "IntSingleInput_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "IntSingleInput_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "IntSingleInput" + }, + "get_sample_request": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "result": {}, + "schema": { + "title": "EmptyIn", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": true, + "title": "EmptyIn_Goal" + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "EmptyIn_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + } + }, + "title": "EmptyIn_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "EmptyIn" + }, + "get_sample_status": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "result": {}, + "schema": { + "title": "EmptyIn", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": true, + "title": "EmptyIn_Goal" + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "EmptyIn_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + } + }, + "title": "EmptyIn_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "EmptyIn" + }, + "send_sample_down_ready": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": { + "return_info": "return_info" + }, + "schema": { + "title": "EmptyIn", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": true, + "title": "EmptyIn_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "EmptyIn_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + } + }, + "title": "EmptyIn_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "EmptyIn" + }, + "send_sample_ready": { + "feedback": {}, + "goal": { + "end_theta": 80.0, + "exp_time": 0.5, + "increment": 0.02, + "sample_id": "", + "start_theta": 10.0 + }, + "goal_default": { + "end_theta": null, + "exp_time": null, + "increment": null, + "sample_id": null, + "start_theta": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "送样完成后,发送样品信息和采集参数", + "properties": { + "feedback": { + "title": "SampleReadyInput_Feedback" + }, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "end_theta": { + "description": "结束角度(≥5.5°,且必须大于start_theta)", + "type": "number", + "title": "end_theta" + }, + "exp_time": { + "description": "曝光时间(0.1-5.0秒)", + "type": "number", + "title": "exp_time" + }, + "increment": { + "description": "角度增量(≥0.005)", + "type": "number", + "title": "increment" + }, + "sample_id": { + "description": "样品标识符", + "type": "string", + "title": "sample_id" + }, + "start_theta": { + "description": "起始角度(≥5°)", + "type": "number", + "title": "start_theta" + } + }, + "required": [ + "sample_id", + "start_theta", + "end_theta", + "increment", + "exp_time" + ], + "title": "SampleReadyInput_Goal", + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "title": "SampleReadyInput_Result", + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "send_sample_ready参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "set_power_off": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": { + "return_info": "return_info" + }, + "schema": { + "title": "EmptyIn", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": true, + "title": "EmptyIn_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "EmptyIn_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + } + }, + "title": "EmptyIn_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "EmptyIn" + }, + "set_power_on": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": { + "return_info": "return_info" + }, + "schema": { + "title": "EmptyIn", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": true, + "title": "EmptyIn_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "EmptyIn_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + } + }, + "title": "EmptyIn_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "EmptyIn" + }, + "set_voltage_current": { + "feedback": {}, + "goal": { + "current": 30.0, + "voltage": 40.0 + }, + "goal_default": { + "current": null, + "voltage": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "设置高压电源电压和电流", + "properties": { + "feedback": { + "title": "VoltageCurrentInput_Feedback" + }, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "current": { + "description": "电流值(mA)", + "type": "number", + "title": "current" + }, + "voltage": { + "description": "电压值(kV)", + "type": "number", + "title": "voltage" + } + }, + "required": [ + "voltage", + "current" + ], + "title": "VoltageCurrentInput_Goal", + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "title": "VoltageCurrentInput_Result", + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "set_voltage_current参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "start": { + "feedback": {}, + "goal": {}, + "goal_default": { + "end_theta": 80.0, + "exp_time": 0.1, + "increment": 0.05, + "sample_id": "", + "start_theta": 10.0, + "string": "", + "wait_minutes": 3.0 + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "启动自动模式→上样→等待→样品准备→监控→检测下样位→执行下样流程。", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "end_theta": { + "default": 80.0, + "description": "结束角度(≥5.5°,且必须大于start_theta)", + "type": "number", + "title": "end_theta" + }, + "exp_time": { + "default": 0.1, + "description": "曝光时间(0.1-5.0秒)", + "type": "number", + "title": "exp_time" + }, + "increment": { + "default": 0.05, + "description": "角度增量(≥0.005)", + "type": "number", + "title": "increment" + }, + "sample_id": { + "default": "", + "description": "样品标识符", + "type": "string", + "title": "sample_id" + }, + "start_theta": { + "default": 10.0, + "description": "起始角度(≥5°)", + "type": "number", + "title": "start_theta" + }, + "string": { + "default": "", + "description": "字符串格式的参数输入,如果提供则优先解析使用", + "type": "string", + "title": "string" + }, + "wait_minutes": { + "default": 3.0, + "description": "允许上样后等待分钟数", + "type": "number", + "title": "wait_minutes" + } + }, + "required": [], + "title": "StartWorkflow_Goal", + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "title": "StartWorkflow_Result", + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "start参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "start_auto_mode": { + "feedback": {}, + "goal": { + "status": true + }, + "goal_default": { + "status": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "启动或停止自动模式", + "properties": { + "feedback": { + "title": "BoolSingleInput_Feedback" + }, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "status": { + "description": "True-启动自动模式,False-停止自动模式", + "type": "boolean", + "title": "status" + } + }, + "required": [ + "status" + ], + "title": "BoolSingleInput_Goal", + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "title": "BoolSingleInput_Result", + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "start_auto_mode参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + } + }, + "module": "unilabos.devices.xrd_d7mate.xrd_d7mate:XRDClient", + "status_types": { + "current_acquire_data": "dict", + "sample_request": "dict", + "sample_status": "dict" + }, + "type": "python" + }, + "config_info": [], + "description": "XRD D7-Mate X射线衍射分析设备,通过TCP通信实现远程控制与状态监控,支持自动模式控制、上样流程、数据获取、下样流程和高压电源控制等功能。", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/devices/xrd_d7mate.yaml", + "handles": [], + "icon": "", + "init_param_schema": { + "config": { + "properties": { + "host": { + "default": "127.0.0.1", + "type": "string" + }, + "port": { + "default": 6001, + "type": "string" + }, + "timeout": { + "default": 10.0, + "type": "string" + } + }, + "required": [], + "type": "object" + }, + "data": { + "properties": { + "current_acquire_data": { + "type": "object" + }, + "sample_request": { + "type": "object" + }, + "sample_status": { + "type": "object" + } + }, + "required": [ + "current_acquire_data", + "sample_request", + "sample_status" + ], + "type": "object" + } + }, + "registry_type": "device", + "version": "1.0.0" + }, + { + "id": "opcua_example", + "category": [ + "opcua_example" + ], + "class": { + "action_value_mappings": { + "auto-disconnect": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "disconnect参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-load_config": { + "feedback": {}, + "goal": {}, + "goal_default": { + "config_path": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "config_path": { + "type": "string", + "title": "config_path", + "description": "" + } + }, + "required": [ + "config_path" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "load_config参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-refresh_node_values": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "refresh_node_values参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-set_node_value": { + "feedback": {}, + "goal": {}, + "goal_default": { + "name": null, + "value": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "name": { + "type": "string", + "title": "name", + "description": "" + }, + "value": { + "type": "string", + "title": "value", + "description": "" + } + }, + "required": [ + "name", + "value" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "set_node_value参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-start_node_refresh": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "start_node_refresh参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-stop_node_refresh": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "stop_node_refresh参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + } + }, + "module": "unilabos.device_comms.opcua_client.client:OpcUaClient", + "status_types": {}, + "type": "python" + }, + "config_info": [], + "description": null, + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/devices/opcua_example.yaml", + "handles": [], + "icon": "", + "init_param_schema": { + "config": { + "properties": { + "config_path": { + "type": "string" + }, + "password": { + "type": "string" + }, + "refresh_interval": { + "default": 1.0, + "type": "number" + }, + "url": { + "type": "string" + }, + "username": { + "type": "string" + } + }, + "required": [ + "url" + ], + "type": "object" + }, + "data": { + "properties": {}, + "required": [], + "type": "object" + } + }, + "registry_type": "device", + "version": "1.0.0" + }, + { + "id": "bioyond_dispensing_station", + "category": [ + "workstation", + "bioyond", + "bioyond_dispensing_station" + ], + "class": { + "action_value_mappings": { + "auto-brief_step_parameters": { + "feedback": {}, + "goal": {}, + "goal_default": { + "data": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "data": { + "type": "object", + "title": "data", + "description": "" + } + }, + "required": [ + "data" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "brief_step_parameters参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-process_order_finish_report": { + "feedback": {}, + "goal": {}, + "goal_default": { + "report_request": null, + "used_materials": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "report_request": { + "type": "string", + "title": "report_request", + "description": "" + }, + "used_materials": { + "type": "string", + "title": "used_materials", + "description": "" + } + }, + "required": [ + "report_request", + "used_materials" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "process_order_finish_report参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-project_order_report": { + "feedback": {}, + "goal": {}, + "goal_default": { + "order_id": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "order_id": { + "type": "string", + "title": "order_id", + "description": "" + } + }, + "required": [ + "order_id" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "project_order_report参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-query_resource_by_name": { + "feedback": {}, + "goal": {}, + "goal_default": { + "material_name": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "material_name": { + "type": "string", + "title": "material_name", + "description": "" + } + }, + "required": [ + "material_name" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "query_resource_by_name参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-workflow_sample_locations": { + "feedback": {}, + "goal": {}, + "goal_default": { + "workflow_id": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "workflow_id": { + "type": "string", + "title": "workflow_id", + "description": "" + } + }, + "required": [ + "workflow_id" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "workflow_sample_locations参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "batch_create_90_10_vial_feeding_tasks": { + "feedback": {}, + "goal": { + "delay_time": "delay_time", + "hold_m_name": "hold_m_name", + "liquid_material_name": "liquid_material_name", + "speed": "speed", + "temperature": "temperature", + "titration": "titration" + }, + "goal_default": { + "delay_time": null, + "hold_m_name": null, + "liquid_material_name": "NMP", + "speed": null, + "temperature": null, + "titration": null + }, + "handles": { + "input": [ + { + "data_key": "titration", + "data_source": "handle", + "data_type": "object", + "handler_key": "titration", + "io_type": "source", + "label": "Titration Data From Calculation Node" + } + ], + "output": [ + { + "data_key": "return_info", + "data_source": "executor", + "data_type": "string", + "handler_key": "BATCH_CREATE_RESULT", + "io_type": "sink", + "label": "Complete Batch Create Result JSON (contains order_codes and order_ids)" + } + ] + }, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "批量创建90%10%小瓶投料任务。从计算节点接收titration数据,包含物料名称、主称固体质量、滴定固体质量和滴定溶剂体积。返回的return_info中包含order_codes和order_ids列表。", + "properties": { + "feedback": { + "title": "BatchCreate9010VialFeedingTasks_Feedback" + }, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "delay_time": { + "description": "延迟时间(秒),默认600", + "type": "string", + "title": "delay_time" + }, + "hold_m_name": { + "description": "库位名称,如\"C01\",必填参数", + "type": "string", + "title": "hold_m_name" + }, + "liquid_material_name": { + "default": "NMP", + "description": "10%物料的液体物料名称,默认为\"NMP\"", + "type": "string", + "title": "liquid_material_name" + }, + "speed": { + "description": "搅拌速度,默认400", + "type": "string", + "title": "speed" + }, + "temperature": { + "description": "温度(℃),默认40", + "type": "string", + "title": "temperature" + }, + "titration": { + "description": "滴定信息对象,包含: name(物料名称), main_portion(主称固体质量g), titration_portion(滴定固体质量g), titration_solvent(滴定溶液体积mL)", + "type": "string", + "title": "titration" + } + }, + "required": [ + "titration" + ], + "title": "BatchCreate9010VialFeedingTasks_Goal", + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "title": "BatchCreate9010VialFeedingTasks_Result", + "type": "string" + } + }, + "required": [ + "goal" + ], + "title": "batch_create_90_10_vial_feeding_tasks参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "batch_create_diamine_solution_tasks": { + "feedback": {}, + "goal": { + "delay_time": "delay_time", + "liquid_material_name": "liquid_material_name", + "solutions": "solutions", + "speed": "speed", + "temperature": "temperature" + }, + "goal_default": { + "delay_time": null, + "liquid_material_name": "NMP", + "solutions": null, + "speed": null, + "temperature": null + }, + "handles": { + "input": [ + { + "data_key": "solutions", + "data_source": "handle", + "data_type": "array", + "handler_key": "solutions", + "io_type": "source", + "label": "Solution Data From Python" + } + ], + "output": [ + { + "data_key": "return_info", + "data_source": "executor", + "data_type": "string", + "handler_key": "BATCH_CREATE_RESULT", + "io_type": "sink", + "label": "Complete Batch Create Result JSON (contains order_codes and order_ids)" + } + ] + }, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "批量创建二胺溶液配置任务。自动为多个二胺样品创建溶液配置任务,每个任务包含固体物料称量、溶剂添加、搅拌混合等步骤。返回的return_info中包含order_codes和order_ids列表。", + "properties": { + "feedback": { + "title": "BatchCreateDiamineSolutionTasks_Feedback" + }, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "delay_time": { + "description": "溶液配置完成后的延迟时间(秒),用于充分混合和溶解,默认600秒", + "type": "string", + "title": "delay_time" + }, + "liquid_material_name": { + "default": "NMP", + "description": "液体溶剂名称,用于溶解固体物料,默认为NMP(N-甲基吡咯烷酮)", + "type": "string", + "title": "liquid_material_name" + }, + "solutions": { + "description": "溶液列表,JSON数组格式,每个元素包含: name(物料名称), order(序号), solid_mass(固体质量g), solvent_volume(溶剂体积mL)。示例: [{\"name\": \"MDA\", \"order\": 0, \"solid_mass\": 5.0, \"solvent_volume\": 20}, {\"name\": \"MPDA\", \"order\": 1, \"solid_mass\": 4.5, \"solvent_volume\": 18}]", + "type": "string", + "title": "solutions" + }, + "speed": { + "description": "搅拌速度(rpm),用于混合溶液,默认400转/分钟", + "type": "string", + "title": "speed" + }, + "temperature": { + "description": "配置温度(℃),溶液配置过程的目标温度,默认20℃(室温)", + "type": "string", + "title": "temperature" + } + }, + "required": [ + "solutions" + ], + "title": "BatchCreateDiamineSolutionTasks_Goal", + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "title": "BatchCreateDiamineSolutionTasks_Result", + "type": "string" + } + }, + "required": [ + "goal" + ], + "title": "batch_create_diamine_solution_tasks参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "compute_experiment_design": { + "feedback": {}, + "goal": { + "m_tot": "m_tot", + "ratio": "ratio", + "titration_percent": "titration_percent", + "wt_percent": "wt_percent" + }, + "goal_default": { + "m_tot": "70", + "ratio": null, + "titration_percent": "0.03", + "wt_percent": "0.25" + }, + "handles": { + "output": [ + { + "data_key": "solutions", + "data_source": "executor", + "data_type": "array", + "handler_key": "solutions", + "io_type": "sink", + "label": "Solution Data From Python" + }, + { + "data_key": "titration", + "data_source": "executor", + "data_type": "object", + "handler_key": "titration", + "io_type": "sink", + "label": "Titration Data From Calculation Node" + }, + { + "data_key": "solvents", + "data_source": "executor", + "data_type": "object", + "handler_key": "solvents", + "io_type": "sink", + "label": "Solvents Data From Calculation Node" + }, + { + "data_key": "feeding_order", + "data_source": "executor", + "data_type": "array", + "handler_key": "feeding_order", + "io_type": "sink", + "label": "Feeding Order Data From Calculation Node" + } + ] + }, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "计算实验设计,输出solutions/titration/solvents/feeding_order用于后续节点。", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "m_tot": { + "default": "70", + "description": "总质量(g)", + "type": "string", + "title": "m_tot" + }, + "ratio": { + "description": "组分摩尔比的对象,保持输入顺序,如{\"MDA\":1,\"BTDA\":1}", + "type": "object", + "title": "ratio" + }, + "titration_percent": { + "default": "0.03", + "description": "滴定比例(10%部分)", + "type": "string", + "title": "titration_percent" + }, + "wt_percent": { + "default": "0.25", + "description": "目标固含质量分数", + "type": "string", + "title": "wt_percent" + } + }, + "required": [ + "ratio" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "properties": { + "feeding_order": { + "items": {}, + "title": "Feeding Order", + "type": "array" + }, + "return_info": { + "title": "Return Info", + "type": "string" + }, + "solutions": { + "items": {}, + "title": "Solutions", + "type": "array" + }, + "solvents": { + "additionalProperties": true, + "title": "Solvents", + "type": "object" + }, + "titration": { + "additionalProperties": true, + "title": "Titration", + "type": "object" + } + }, + "required": [ + "solutions", + "titration", + "solvents", + "feeding_order", + "return_info" + ], + "title": "ComputeExperimentDesignReturn", + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "compute_experiment_design参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "create_90_10_vial_feeding_task": { + "feedback": {}, + "goal": { + "delay_time": "delay_time", + "hold_m_name": "hold_m_name", + "order_name": "order_name", + "percent_10_1_assign_material_name": "percent_10_1_assign_material_name", + "percent_10_1_liquid_material_name": "percent_10_1_liquid_material_name", + "percent_10_1_target_weigh": "percent_10_1_target_weigh", + "percent_10_1_volume": "percent_10_1_volume", + "percent_10_2_assign_material_name": "percent_10_2_assign_material_name", + "percent_10_2_liquid_material_name": "percent_10_2_liquid_material_name", + "percent_10_2_target_weigh": "percent_10_2_target_weigh", + "percent_10_2_volume": "percent_10_2_volume", + "percent_10_3_assign_material_name": "percent_10_3_assign_material_name", + "percent_10_3_liquid_material_name": "percent_10_3_liquid_material_name", + "percent_10_3_target_weigh": "percent_10_3_target_weigh", + "percent_10_3_volume": "percent_10_3_volume", + "percent_90_1_assign_material_name": "percent_90_1_assign_material_name", + "percent_90_1_target_weigh": "percent_90_1_target_weigh", + "percent_90_2_assign_material_name": "percent_90_2_assign_material_name", + "percent_90_2_target_weigh": "percent_90_2_target_weigh", + "percent_90_3_assign_material_name": "percent_90_3_assign_material_name", + "percent_90_3_target_weigh": "percent_90_3_target_weigh", + "speed": "speed", + "temperature": "temperature" + }, + "goal_default": { + "order_name": "", + "percent_90_1_assign_material_name": "", + "percent_90_1_target_weigh": "", + "percent_90_2_assign_material_name": "", + "percent_90_2_target_weigh": "", + "percent_90_3_assign_material_name": "", + "percent_90_3_target_weigh": "", + "percent_10_1_assign_material_name": "", + "percent_10_1_target_weigh": "", + "percent_10_1_volume": "", + "percent_10_1_liquid_material_name": "", + "percent_10_2_assign_material_name": "", + "percent_10_2_target_weigh": "", + "percent_10_2_volume": "", + "percent_10_2_liquid_material_name": "", + "percent_10_3_assign_material_name": "", + "percent_10_3_target_weigh": "", + "percent_10_3_volume": "", + "percent_10_3_liquid_material_name": "", + "speed": "", + "temperature": "", + "delay_time": "", + "hold_m_name": "" + }, + "handles": {}, + "placeholder_keys": {}, + "result": { + "return_info": "return_info" + }, + "schema": { + "title": "DispenStationVialFeed", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "order_name": { + "type": "string", + "title": "order_name", + "description": "" + }, + "percent_90_1_assign_material_name": { + "type": "string", + "title": "percent_90_1_assign_material_name", + "description": "" + }, + "percent_90_1_target_weigh": { + "type": "string", + "title": "percent_90_1_target_weigh", + "description": "" + }, + "percent_90_2_assign_material_name": { + "type": "string", + "title": "percent_90_2_assign_material_name", + "description": "" + }, + "percent_90_2_target_weigh": { + "type": "string", + "title": "percent_90_2_target_weigh", + "description": "" + }, + "percent_90_3_assign_material_name": { + "type": "string", + "title": "percent_90_3_assign_material_name", + "description": "" + }, + "percent_90_3_target_weigh": { + "type": "string", + "title": "percent_90_3_target_weigh", + "description": "" + }, + "percent_10_1_assign_material_name": { + "type": "string", + "title": "percent_10_1_assign_material_name", + "description": "" + }, + "percent_10_1_target_weigh": { + "type": "string", + "title": "percent_10_1_target_weigh", + "description": "" + }, + "percent_10_1_volume": { + "type": "string", + "title": "percent_10_1_volume", + "description": "" + }, + "percent_10_1_liquid_material_name": { + "type": "string", + "title": "percent_10_1_liquid_material_name", + "description": "" + }, + "percent_10_2_assign_material_name": { + "type": "string", + "title": "percent_10_2_assign_material_name", + "description": "" + }, + "percent_10_2_target_weigh": { + "type": "string", + "title": "percent_10_2_target_weigh", + "description": "" + }, + "percent_10_2_volume": { + "type": "string", + "title": "percent_10_2_volume", + "description": "" + }, + "percent_10_2_liquid_material_name": { + "type": "string", + "title": "percent_10_2_liquid_material_name", + "description": "" + }, + "percent_10_3_assign_material_name": { + "type": "string", + "title": "percent_10_3_assign_material_name", + "description": "" + }, + "percent_10_3_target_weigh": { + "type": "string", + "title": "percent_10_3_target_weigh", + "description": "" + }, + "percent_10_3_volume": { + "type": "string", + "title": "percent_10_3_volume", + "description": "" + }, + "percent_10_3_liquid_material_name": { + "type": "string", + "title": "percent_10_3_liquid_material_name", + "description": "" + }, + "speed": { + "type": "string", + "title": "speed", + "description": "" + }, + "temperature": { + "type": "string", + "title": "temperature", + "description": "" + }, + "delay_time": { + "type": "string", + "title": "delay_time", + "description": "" + }, + "hold_m_name": { + "type": "string", + "title": "hold_m_name", + "description": "" + } + }, + "title": "DispenStationVialFeed_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "DispenStationVialFeed_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + } + }, + "title": "DispenStationVialFeed_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "DispenStationVialFeed" + }, + "create_diamine_solution_task": { + "feedback": {}, + "goal": { + "delay_time": "delay_time", + "hold_m_name": "hold_m_name", + "liquid_material_name": "liquid_material_name", + "material_name": "material_name", + "order_name": "order_name", + "speed": "speed", + "target_weigh": "target_weigh", + "temperature": "temperature", + "volume": "volume" + }, + "goal_default": { + "order_name": "", + "material_name": "", + "target_weigh": "", + "volume": "", + "liquid_material_name": "", + "speed": "", + "temperature": "", + "delay_time": "", + "hold_m_name": "" + }, + "handles": {}, + "placeholder_keys": {}, + "result": { + "return_info": "return_info" + }, + "schema": { + "title": "DispenStationSolnPrep", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "order_name": { + "type": "string", + "title": "order_name", + "description": "" + }, + "material_name": { + "type": "string", + "title": "material_name", + "description": "" + }, + "target_weigh": { + "type": "string", + "title": "target_weigh", + "description": "" + }, + "volume": { + "type": "string", + "title": "volume", + "description": "" + }, + "liquid_material_name": { + "type": "string", + "title": "liquid_material_name", + "description": "" + }, + "speed": { + "type": "string", + "title": "speed", + "description": "" + }, + "temperature": { + "type": "string", + "title": "temperature", + "description": "" + }, + "delay_time": { + "type": "string", + "title": "delay_time", + "description": "" + }, + "hold_m_name": { + "type": "string", + "title": "hold_m_name", + "description": "" + } + }, + "title": "DispenStationSolnPrep_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "DispenStationSolnPrep_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + } + }, + "title": "DispenStationSolnPrep_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "DispenStationSolnPrep" + }, + "scheduler_start": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "启动调度器 - 启动Bioyond配液站的任务调度器,开始执行队列中的任务", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "title": "scheduler_start结果", + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "scheduler_start参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "transfer_materials_to_reaction_station": { + "feedback": {}, + "goal": { + "target_device_id": "target_device_id", + "transfer_groups": "transfer_groups" + }, + "goal_default": { + "target_device_id": null, + "transfer_groups": null + }, + "handles": {}, + "placeholder_keys": { + "target_device_id": "unilabos_devices" + }, + "result": {}, + "schema": { + "description": "将配液站完成的物料(溶液、样品等)转移到指定反应站的堆栈库位。支持配置多组转移任务,每组包含物料名称、目标堆栈和目标库位。", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "target_device_id": { + "description": "目标反应站设备ID(从设备列表中选择,所有转移组都使用同一个目标设备)", + "type": "string", + "title": "target_device_id" + }, + "transfer_groups": { + "description": "转移任务组列表,每组包含物料名称、目标堆栈和目标库位,可以添加多组", + "type": "array", + "title": "transfer_groups" + } + }, + "required": [ + "target_device_id", + "transfer_groups" + ], + "type": "object", + "_unilabos_placeholder_info": { + "target_device_id": "unilabos_devices" + } + }, + "result": { + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "transfer_materials_to_reaction_station参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "wait_for_multiple_orders_and_get_reports": { + "feedback": {}, + "goal": { + "batch_create_result": "batch_create_result", + "check_interval": "check_interval", + "timeout": "timeout" + }, + "goal_default": { + "batch_create_result": null, + "check_interval": 10, + "timeout": 7200 + }, + "handles": { + "input": [ + { + "data_key": "batch_create_result", + "data_source": "handle", + "data_type": "string", + "handler_key": "BATCH_CREATE_RESULT", + "io_type": "source", + "label": "Batch Task Creation Result From Previous Step" + } + ], + "output": [ + { + "data_key": "return_info", + "data_source": "handle", + "data_type": "string", + "handler_key": "batch_reports_result", + "io_type": "sink", + "label": "Batch Order Completion Reports" + } + ] + }, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "同时等待多个任务完成并获取所有实验报告。从上游batch_create任务接收包含order_codes和order_ids的结果对象,并行监控所有任务状态并返回每个任务的报告。", + "properties": { + "feedback": { + "title": "WaitForMultipleOrdersAndGetReports_Feedback" + }, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "batch_create_result": { + "description": "批量创建任务的返回结果对象,包含order_codes和order_ids数组。从上游batch_create节点通过handle传递", + "type": "string", + "title": "batch_create_result" + }, + "check_interval": { + "default": 10, + "description": "检查任务状态的时间间隔(秒),默认每10秒检查一次所有待完成任务", + "type": "integer", + "title": "check_interval" + }, + "timeout": { + "default": 7200, + "description": "等待超时时间(秒),默认7200秒(2小时)。超过此时间未完成的任务将标记为timeout", + "type": "integer", + "title": "timeout" + } + }, + "required": [], + "title": "WaitForMultipleOrdersAndGetReports_Goal", + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "title": "WaitForMultipleOrdersAndGetReports_Result", + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "wait_for_multiple_orders_and_get_reports参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + } + }, + "module": "unilabos.devices.workstation.bioyond_studio.dispensing_station.dispensing_station:BioyondDispensingStation", + "status_types": {}, + "type": "python" + }, + "config_info": [], + "description": "", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/devices/bioyond_dispensing_station.yaml", + "handles": [], + "icon": "preparation_station.webp", + "init_param_schema": { + "config": { + "properties": { + "config": { + "type": "object" + }, + "deck": { + "type": "string" + }, + "protocol_type": { + "type": "string" + } + }, + "required": [], + "type": "object" + }, + "data": { + "properties": {}, + "required": [], + "type": "object" + } + }, + "model": {}, + "registry_type": "device", + "version": "1.0.0" + }, + { + "id": "zhida_gcms", + "category": [ + "zhida_gcms" + ], + "class": { + "action_value_mappings": { + "abort": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": { + "return_info": "return_info" + }, + "schema": { + "title": "EmptyIn", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": true, + "title": "EmptyIn_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "EmptyIn_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + } + }, + "title": "EmptyIn_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "EmptyIn" + }, + "auto-close": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "安全关闭与智达 GCMS 设备的 TCP 连接,释放网络资源。", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "close参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-connect": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "与智达 GCMS 设备建立 TCP 连接,配置超时参数。", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "connect参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "get_methods": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "result": {}, + "schema": { + "title": "EmptyIn", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": true, + "title": "EmptyIn_Goal" + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "EmptyIn_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + } + }, + "title": "EmptyIn_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "EmptyIn" + }, + "get_status": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "result": {}, + "schema": { + "title": "EmptyIn", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": true, + "title": "EmptyIn_Goal" + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "EmptyIn_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + } + }, + "title": "EmptyIn_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "EmptyIn" + }, + "get_version": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "result": {}, + "schema": { + "title": "EmptyIn", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": true, + "title": "EmptyIn_Goal" + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "EmptyIn_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + } + }, + "title": "EmptyIn_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "EmptyIn" + }, + "put_tray": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": { + "return_info": "return_info" + }, + "schema": { + "title": "EmptyIn", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": true, + "title": "EmptyIn_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "EmptyIn_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + } + }, + "title": "EmptyIn_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "EmptyIn" + }, + "start": { + "feedback": {}, + "goal": { + "string": "string", + "text": "text" + }, + "goal_default": { + "string": "" + }, + "handles": {}, + "placeholder_keys": {}, + "result": { + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "StrSingleInput", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "string": { + "type": "string", + "title": "string", + "description": "" + } + }, + "title": "StrSingleInput_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "StrSingleInput_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "StrSingleInput_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "StrSingleInput" + }, + "start_with_csv_file": { + "feedback": {}, + "goal": { + "csv_file_path": "csv_file_path", + "string": "string" + }, + "goal_default": { + "string": "" + }, + "handles": {}, + "placeholder_keys": {}, + "result": { + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "StrSingleInput", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "string": { + "type": "string", + "title": "string", + "description": "" + } + }, + "title": "StrSingleInput_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "StrSingleInput_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "StrSingleInput_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "StrSingleInput" + } + }, + "module": "unilabos.devices.zhida_gcms.zhida:ZhidaClient", + "status_types": { + "methods": "dict", + "status": "String", + "version": "dict" + }, + "type": "python" + }, + "config_info": [], + "description": "智达气相色谱-质谱联用(GC-MS)分析设备,通过 TCP 通信实现远程控制与状态监控,支持方法管理与任务启动等功能。", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/devices/zhida_gcms.yaml", + "handles": [], + "icon": "", + "init_param_schema": { + "config": { + "properties": { + "host": { + "default": "192.168.3.184", + "type": "string" + }, + "port": { + "default": 5792, + "type": "string" + }, + "timeout": { + "default": 10.0, + "type": "string" + } + }, + "required": [], + "type": "object" + }, + "data": { + "properties": { + "methods": { + "type": "object" + }, + "status": { + "type": "string" + }, + "version": { + "type": "object" + } + }, + "required": [ + "methods", + "status", + "version" + ], + "type": "object" + } + }, + "registry_type": "device", + "version": "1.0.0" + }, + { + "id": "liquid_handler", + "category": [ + "liquid_handler" + ], + "class": { + "action_value_mappings": { + "add_liquid": { + "feedback": {}, + "goal": { + "asp_vols": "asp_vols", + "blow_out_air_volume": "blow_out_air_volume", + "delays": "delays", + "dis_vols": "dis_vols", + "flow_rates": "flow_rates", + "is_96_well": "is_96_well", + "liquid_height": "liquid_height", + "mix_liquid_height": "mix_liquid_height", + "mix_rate": "mix_rate", + "mix_time": "mix_time", + "mix_vol": "mix_vol", + "none_keys": "none_keys", + "offsets": "offsets", + "reagent_sources": "reagent_sources", + "spread": "spread", + "targets": "targets", + "use_channels": "use_channels" + }, + "goal_default": { + "asp_vols": [], + "dis_vols": [], + "reagent_sources": [], + "targets": [], + "use_channels": [], + "flow_rates": [], + "offsets": [], + "liquid_height": [], + "blow_out_air_volume": [], + "spread": "", + "is_96_well": false, + "mix_time": 0, + "mix_vol": 0, + "mix_rate": 0, + "mix_liquid_height": 0.0, + "none_keys": [] + }, + "handles": {}, + "placeholder_keys": { + "reagent_sources": "unilabos_resources", + "targets": "unilabos_resources" + }, + "result": { + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "LiquidHandlerAdd", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "asp_vols": { + "type": "array", + "items": { + "type": "number" + }, + "title": "asp_vols", + "description": "" + }, + "dis_vols": { + "type": "array", + "items": { + "type": "number" + }, + "title": "dis_vols", + "description": "" + }, + "reagent_sources": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position" + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + }, + "w": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation" + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose" + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ] + }, + "title": "reagent_sources", + "description": "" + }, + "targets": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position" + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + }, + "w": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation" + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose" + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ] + }, + "title": "targets", + "description": "" + }, + "use_channels": { + "type": "array", + "items": { + "type": "integer" + }, + "title": "use_channels", + "description": "" + }, + "flow_rates": { + "type": "array", + "items": { + "type": "number" + }, + "title": "flow_rates", + "description": "" + }, + "offsets": { + "type": "array", + "items": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z" + ] + }, + "title": "offsets", + "description": "" + }, + "liquid_height": { + "type": "array", + "items": { + "type": "number" + }, + "title": "liquid_height", + "description": "" + }, + "blow_out_air_volume": { + "type": "array", + "items": { + "type": "number" + }, + "title": "blow_out_air_volume", + "description": "" + }, + "spread": { + "type": "string", + "title": "spread", + "description": "" + }, + "is_96_well": { + "type": "boolean", + "title": "is_96_well", + "description": "" + }, + "mix_time": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "mix_time", + "description": "" + }, + "mix_vol": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "mix_vol", + "description": "" + }, + "mix_rate": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "mix_rate", + "description": "" + }, + "mix_liquid_height": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "mix_liquid_height", + "description": "" + }, + "none_keys": { + "type": "array", + "items": { + "type": "string" + }, + "title": "none_keys", + "description": "" + } + }, + "title": "LiquidHandlerAdd_Goal", + "_unilabos_placeholder_info": { + "reagent_sources": "unilabos_resources", + "targets": "unilabos_resources" + } + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "LiquidHandlerAdd_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "LiquidHandlerAdd_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "LiquidHandlerAdd" + }, + "aspirate": { + "feedback": {}, + "goal": { + "blow_out_air_volume": "blow_out_air_volume", + "flow_rates": "flow_rates", + "liquid_height": "liquid_height", + "offsets": "offsets", + "resources": "resources", + "use_channels": "use_channels", + "vols": "vols" + }, + "goal_default": { + "resources": [], + "vols": [], + "use_channels": [], + "flow_rates": [], + "offsets": [], + "liquid_height": [], + "blow_out_air_volume": [], + "spread": "" + }, + "handles": {}, + "result": { + "name": "name" + }, + "schema": { + "title": "LiquidHandlerAspirate", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "resources": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position" + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + }, + "w": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation" + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose" + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ] + }, + "title": "resources", + "description": "" + }, + "vols": { + "type": "array", + "items": { + "type": "number" + }, + "title": "vols", + "description": "" + }, + "use_channels": { + "type": "array", + "items": { + "type": "integer" + }, + "title": "use_channels", + "description": "" + }, + "flow_rates": { + "type": "array", + "items": { + "type": "number" + }, + "title": "flow_rates", + "description": "" + }, + "offsets": { + "type": "array", + "items": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z" + ] + }, + "title": "offsets", + "description": "" + }, + "liquid_height": { + "type": "array", + "items": { + "type": "number" + }, + "title": "liquid_height", + "description": "" + }, + "blow_out_air_volume": { + "type": "array", + "items": { + "type": "number" + }, + "title": "blow_out_air_volume", + "description": "" + }, + "spread": { + "type": "string", + "title": "spread", + "description": "" + } + }, + "title": "LiquidHandlerAspirate_Goal" + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "LiquidHandlerAspirate_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "LiquidHandlerAspirate_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "LiquidHandlerAspirate" + }, + "auto-create_protocol": { + "feedback": {}, + "goal": {}, + "goal_default": { + "none_keys": [], + "protocol_author": null, + "protocol_date": null, + "protocol_description": null, + "protocol_name": null, + "protocol_type": null, + "protocol_version": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "创建实验协议函数。用于建立新的液体处理实验协议,定义协议名称、描述、版本、作者、日期等基本信息。该函数支持协议模板化管理,便于实验流程的标准化和重复性。适用于实验设计、方法开发、标准操作程序建立等需要协议管理的应用场景。", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "none_keys": { + "default": [], + "items": { + "type": "string" + }, + "type": "array", + "title": "none_keys", + "description": "" + }, + "protocol_author": { + "type": "string", + "title": "protocol_author", + "description": "" + }, + "protocol_date": { + "type": "string", + "title": "protocol_date", + "description": "" + }, + "protocol_description": { + "type": "string", + "title": "protocol_description", + "description": "" + }, + "protocol_name": { + "type": "string", + "title": "protocol_name", + "description": "" + }, + "protocol_type": { + "type": "string", + "title": "protocol_type", + "description": "" + }, + "protocol_version": { + "type": "string", + "title": "protocol_version", + "description": "" + } + }, + "required": [ + "protocol_name", + "protocol_description", + "protocol_version", + "protocol_author", + "protocol_date", + "protocol_type" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "create_protocol参数", + "type": "object" + }, + "type": "UniLabJsonCommandAsync" + }, + "auto-custom_delay": { + "feedback": {}, + "goal": {}, + "goal_default": { + "msg": null, + "seconds": 0 + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "自定义延时函数。在实验流程中插入可配置的等待时间,用于满足特定的反应时间、孵育时间或设备稳定时间要求。支持自定义延时消息和秒数设置,提供流程控制和时间管理功能。适用于酶反应等待、温度平衡、样品孵育等需要时间控制的实验步骤。", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "msg": { + "type": "string", + "title": "msg", + "description": "" + }, + "seconds": { + "default": 0, + "type": "string", + "title": "seconds", + "description": "" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "custom_delay参数", + "type": "object" + }, + "type": "UniLabJsonCommandAsync" + }, + "auto-iter_tips": { + "feedback": {}, + "goal": {}, + "goal_default": { + "tip_racks": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "吸头迭代函数。用于自动管理和切换枪头盒中的吸头,实现批量实验中的吸头自动分配和追踪。该函数监控吸头使用状态,自动切换到下一个可用吸头位置,确保实验流程的连续性。适用于高通量实验、批量处理、自动化流水线等需要大量吸头管理的应用场景。", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "tip_racks": { + "items": { + "type": "object" + }, + "type": "array", + "title": "tip_racks", + "description": "" + } + }, + "required": [ + "tip_racks" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "string" + } + }, + "required": [ + "goal" + ], + "title": "iter_tips参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-set_group": { + "feedback": {}, + "goal": {}, + "goal_default": { + "group_name": null, + "volumes": null, + "wells": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "group_name": { + "type": "string", + "title": "group_name", + "description": "" + }, + "volumes": { + "items": { + "type": "number" + }, + "type": "array", + "title": "volumes", + "description": "" + }, + "wells": { + "items": { + "type": "object" + }, + "type": "array", + "title": "wells", + "description": "" + } + }, + "required": [ + "group_name", + "wells", + "volumes" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "set_group参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-set_liquid": { + "feedback": {}, + "goal": {}, + "goal_default": { + "liquid_names": null, + "volumes": null, + "wells": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "set_liquid的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "liquid_names": { + "items": { + "type": "string" + }, + "type": "array", + "title": "liquid_names", + "description": "" + }, + "volumes": { + "items": { + "type": "number" + }, + "type": "array", + "title": "volumes", + "description": "" + }, + "wells": { + "items": { + "type": "object" + }, + "type": "array", + "title": "wells", + "description": "" + } + }, + "required": [ + "wells", + "liquid_names", + "volumes" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "$defs": { + "ResourceDict": { + "properties": { + "class": { + "description": "Resource class name", + "title": "Class", + "type": "string" + }, + "config": { + "additionalProperties": true, + "description": "Resource configuration", + "title": "Config", + "type": "object" + }, + "data": { + "additionalProperties": true, + "description": "Resource data, eg: container liquid data", + "title": "Data", + "type": "object" + }, + "description": { + "default": "", + "description": "Resource description", + "title": "Description", + "type": "string" + }, + "extra": { + "additionalProperties": true, + "description": "Extra data, eg: slot index", + "title": "Extra", + "type": "object" + }, + "icon": { + "default": "", + "description": "Resource icon", + "title": "Icon", + "type": "string" + }, + "id": { + "description": "Resource ID", + "title": "Id", + "type": "string" + }, + "machine_name": { + "default": "", + "description": "Machine this resource belongs to", + "title": "Machine Name", + "type": "string" + }, + "model": { + "additionalProperties": true, + "description": "Resource model", + "title": "Model", + "type": "object" + }, + "name": { + "description": "Resource name", + "title": "Name", + "type": "string" + }, + "parent": { + "anyOf": [ + { + "$ref": "#/$defs/ResourceDict" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Parent resource object" + }, + "parent_uuid": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Parent resource uuid", + "title": "Parent Uuid" + }, + "pose": { + "$ref": "#/$defs/ResourceDictPosition", + "description": "Resource position" + }, + "schema": { + "additionalProperties": true, + "description": "Resource schema", + "title": "Schema", + "type": "object" + }, + "type": { + "anyOf": [ + { + "const": "device", + "type": "string" + }, + { + "type": "string" + } + ], + "description": "Resource type", + "title": "Type" + }, + "uuid": { + "description": "Resource UUID", + "title": "Uuid", + "type": "string" + } + }, + "required": [ + "id", + "uuid", + "name", + "type", + "class", + "config", + "data", + "extra" + ], + "title": "ResourceDict", + "type": "object" + }, + "ResourceDictPosition": { + "properties": { + "cross_section_type": { + "default": "rectangle", + "description": "Cross section type", + "enum": [ + "rectangle", + "circle", + "rounded_rectangle" + ], + "title": "Cross Section Type", + "type": "string" + }, + "extra": { + "anyOf": [ + { + "additionalProperties": true, + "type": "object" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Extra data", + "title": "Extra" + }, + "layout": { + "default": "x-y", + "description": "Resource layout", + "enum": [ + "2d", + "x-y", + "z-y", + "x-z" + ], + "title": "Layout", + "type": "string" + }, + "position": { + "$ref": "#/$defs/ResourceDictPositionObject", + "description": "Resource position" + }, + "position3d": { + "$ref": "#/$defs/ResourceDictPositionObject", + "description": "Resource position in 3D space" + }, + "rotation": { + "$ref": "#/$defs/ResourceDictPositionObject", + "description": "Resource rotation" + }, + "scale": { + "$ref": "#/$defs/ResourceDictPositionScale", + "description": "Resource scale" + }, + "size": { + "$ref": "#/$defs/ResourceDictPositionSize", + "description": "Resource size" + } + }, + "title": "ResourceDictPosition", + "type": "object" + }, + "ResourceDictPositionObject": { + "properties": { + "x": { + "default": 0.0, + "description": "X coordinate", + "title": "X", + "type": "number" + }, + "y": { + "default": 0.0, + "description": "Y coordinate", + "title": "Y", + "type": "number" + }, + "z": { + "default": 0.0, + "description": "Z coordinate", + "title": "Z", + "type": "number" + } + }, + "title": "ResourceDictPositionObject", + "type": "object" + }, + "ResourceDictPositionScale": { + "properties": { + "x": { + "default": 0.0, + "description": "x scale", + "title": "X", + "type": "number" + }, + "y": { + "default": 0.0, + "description": "y scale", + "title": "Y", + "type": "number" + }, + "z": { + "default": 0.0, + "description": "z scale", + "title": "Z", + "type": "number" + } + }, + "title": "ResourceDictPositionScale", + "type": "object" + }, + "ResourceDictPositionSize": { + "properties": { + "depth": { + "default": 0.0, + "description": "Depth", + "title": "Depth", + "type": "number" + }, + "height": { + "default": 0.0, + "description": "Height", + "title": "Height", + "type": "number" + }, + "width": { + "default": 0.0, + "description": "Width", + "title": "Width", + "type": "number" + } + }, + "title": "ResourceDictPositionSize", + "type": "object" + } + }, + "properties": { + "volumes": { + "items": { + "type": "number" + }, + "title": "Volumes", + "type": "array" + }, + "wells": { + "items": { + "items": { + "$ref": "#/$defs/ResourceDict" + }, + "type": "array" + }, + "title": "Wells", + "type": "array" + } + }, + "required": [ + "wells", + "volumes" + ], + "title": "SetLiquidReturn", + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "set_liquid参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-set_liquid_from_plate": { + "feedback": {}, + "goal": {}, + "goal_default": { + "liquid_names": null, + "plate": null, + "volumes": null, + "well_names": null + }, + "handles": {}, + "placeholder_keys": { + "plate": "unilabos_resources" + }, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "liquid_names": { + "items": { + "type": "string" + }, + "type": "array", + "title": "liquid_names", + "description": "" + }, + "plate": { + "additionalProperties": false, + "properties": { + "category": { + "type": "string" + }, + "children": { + "items": { + "type": "string" + }, + "type": "array" + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + }, + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "parent": { + "type": "string" + }, + "pose": { + "additionalProperties": false, + "properties": { + "orientation": { + "additionalProperties": false, + "properties": { + "w": { + "maximum": 1.7976931348623157e+308, + "minimum": -1.7976931348623157e+308, + "type": "number" + }, + "x": { + "maximum": 1.7976931348623157e+308, + "minimum": -1.7976931348623157e+308, + "type": "number" + }, + "y": { + "maximum": 1.7976931348623157e+308, + "minimum": -1.7976931348623157e+308, + "type": "number" + }, + "z": { + "maximum": 1.7976931348623157e+308, + "minimum": -1.7976931348623157e+308, + "type": "number" + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "type": "object" + }, + "position": { + "additionalProperties": false, + "properties": { + "x": { + "maximum": 1.7976931348623157e+308, + "minimum": -1.7976931348623157e+308, + "type": "number" + }, + "y": { + "maximum": 1.7976931348623157e+308, + "minimum": -1.7976931348623157e+308, + "type": "number" + }, + "z": { + "maximum": 1.7976931348623157e+308, + "minimum": -1.7976931348623157e+308, + "type": "number" + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "type": "object" + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "type": "object" + }, + "sample_id": { + "type": "string" + }, + "type": { + "type": "string" + } + }, + "title": "plate", + "type": "object", + "description": "" + }, + "volumes": { + "items": { + "type": "number" + }, + "type": "array", + "title": "volumes", + "description": "" + }, + "well_names": { + "items": { + "type": "string" + }, + "type": "array", + "title": "well_names", + "description": "" + } + }, + "required": [ + "plate", + "well_names", + "liquid_names", + "volumes" + ], + "type": "object", + "_unilabos_placeholder_info": { + "plate": "unilabos_resources" + } + }, + "result": { + "$defs": { + "ResourceDict": { + "properties": { + "class": { + "description": "Resource class name", + "title": "Class", + "type": "string" + }, + "config": { + "additionalProperties": true, + "description": "Resource configuration", + "title": "Config", + "type": "object" + }, + "data": { + "additionalProperties": true, + "description": "Resource data, eg: container liquid data", + "title": "Data", + "type": "object" + }, + "description": { + "default": "", + "description": "Resource description", + "title": "Description", + "type": "string" + }, + "extra": { + "additionalProperties": true, + "description": "Extra data, eg: slot index", + "title": "Extra", + "type": "object" + }, + "icon": { + "default": "", + "description": "Resource icon", + "title": "Icon", + "type": "string" + }, + "id": { + "description": "Resource ID", + "title": "Id", + "type": "string" + }, + "machine_name": { + "default": "", + "description": "Machine this resource belongs to", + "title": "Machine Name", + "type": "string" + }, + "model": { + "additionalProperties": true, + "description": "Resource model", + "title": "Model", + "type": "object" + }, + "name": { + "description": "Resource name", + "title": "Name", + "type": "string" + }, + "parent": { + "anyOf": [ + { + "$ref": "#/$defs/ResourceDict" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Parent resource object" + }, + "parent_uuid": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Parent resource uuid", + "title": "Parent Uuid" + }, + "pose": { + "$ref": "#/$defs/ResourceDictPosition", + "description": "Resource position" + }, + "schema": { + "additionalProperties": true, + "description": "Resource schema", + "title": "Schema", + "type": "object" + }, + "type": { + "anyOf": [ + { + "const": "device", + "type": "string" + }, + { + "type": "string" + } + ], + "description": "Resource type", + "title": "Type" + }, + "uuid": { + "description": "Resource UUID", + "title": "Uuid", + "type": "string" + } + }, + "required": [ + "id", + "uuid", + "name", + "type", + "class", + "config", + "data", + "extra" + ], + "title": "ResourceDict", + "type": "object" + }, + "ResourceDictPosition": { + "properties": { + "cross_section_type": { + "default": "rectangle", + "description": "Cross section type", + "enum": [ + "rectangle", + "circle", + "rounded_rectangle" + ], + "title": "Cross Section Type", + "type": "string" + }, + "extra": { + "anyOf": [ + { + "additionalProperties": true, + "type": "object" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Extra data", + "title": "Extra" + }, + "layout": { + "default": "x-y", + "description": "Resource layout", + "enum": [ + "2d", + "x-y", + "z-y", + "x-z" + ], + "title": "Layout", + "type": "string" + }, + "position": { + "$ref": "#/$defs/ResourceDictPositionObject", + "description": "Resource position" + }, + "position3d": { + "$ref": "#/$defs/ResourceDictPositionObject", + "description": "Resource position in 3D space" + }, + "rotation": { + "$ref": "#/$defs/ResourceDictPositionObject", + "description": "Resource rotation" + }, + "scale": { + "$ref": "#/$defs/ResourceDictPositionScale", + "description": "Resource scale" + }, + "size": { + "$ref": "#/$defs/ResourceDictPositionSize", + "description": "Resource size" + } + }, + "title": "ResourceDictPosition", + "type": "object" + }, + "ResourceDictPositionObject": { + "properties": { + "x": { + "default": 0.0, + "description": "X coordinate", + "title": "X", + "type": "number" + }, + "y": { + "default": 0.0, + "description": "Y coordinate", + "title": "Y", + "type": "number" + }, + "z": { + "default": 0.0, + "description": "Z coordinate", + "title": "Z", + "type": "number" + } + }, + "title": "ResourceDictPositionObject", + "type": "object" + }, + "ResourceDictPositionScale": { + "properties": { + "x": { + "default": 0.0, + "description": "x scale", + "title": "X", + "type": "number" + }, + "y": { + "default": 0.0, + "description": "y scale", + "title": "Y", + "type": "number" + }, + "z": { + "default": 0.0, + "description": "z scale", + "title": "Z", + "type": "number" + } + }, + "title": "ResourceDictPositionScale", + "type": "object" + }, + "ResourceDictPositionSize": { + "properties": { + "depth": { + "default": 0.0, + "description": "Depth", + "title": "Depth", + "type": "number" + }, + "height": { + "default": 0.0, + "description": "Height", + "title": "Height", + "type": "number" + }, + "width": { + "default": 0.0, + "description": "Width", + "title": "Width", + "type": "number" + } + }, + "title": "ResourceDictPositionSize", + "type": "object" + } + }, + "properties": { + "plate": { + "items": { + "items": { + "$ref": "#/$defs/ResourceDict" + }, + "type": "array" + }, + "title": "Plate", + "type": "array" + }, + "volumes": { + "items": { + "type": "number" + }, + "title": "Volumes", + "type": "array" + }, + "wells": { + "items": { + "items": { + "$ref": "#/$defs/ResourceDict" + }, + "type": "array" + }, + "title": "Wells", + "type": "array" + } + }, + "required": [ + "plate", + "wells", + "volumes" + ], + "title": "SetLiquidFromPlateReturn", + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "set_liquid_from_plate参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-set_tiprack": { + "feedback": {}, + "goal": {}, + "goal_default": { + "tip_racks": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "枪头盒设置函数。用于配置和初始化液体处理系统的枪头盒信息,包括枪头盒位置、类型、容量等参数。该函数建立吸头资源管理系统,为后续的吸头选择和使用提供基础配置。适用于系统初始化、枪头盒更换、实验配置等需要吸头资源管理的操作场景。", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "tip_racks": { + "items": { + "type": "object" + }, + "type": "array", + "title": "tip_racks", + "description": "" + } + }, + "required": [ + "tip_racks" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "set_tiprack参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-touch_tip": { + "feedback": {}, + "goal": {}, + "goal_default": { + "targets": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "吸头碰触函数。控制移液器吸头轻触容器边缘或底部,用于去除吸头外壁附着的液滴,提高移液精度和减少污染。该函数支持多目标位置操作,可配置碰触参数和位置偏移。适用于精密移液、减少液体残留、防止交叉污染等需要提高移液质量的实验操作。", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "targets": { + "items": { + "type": "object" + }, + "type": "array", + "title": "targets", + "description": "" + } + }, + "required": [ + "targets" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "touch_tip参数", + "type": "object" + }, + "type": "UniLabJsonCommandAsync" + }, + "auto-transfer_group": { + "feedback": {}, + "goal": {}, + "goal_default": { + "source_group_name": null, + "target_group_name": null, + "unit_volume": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "source_group_name": { + "type": "string", + "title": "source_group_name", + "description": "" + }, + "target_group_name": { + "type": "string", + "title": "target_group_name", + "description": "" + }, + "unit_volume": { + "type": "number", + "title": "unit_volume", + "description": "" + } + }, + "required": [ + "source_group_name", + "target_group_name", + "unit_volume" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "transfer_group参数", + "type": "object" + }, + "type": "UniLabJsonCommandAsync" + }, + "discard_tips": { + "feedback": {}, + "goal": { + "use_channels": "use_channels" + }, + "goal_default": { + "use_channels": [] + }, + "handles": {}, + "result": { + "name": "name" + }, + "schema": { + "title": "LiquidHandlerDiscardTips", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "use_channels": { + "type": "array", + "items": { + "type": "integer" + }, + "title": "use_channels", + "description": "" + } + }, + "title": "LiquidHandlerDiscardTips_Goal" + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "LiquidHandlerDiscardTips_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "LiquidHandlerDiscardTips_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "LiquidHandlerDiscardTips" + }, + "dispense": { + "feedback": {}, + "goal": { + "blow_out_air_volume": "blow_out_air_volume", + "flow_rates": "flow_rates", + "offsets": "offsets", + "resources": "resources", + "spread": "spread", + "use_channels": "use_channels", + "vols": "vols" + }, + "goal_default": { + "resources": [], + "vols": [], + "use_channels": [], + "flow_rates": [], + "offsets": [], + "blow_out_air_volume": [], + "spread": "" + }, + "handles": {}, + "result": { + "name": "name" + }, + "schema": { + "title": "LiquidHandlerDispense", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "resources": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position" + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + }, + "w": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation" + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose" + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ] + }, + "title": "resources", + "description": "" + }, + "vols": { + "type": "array", + "items": { + "type": "number" + }, + "title": "vols", + "description": "" + }, + "use_channels": { + "type": "array", + "items": { + "type": "integer" + }, + "title": "use_channels", + "description": "" + }, + "flow_rates": { + "type": "array", + "items": { + "type": "number" + }, + "title": "flow_rates", + "description": "" + }, + "offsets": { + "type": "array", + "items": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z" + ] + }, + "title": "offsets", + "description": "" + }, + "blow_out_air_volume": { + "type": "array", + "items": { + "type": "integer" + }, + "title": "blow_out_air_volume", + "description": "" + }, + "spread": { + "type": "string", + "title": "spread", + "description": "" + } + }, + "title": "LiquidHandlerDispense_Goal" + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "LiquidHandlerDispense_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "LiquidHandlerDispense_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "LiquidHandlerDispense" + }, + "drop_tips": { + "feedback": {}, + "goal": { + "allow_nonzero_volume": "allow_nonzero_volume", + "offsets": "offsets", + "tip_spots": "tip_spots", + "use_channels": "use_channels" + }, + "goal_default": { + "tip_spots": [], + "use_channels": [], + "offsets": [], + "allow_nonzero_volume": false + }, + "handles": {}, + "placeholder_keys": { + "tip_spots": "unilabos_resources" + }, + "result": { + "name": "name" + }, + "schema": { + "title": "LiquidHandlerDropTips", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "tip_spots": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position" + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + }, + "w": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation" + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose" + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ] + }, + "title": "tip_spots", + "description": "" + }, + "use_channels": { + "type": "array", + "items": { + "type": "integer" + }, + "title": "use_channels", + "description": "" + }, + "offsets": { + "type": "array", + "items": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z" + ] + }, + "title": "offsets", + "description": "" + }, + "allow_nonzero_volume": { + "type": "boolean", + "title": "allow_nonzero_volume", + "description": "" + } + }, + "title": "LiquidHandlerDropTips_Goal", + "_unilabos_placeholder_info": { + "tip_spots": "unilabos_resources" + } + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "LiquidHandlerDropTips_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "LiquidHandlerDropTips_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "LiquidHandlerDropTips" + }, + "drop_tips96": { + "feedback": {}, + "goal": { + "allow_nonzero_volume": "allow_nonzero_volume", + "offset": "offset", + "tip_rack": "tip_rack" + }, + "goal_default": { + "tip_rack": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + }, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "allow_nonzero_volume": false + }, + "handles": {}, + "result": { + "name": "name" + }, + "schema": { + "title": "LiquidHandlerDropTips96", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "tip_rack": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "tip_rack", + "additionalProperties": false, + "description": "" + }, + "offset": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "offset", + "additionalProperties": false, + "description": "" + }, + "allow_nonzero_volume": { + "type": "boolean", + "title": "allow_nonzero_volume", + "description": "" + } + }, + "title": "LiquidHandlerDropTips96_Goal" + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "LiquidHandlerDropTips96_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "LiquidHandlerDropTips96_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "LiquidHandlerDropTips96" + }, + "mix": { + "feedback": {}, + "goal": { + "height_to_bottom": "height_to_bottom", + "mix_rate": "mix_rate", + "mix_time": "mix_time", + "mix_vol": "mix_vol", + "none_keys": "none_keys", + "offsets": "offsets", + "targets": "targets" + }, + "goal_default": { + "targets": [], + "mix_time": 0, + "mix_vol": 0, + "height_to_bottom": 0.0, + "offsets": [], + "mix_rate": 0.0, + "none_keys": [] + }, + "handles": {}, + "placeholder_keys": {}, + "result": { + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "LiquidHandlerMix", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "targets": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position" + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + }, + "w": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation" + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose" + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ] + }, + "title": "targets", + "description": "" + }, + "mix_time": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "mix_time", + "description": "" + }, + "mix_vol": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "mix_vol", + "description": "" + }, + "height_to_bottom": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "height_to_bottom", + "description": "" + }, + "offsets": { + "type": "array", + "items": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z" + ] + }, + "title": "offsets", + "description": "" + }, + "mix_rate": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "mix_rate", + "description": "" + }, + "none_keys": { + "type": "array", + "items": { + "type": "string" + }, + "title": "none_keys", + "description": "" + } + }, + "title": "LiquidHandlerMix_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "LiquidHandlerMix_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "LiquidHandlerMix_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "LiquidHandlerMix" + }, + "move_lid": { + "feedback": {}, + "goal": { + "destination_offset": "destination_offset", + "drop_direction": "drop_direction", + "get_direction": "get_direction", + "intermediate_locations": "intermediate_locations", + "lid": "lid", + "pickup_direction": "pickup_direction", + "pickup_distance_from_top": "pickup_distance_from_top", + "put_direction": "put_direction", + "resource_offset": "resource_offset", + "to": "to" + }, + "goal_default": { + "lid": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + }, + "to": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + }, + "intermediate_locations": [], + "resource_offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "destination_offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pickup_direction": "", + "drop_direction": "", + "get_direction": "", + "put_direction": "", + "pickup_distance_from_top": 0.0 + }, + "handles": {}, + "result": { + "name": "name" + }, + "schema": { + "title": "LiquidHandlerMoveLid", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "lid": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "lid", + "additionalProperties": false, + "description": "" + }, + "to": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "to", + "additionalProperties": false, + "description": "" + }, + "intermediate_locations": { + "type": "array", + "items": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z" + ] + }, + "title": "intermediate_locations", + "description": "" + }, + "resource_offset": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "resource_offset", + "additionalProperties": false, + "description": "" + }, + "destination_offset": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "destination_offset", + "additionalProperties": false, + "description": "" + }, + "pickup_direction": { + "type": "string", + "title": "pickup_direction", + "description": "" + }, + "drop_direction": { + "type": "string", + "title": "drop_direction", + "description": "" + }, + "get_direction": { + "type": "string", + "title": "get_direction", + "description": "" + }, + "put_direction": { + "type": "string", + "title": "put_direction", + "description": "" + }, + "pickup_distance_from_top": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "pickup_distance_from_top", + "description": "" + } + }, + "title": "LiquidHandlerMoveLid_Goal" + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "LiquidHandlerMoveLid_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "LiquidHandlerMoveLid_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "LiquidHandlerMoveLid" + }, + "move_plate": { + "feedback": {}, + "goal": { + "destination_offset": "destination_offset", + "drop_direction": "drop_direction", + "get_direction": "get_direction", + "intermediate_locations": "intermediate_locations", + "pickup_direction": "pickup_direction", + "pickup_offset": "pickup_offset", + "plate": "plate", + "put_direction": "put_direction", + "resource_offset": "resource_offset", + "to": "to" + }, + "goal_default": { + "plate": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + }, + "to": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + }, + "intermediate_locations": [], + "resource_offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pickup_offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "destination_offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pickup_direction": "", + "drop_direction": "", + "get_direction": "", + "put_direction": "", + "pickup_distance_from_top": 0.0 + }, + "handles": {}, + "result": { + "name": "name" + }, + "schema": { + "title": "LiquidHandlerMovePlate", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "plate": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "plate", + "additionalProperties": false, + "description": "" + }, + "to": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "to", + "additionalProperties": false, + "description": "" + }, + "intermediate_locations": { + "type": "array", + "items": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z" + ] + }, + "title": "intermediate_locations", + "description": "" + }, + "resource_offset": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "resource_offset", + "additionalProperties": false, + "description": "" + }, + "pickup_offset": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "pickup_offset", + "additionalProperties": false, + "description": "" + }, + "destination_offset": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "destination_offset", + "additionalProperties": false, + "description": "" + }, + "pickup_direction": { + "type": "string", + "title": "pickup_direction", + "description": "" + }, + "drop_direction": { + "type": "string", + "title": "drop_direction", + "description": "" + }, + "get_direction": { + "type": "string", + "title": "get_direction", + "description": "" + }, + "put_direction": { + "type": "string", + "title": "put_direction", + "description": "" + }, + "pickup_distance_from_top": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "pickup_distance_from_top", + "description": "" + } + }, + "title": "LiquidHandlerMovePlate_Goal" + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "LiquidHandlerMovePlate_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "LiquidHandlerMovePlate_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "LiquidHandlerMovePlate" + }, + "move_resource": { + "feedback": {}, + "goal": { + "destination_offset": "destination_offset", + "drop_direction": "drop_direction", + "get_direction": "get_direction", + "intermediate_locations": "intermediate_locations", + "pickup_direction": "pickup_direction", + "pickup_distance_from_top": "pickup_distance_from_top", + "put_direction": "put_direction", + "resource": "resource", + "resource_offset": "resource_offset", + "to": "to" + }, + "goal_default": { + "resource": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + }, + "to": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "intermediate_locations": [], + "resource_offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "destination_offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pickup_distance_from_top": 0.0, + "pickup_direction": "", + "drop_direction": "", + "get_direction": "", + "put_direction": "" + }, + "handles": {}, + "result": { + "name": "name" + }, + "schema": { + "title": "LiquidHandlerMoveResource", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "resource": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "resource", + "additionalProperties": false, + "description": "" + }, + "to": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "to", + "additionalProperties": false, + "description": "" + }, + "intermediate_locations": { + "type": "array", + "items": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z" + ] + }, + "title": "intermediate_locations", + "description": "" + }, + "resource_offset": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "resource_offset", + "additionalProperties": false, + "description": "" + }, + "destination_offset": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "destination_offset", + "additionalProperties": false, + "description": "" + }, + "pickup_distance_from_top": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "pickup_distance_from_top", + "description": "" + }, + "pickup_direction": { + "type": "string", + "title": "pickup_direction", + "description": "" + }, + "drop_direction": { + "type": "string", + "title": "drop_direction", + "description": "" + }, + "get_direction": { + "type": "string", + "title": "get_direction", + "description": "" + }, + "put_direction": { + "type": "string", + "title": "put_direction", + "description": "" + } + }, + "title": "LiquidHandlerMoveResource_Goal" + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "LiquidHandlerMoveResource_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "LiquidHandlerMoveResource_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "LiquidHandlerMoveResource" + }, + "move_to": { + "feedback": {}, + "goal": { + "channel": "channel", + "dis_to_top": "dis_to_top", + "well": "well" + }, + "goal_default": { + "well": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + }, + "dis_to_top": 0.0, + "channel": 0 + }, + "handles": {}, + "placeholder_keys": {}, + "result": { + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "LiquidHandlerMoveTo", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "well": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "well", + "additionalProperties": false, + "description": "" + }, + "dis_to_top": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "dis_to_top", + "description": "" + }, + "channel": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "channel", + "description": "" + } + }, + "title": "LiquidHandlerMoveTo_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "LiquidHandlerMoveTo_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "LiquidHandlerMoveTo_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "LiquidHandlerMoveTo" + }, + "pick_up_tips": { + "feedback": {}, + "goal": { + "offsets": "offsets", + "tip_spots": "tip_spots", + "use_channels": "use_channels" + }, + "goal_default": { + "tip_spots": [], + "use_channels": [], + "offsets": [] + }, + "handles": {}, + "result": { + "name": "name" + }, + "schema": { + "title": "LiquidHandlerPickUpTips", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "tip_spots": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position" + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + }, + "w": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation" + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose" + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ] + }, + "title": "tip_spots", + "description": "" + }, + "use_channels": { + "type": "array", + "items": { + "type": "integer" + }, + "title": "use_channels", + "description": "" + }, + "offsets": { + "type": "array", + "items": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z" + ] + }, + "title": "offsets", + "description": "" + } + }, + "title": "LiquidHandlerPickUpTips_Goal" + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "LiquidHandlerPickUpTips_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "LiquidHandlerPickUpTips_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "LiquidHandlerPickUpTips" + }, + "pick_up_tips96": { + "feedback": {}, + "goal": { + "offset": "offset", + "tip_rack": "tip_rack" + }, + "goal_default": { + "tip_rack": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + }, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "handles": {}, + "result": { + "name": "name" + }, + "schema": { + "title": "LiquidHandlerPickUpTips96", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "tip_rack": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "tip_rack", + "additionalProperties": false, + "description": "" + }, + "offset": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "offset", + "additionalProperties": false, + "description": "" + } + }, + "title": "LiquidHandlerPickUpTips96_Goal" + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "LiquidHandlerPickUpTips96_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "LiquidHandlerPickUpTips96_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "LiquidHandlerPickUpTips96" + }, + "remove": { + "feedback": {}, + "goal": { + "blow_out_air_volume": "blow_out_air_volume", + "delays": "delays", + "flow_rates": "flow_rates", + "is_96_well": "is_96_well", + "liquid_height": "liquid_height", + "none_keys": "none_keys", + "offsets": "offsets", + "sources": "sources", + "spread": "spread", + "top": "top", + "use_channels": "use_channels", + "vols": "vols", + "waste_liquid": "waste_liquid" + }, + "goal_default": { + "vols": [], + "sources": [], + "waste_liquid": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + }, + "use_channels": [], + "flow_rates": [], + "offsets": [], + "liquid_height": [], + "blow_out_air_volume": [], + "spread": "", + "delays": [], + "is_96_well": false, + "top": [], + "none_keys": [] + }, + "handles": {}, + "result": {}, + "schema": { + "title": "LiquidHandlerRemove", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "vols": { + "type": "array", + "items": { + "type": "number" + }, + "title": "vols", + "description": "" + }, + "sources": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position" + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + }, + "w": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation" + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose" + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ] + }, + "title": "sources", + "description": "" + }, + "waste_liquid": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "waste_liquid", + "additionalProperties": false, + "description": "" + }, + "use_channels": { + "type": "array", + "items": { + "type": "integer" + }, + "title": "use_channels", + "description": "" + }, + "flow_rates": { + "type": "array", + "items": { + "type": "number" + }, + "title": "flow_rates", + "description": "" + }, + "offsets": { + "type": "array", + "items": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z" + ] + }, + "title": "offsets", + "description": "" + }, + "liquid_height": { + "type": "array", + "items": { + "type": "number" + }, + "title": "liquid_height", + "description": "" + }, + "blow_out_air_volume": { + "type": "array", + "items": { + "type": "number" + }, + "title": "blow_out_air_volume", + "description": "" + }, + "spread": { + "type": "string", + "title": "spread", + "description": "" + }, + "delays": { + "type": "array", + "items": { + "type": "integer" + }, + "title": "delays", + "description": "" + }, + "is_96_well": { + "type": "boolean", + "title": "is_96_well", + "description": "" + }, + "top": { + "type": "array", + "items": { + "type": "number" + }, + "title": "top", + "description": "" + }, + "none_keys": { + "type": "array", + "items": { + "type": "string" + }, + "title": "none_keys", + "description": "" + } + }, + "title": "LiquidHandlerRemove_Goal" + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "LiquidHandlerRemove_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "LiquidHandlerRemove_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "LiquidHandlerRemove" + }, + "remove_liquid": { + "feedback": {}, + "goal": { + "blow_out_air_volume": "blow_out_air_volume", + "delays": "delays", + "flow_rates": "flow_rates", + "is_96_well": "is_96_well", + "liquid_height": "liquid_height", + "none_keys": "none_keys", + "offsets": "offsets", + "sources": "sources", + "spread": "spread", + "top": "top", + "use_channels": "use_channels", + "vols": "vols", + "waste_liquid": "waste_liquid" + }, + "goal_default": { + "vols": [], + "sources": [], + "waste_liquid": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + }, + "use_channels": [], + "flow_rates": [], + "offsets": [], + "liquid_height": [], + "blow_out_air_volume": [], + "spread": "", + "delays": [], + "is_96_well": false, + "top": [], + "none_keys": [] + }, + "handles": {}, + "placeholder_keys": { + "sources": "unilabos_resources", + "waste_liquid": "unilabos_resources" + }, + "result": { + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "LiquidHandlerRemove", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "vols": { + "type": "array", + "items": { + "type": "number" + }, + "title": "vols", + "description": "" + }, + "sources": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position" + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + }, + "w": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation" + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose" + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ] + }, + "title": "sources", + "description": "" + }, + "waste_liquid": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "waste_liquid", + "additionalProperties": false, + "description": "" + }, + "use_channels": { + "type": "array", + "items": { + "type": "integer" + }, + "title": "use_channels", + "description": "" + }, + "flow_rates": { + "type": "array", + "items": { + "type": "number" + }, + "title": "flow_rates", + "description": "" + }, + "offsets": { + "type": "array", + "items": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z" + ] + }, + "title": "offsets", + "description": "" + }, + "liquid_height": { + "type": "array", + "items": { + "type": "number" + }, + "title": "liquid_height", + "description": "" + }, + "blow_out_air_volume": { + "type": "array", + "items": { + "type": "number" + }, + "title": "blow_out_air_volume", + "description": "" + }, + "spread": { + "type": "string", + "title": "spread", + "description": "" + }, + "delays": { + "type": "array", + "items": { + "type": "integer" + }, + "title": "delays", + "description": "" + }, + "is_96_well": { + "type": "boolean", + "title": "is_96_well", + "description": "" + }, + "top": { + "type": "array", + "items": { + "type": "number" + }, + "title": "top", + "description": "" + }, + "none_keys": { + "type": "array", + "items": { + "type": "string" + }, + "title": "none_keys", + "description": "" + } + }, + "title": "LiquidHandlerRemove_Goal", + "_unilabos_placeholder_info": { + "sources": "unilabos_resources", + "waste_liquid": "unilabos_resources" + } + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "LiquidHandlerRemove_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "LiquidHandlerRemove_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "LiquidHandlerRemove" + }, + "return_tips": { + "feedback": {}, + "goal": { + "allow_nonzero_volume": "allow_nonzero_volume", + "use_channels": "use_channels" + }, + "goal_default": { + "use_channels": [], + "allow_nonzero_volume": false + }, + "handles": {}, + "result": { + "name": "name" + }, + "schema": { + "title": "LiquidHandlerReturnTips", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "use_channels": { + "type": "array", + "items": { + "type": "integer" + }, + "title": "use_channels", + "description": "" + }, + "allow_nonzero_volume": { + "type": "boolean", + "title": "allow_nonzero_volume", + "description": "" + } + }, + "title": "LiquidHandlerReturnTips_Goal" + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "LiquidHandlerReturnTips_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "LiquidHandlerReturnTips_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "LiquidHandlerReturnTips" + }, + "return_tips96": { + "feedback": {}, + "goal": { + "allow_nonzero_volume": "allow_nonzero_volume" + }, + "goal_default": { + "allow_nonzero_volume": false + }, + "handles": {}, + "result": { + "name": "name" + }, + "schema": { + "title": "LiquidHandlerReturnTips96", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "allow_nonzero_volume": { + "type": "boolean", + "title": "allow_nonzero_volume", + "description": "" + } + }, + "title": "LiquidHandlerReturnTips96_Goal" + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "LiquidHandlerReturnTips96_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "LiquidHandlerReturnTips96_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "LiquidHandlerReturnTips96" + }, + "stamp": { + "feedback": {}, + "goal": { + "aspiration_flow_rate": "aspiration_flow_rate", + "dispense_flow_rate": "dispense_flow_rate", + "source": "source", + "target": "target", + "volume": "volume" + }, + "goal_default": { + "source": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + }, + "target": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + }, + "volume": 0.0, + "aspiration_flow_rate": 0.0, + "dispense_flow_rate": 0.0 + }, + "handles": {}, + "result": { + "name": "name" + }, + "schema": { + "title": "LiquidHandlerStamp", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "source": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "source", + "additionalProperties": false, + "description": "" + }, + "target": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "target", + "additionalProperties": false, + "description": "" + }, + "volume": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "volume", + "description": "" + }, + "aspiration_flow_rate": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "aspiration_flow_rate", + "description": "" + }, + "dispense_flow_rate": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "dispense_flow_rate", + "description": "" + } + }, + "title": "LiquidHandlerStamp_Goal" + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "LiquidHandlerStamp_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "LiquidHandlerStamp_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "LiquidHandlerStamp" + }, + "transfer": { + "goal": { + "aspiration_flow_rate": "aspiration_flow_rate", + "dispense_flow_rates": "dispense_flow_rates", + "ratios": "ratios", + "source": "source", + "source_vol": "source_vol", + "target_vols": "target_vols", + "targets": "targets" + }, + "goal_default": { + "from_vessel": "", + "to_vessel": "", + "volume": 0.0, + "amount": "", + "time": 0.0, + "viscous": false, + "rinsing_solvent": "", + "rinsing_volume": 0.0, + "rinsing_repeats": 0, + "solid": false + }, + "handles": {}, + "schema": { + "title": "Transfer", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "from_vessel": { + "type": "string", + "title": "from_vessel", + "description": "" + }, + "to_vessel": { + "type": "string", + "title": "to_vessel", + "description": "" + }, + "volume": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "volume", + "description": "" + }, + "amount": { + "type": "string", + "title": "amount", + "description": "" + }, + "time": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "time", + "description": "" + }, + "viscous": { + "type": "boolean", + "title": "viscous", + "description": "" + }, + "rinsing_solvent": { + "type": "string", + "title": "rinsing_solvent", + "description": "" + }, + "rinsing_volume": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "rinsing_volume", + "description": "" + }, + "rinsing_repeats": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "rinsing_repeats", + "description": "" + }, + "solid": { + "type": "boolean", + "title": "solid", + "description": "" + } + }, + "title": "Transfer_Goal" + }, + "feedback": { + "type": "object", + "additionalProperties": false, + "properties": { + "progress": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "transferred_volume": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "current_status": { + "type": "string" + } + }, + "title": "Transfer_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "success": { + "type": "boolean" + }, + "message": { + "type": "string" + }, + "return_info": { + "type": "string" + } + }, + "title": "Transfer_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "Transfer" + }, + "transfer_liquid": { + "feedback": {}, + "goal": { + "asp_flow_rates": "asp_flow_rates", + "asp_vols": "asp_vols", + "blow_out_air_volume": "blow_out_air_volume", + "delays": "delays", + "dis_flow_rates": "dis_flow_rates", + "dis_vols": "dis_vols", + "is_96_well": "is_96_well", + "liquid_height": "liquid_height", + "mix_liquid_height": "mix_liquid_height", + "mix_rate": "mix_rate", + "mix_stage": "mix_stage", + "mix_times": "mix_times", + "mix_vol": "mix_vol", + "none_keys": "none_keys", + "offsets": "offsets", + "sources": "sources", + "spread": "spread", + "targets": "targets", + "tip_racks": "tip_racks", + "touch_tip": "touch_tip", + "use_channels": "use_channels" + }, + "goal_default": { + "asp_vols": [], + "dis_vols": [], + "sources": [], + "targets": [], + "tip_racks": [], + "use_channels": [], + "asp_flow_rates": [], + "dis_flow_rates": [], + "offsets": [], + "touch_tip": false, + "liquid_height": [], + "blow_out_air_volume": [], + "spread": "", + "is_96_well": false, + "mix_stage": "", + "mix_times": 0, + "mix_vol": 0, + "mix_rate": 0, + "mix_liquid_height": 0.0, + "delays": [], + "none_keys": [] + }, + "handles": { + "input": [ + { + "data_key": "sources", + "data_source": "handle", + "data_type": "resource", + "handler_key": "sources", + "label": "待移动液体" + }, + { + "data_key": "targets", + "data_source": "handle", + "data_type": "resource", + "handler_key": "targets", + "label": "转移目标" + }, + { + "data_key": "tip_racks", + "data_source": "handle", + "data_type": "resource", + "handler_key": "tip_rack", + "label": "枪头盒" + } + ], + "output": [ + { + "data_key": "sources.@flatten", + "data_source": "executor", + "data_type": "resource", + "handler_key": "sources_out", + "label": "移液后源孔" + }, + { + "data_key": "targets.@flatten", + "data_source": "executor", + "data_type": "resource", + "handler_key": "targets_out", + "label": "移液后目标孔" + } + ] + }, + "placeholder_keys": { + "sources": "unilabos_resources", + "targets": "unilabos_resources", + "tip_racks": "unilabos_resources" + }, + "result": { + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "LiquidHandlerTransfer", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "asp_vols": { + "type": "array", + "items": { + "type": "number" + }, + "title": "asp_vols", + "description": "" + }, + "dis_vols": { + "type": "array", + "items": { + "type": "number" + }, + "title": "dis_vols", + "description": "" + }, + "sources": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position" + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + }, + "w": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation" + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose" + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ] + }, + "title": "sources", + "description": "" + }, + "targets": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position" + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + }, + "w": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation" + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose" + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ] + }, + "title": "targets", + "description": "" + }, + "tip_racks": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position" + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + }, + "w": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation" + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose" + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ] + }, + "title": "tip_racks", + "description": "" + }, + "use_channels": { + "type": "array", + "items": { + "type": "integer" + }, + "title": "use_channels", + "description": "" + }, + "asp_flow_rates": { + "type": "array", + "items": { + "type": "number" + }, + "title": "asp_flow_rates", + "description": "" + }, + "dis_flow_rates": { + "type": "array", + "items": { + "type": "number" + }, + "title": "dis_flow_rates", + "description": "" + }, + "offsets": { + "type": "array", + "items": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z" + ] + }, + "title": "offsets", + "description": "" + }, + "touch_tip": { + "type": "boolean", + "title": "touch_tip", + "description": "" + }, + "liquid_height": { + "type": "array", + "items": { + "type": "number" + }, + "title": "liquid_height", + "description": "" + }, + "blow_out_air_volume": { + "type": "array", + "items": { + "type": "number" + }, + "title": "blow_out_air_volume", + "description": "" + }, + "spread": { + "type": "string", + "title": "spread", + "description": "" + }, + "is_96_well": { + "type": "boolean", + "title": "is_96_well", + "description": "" + }, + "mix_stage": { + "type": "string", + "title": "mix_stage", + "description": "" + }, + "mix_times": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "mix_times", + "description": "" + }, + "mix_vol": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "mix_vol", + "description": "" + }, + "mix_rate": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "mix_rate", + "description": "" + }, + "mix_liquid_height": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "mix_liquid_height", + "description": "" + }, + "delays": { + "type": "array", + "items": { + "type": "integer" + }, + "title": "delays", + "description": "" + }, + "none_keys": { + "type": "array", + "items": { + "type": "string" + }, + "title": "none_keys", + "description": "" + } + }, + "title": "LiquidHandlerTransfer_Goal", + "_unilabos_placeholder_info": { + "sources": "unilabos_resources", + "targets": "unilabos_resources", + "tip_racks": "unilabos_resources" + } + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "LiquidHandlerTransfer_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "LiquidHandlerTransfer_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "LiquidHandlerTransfer" + } + }, + "module": "unilabos.devices.liquid_handling.liquid_handler_abstract:LiquidHandlerAbstract", + "status_types": {}, + "type": "python" + }, + "config_info": [], + "description": "Liquid handler device controlled by pylabrobot", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/devices/liquid_handler.yaml", + "handles": [], + "icon": "icon_yiyezhan.webp", + "init_param_schema": { + "config": { + "properties": { + "backend": { + "type": "object" + }, + "channel_num": { + "default": 8, + "type": "integer" + }, + "deck": { + "type": "object" + }, + "simulator": { + "default": false, + "type": "boolean" + }, + "total_height": { + "default": 310, + "type": "number" + } + }, + "required": [ + "backend", + "deck" + ], + "type": "object" + }, + "data": { + "properties": {}, + "required": [], + "type": "object" + } + }, + "registry_type": "device", + "version": "1.0.0" + }, + { + "id": "liquid_handler.biomek", + "category": [ + "liquid_handler" + ], + "class": { + "action_value_mappings": { + "auto-create_resource": { + "feedback": {}, + "goal": {}, + "goal_default": { + "bind_location": null, + "bind_parent_id": null, + "liquid_input_slot": null, + "liquid_type": null, + "liquid_volume": null, + "resource_tracker": null, + "resources": null, + "slot_on_deck": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "create_resource的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "bind_location": { + "additionalProperties": { + "type": "number" + }, + "type": "object", + "title": "bind_location", + "description": "" + }, + "bind_parent_id": { + "type": "string", + "title": "bind_parent_id", + "description": "" + }, + "liquid_input_slot": { + "items": { + "type": "integer" + }, + "type": "array", + "title": "liquid_input_slot", + "description": "" + }, + "liquid_type": { + "items": { + "type": "string" + }, + "type": "array", + "title": "liquid_type", + "description": "" + }, + "liquid_volume": { + "items": { + "type": "integer" + }, + "type": "array", + "title": "liquid_volume", + "description": "" + }, + "resource_tracker": { + "type": "object", + "title": "resource_tracker", + "description": "" + }, + "resources": { + "items": { + "type": "object" + }, + "type": "array", + "title": "resources", + "description": "" + }, + "slot_on_deck": { + "type": "integer", + "title": "slot_on_deck", + "description": "" + } + }, + "required": [ + "resource_tracker", + "resources", + "bind_parent_id", + "bind_location", + "liquid_input_slot", + "liquid_type", + "liquid_volume", + "slot_on_deck" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "create_resource参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-deserialize": { + "feedback": {}, + "goal": {}, + "goal_default": { + "allow_marshal": false, + "data": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "deserialize的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "allow_marshal": { + "default": false, + "type": "boolean", + "title": "allow_marshal", + "description": "" + }, + "data": { + "type": "object", + "title": "data", + "description": "" + } + }, + "required": [ + "data" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "deserialize参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-instrument_setup_biomek": { + "feedback": {}, + "goal": {}, + "goal_default": { + "class_name": null, + "id": null, + "liquid_input_wells": null, + "liquid_type": null, + "liquid_volume": null, + "parent": null, + "slot_on_deck": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "instrument_setup_biomek的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "class_name": { + "type": "string", + "title": "class_name", + "description": "" + }, + "id": { + "type": "string", + "title": "id", + "description": "" + }, + "liquid_input_wells": { + "items": { + "type": "string" + }, + "type": "array", + "title": "liquid_input_wells", + "description": "" + }, + "liquid_type": { + "items": { + "type": "string" + }, + "type": "array", + "title": "liquid_type", + "description": "" + }, + "liquid_volume": { + "items": { + "type": "integer" + }, + "type": "array", + "title": "liquid_volume", + "description": "" + }, + "parent": { + "type": "string", + "title": "parent", + "description": "" + }, + "slot_on_deck": { + "type": "string", + "title": "slot_on_deck", + "description": "" + } + }, + "required": [ + "id", + "parent", + "slot_on_deck", + "class_name", + "liquid_type", + "liquid_volume", + "liquid_input_wells" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "instrument_setup_biomek参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "create_protocol": { + "feedback": {}, + "goal": { + "none_keys": "none_keys", + "protocol_author": "protocol_author", + "protocol_date": "protocol_date", + "protocol_description": "protocol_description", + "protocol_name": "protocol_name", + "protocol_type": "protocol_type", + "protocol_version": "protocol_version" + }, + "goal_default": { + "protocol_name": "", + "protocol_description": "", + "protocol_version": "", + "protocol_author": "", + "protocol_date": "", + "protocol_type": "", + "none_keys": [] + }, + "handles": {}, + "placeholder_keys": {}, + "result": { + "return_info": "return_info" + }, + "schema": { + "title": "LiquidHandlerProtocolCreation", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "protocol_name": { + "type": "string", + "title": "protocol_name", + "description": "" + }, + "protocol_description": { + "type": "string", + "title": "protocol_description", + "description": "" + }, + "protocol_version": { + "type": "string", + "title": "protocol_version", + "description": "" + }, + "protocol_author": { + "type": "string", + "title": "protocol_author", + "description": "" + }, + "protocol_date": { + "type": "string", + "title": "protocol_date", + "description": "" + }, + "protocol_type": { + "type": "string", + "title": "protocol_type", + "description": "" + }, + "none_keys": { + "type": "array", + "items": { + "type": "string" + }, + "title": "none_keys", + "description": "" + } + }, + "title": "LiquidHandlerProtocolCreation_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "LiquidHandlerProtocolCreation_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + } + }, + "title": "LiquidHandlerProtocolCreation_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "LiquidHandlerProtocolCreation" + }, + "incubation_biomek": { + "feedback": {}, + "goal": { + "time": "time" + }, + "goal_default": { + "time": 0 + }, + "handles": { + "input": [ + { + "data_key": "liquid", + "data_source": "handle", + "data_type": "resource", + "handler_key": "plate", + "label": "plate" + } + ], + "output": [ + { + "data_key": "liquid", + "data_source": "handle", + "data_type": "resource", + "handler_key": "plate_out", + "label": "plate" + } + ] + }, + "placeholder_keys": {}, + "result": { + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "LiquidHandlerIncubateBiomek", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "time": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "time", + "description": "" + } + }, + "title": "LiquidHandlerIncubateBiomek_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "LiquidHandlerIncubateBiomek_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "LiquidHandlerIncubateBiomek_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "LiquidHandlerIncubateBiomek" + }, + "move_biomek": { + "feedback": {}, + "goal": { + "source": "source", + "sources": "sources", + "target": "target", + "targets": "targets" + }, + "goal_default": { + "sources": "", + "targets": "" + }, + "handles": { + "input": [ + { + "data_key": "liquid", + "data_source": "handle", + "data_type": "resource", + "handler_key": "sources", + "label": "sources" + } + ], + "output": [ + { + "data_key": "liquid", + "data_source": "handle", + "data_type": "resource", + "handler_key": "targets", + "label": "targets" + } + ] + }, + "placeholder_keys": {}, + "result": { + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "LiquidHandlerMoveBiomek", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "sources": { + "type": "string", + "title": "sources", + "description": "" + }, + "targets": { + "type": "string", + "title": "targets", + "description": "" + } + }, + "title": "LiquidHandlerMoveBiomek_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "LiquidHandlerMoveBiomek_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "LiquidHandlerMoveBiomek_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "LiquidHandlerMoveBiomek" + }, + "oscillation_biomek": { + "feedback": {}, + "goal": { + "rpm": "rpm", + "time": "time" + }, + "goal_default": { + "rpm": 0, + "time": 0 + }, + "handles": { + "input": [ + { + "data_key": "liquid", + "data_source": "handle", + "data_type": "resource", + "handler_key": "plate", + "label": "plate" + } + ], + "output": [ + { + "data_key": "liquid", + "data_source": "handle", + "data_type": "resource", + "handler_key": "plate_out", + "label": "plate" + } + ] + }, + "placeholder_keys": {}, + "result": { + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "LiquidHandlerOscillateBiomek", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "rpm": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "rpm", + "description": "" + }, + "time": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "time", + "description": "" + } + }, + "title": "LiquidHandlerOscillateBiomek_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "LiquidHandlerOscillateBiomek_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "LiquidHandlerOscillateBiomek_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "LiquidHandlerOscillateBiomek" + }, + "run_protocol": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": { + "return_info": "return_info" + }, + "schema": { + "title": "EmptyIn", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": true, + "title": "EmptyIn_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "EmptyIn_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + } + }, + "title": "EmptyIn_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "EmptyIn" + }, + "transfer_biomek": { + "feedback": {}, + "goal": { + "aspirate_technique": "aspirate_technique", + "aspirate_techniques": "aspirate_techniques", + "dispense_technique": "dispense_technique", + "dispense_techniques": "dispense_techniques", + "source": "source", + "sources": "sources", + "target": "target", + "targets": "targets", + "tip_rack": "tip_rack", + "volume": "volume" + }, + "goal_default": { + "sources": "", + "targets": "", + "tip_rack": "", + "volume": 0.0, + "aspirate_technique": "", + "dispense_technique": "" + }, + "handles": { + "input": [ + { + "data_key": "liquid", + "data_source": "handle", + "data_type": "resource", + "handler_key": "sources", + "label": "sources" + }, + { + "data_key": "liquid", + "data_source": "executor", + "data_type": "resource", + "handler_key": "targets", + "label": "targets" + }, + { + "data_key": "liquid", + "data_source": "executor", + "data_type": "resource", + "handler_key": "tip_rack", + "label": "tip_rack" + } + ], + "output": [ + { + "data_key": "liquid", + "data_source": "handle", + "data_type": "resource", + "handler_key": "sources_out", + "label": "sources" + }, + { + "data_key": "liquid", + "data_source": "executor", + "data_type": "resource", + "handler_key": "targets_out", + "label": "targets" + } + ] + }, + "placeholder_keys": {}, + "result": { + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "LiquidHandlerTransferBiomek", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "sources": { + "type": "string", + "title": "sources", + "description": "" + }, + "targets": { + "type": "string", + "title": "targets", + "description": "" + }, + "tip_rack": { + "type": "string", + "title": "tip_rack", + "description": "" + }, + "volume": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "volume", + "description": "" + }, + "aspirate_technique": { + "type": "string", + "title": "aspirate_technique", + "description": "" + }, + "dispense_technique": { + "type": "string", + "title": "dispense_technique", + "description": "" + } + }, + "title": "LiquidHandlerTransferBiomek_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "LiquidHandlerTransferBiomek_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "LiquidHandlerTransferBiomek_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "LiquidHandlerTransferBiomek" + }, + "transfer_liquid": { + "feedback": {}, + "goal": { + "asp_flow_rates": "asp_flow_rates", + "asp_vols": "asp_vols", + "blow_out_air_volume": "blow_out_air_volume", + "delays": "delays", + "dis_flow_rates": "dis_flow_rates", + "dis_vols": "dis_vols", + "is_96_well": "is_96_well", + "liquid_height": "liquid_height", + "mix_liquid_height": "mix_liquid_height", + "mix_rate": "mix_rate", + "mix_stage": "mix_stage", + "mix_times": "mix_times", + "mix_vol": "mix_vol", + "none_keys": "none_keys", + "offsets": "offsets", + "sources": "sources", + "spread": "spread", + "targets": "targets", + "tip_racks": "tip_racks", + "touch_tip": "touch_tip", + "use_channels": "use_channels" + }, + "goal_default": { + "asp_vols": [], + "dis_vols": [], + "sources": [], + "targets": [], + "tip_racks": [], + "use_channels": [], + "asp_flow_rates": [], + "dis_flow_rates": [], + "offsets": [], + "touch_tip": false, + "liquid_height": [], + "blow_out_air_volume": [], + "spread": "", + "is_96_well": false, + "mix_stage": "", + "mix_times": 0, + "mix_vol": 0, + "mix_rate": 0, + "mix_liquid_height": 0.0, + "delays": [], + "none_keys": [] + }, + "handles": { + "input": [ + { + "data_key": "sources", + "data_source": "handle", + "data_type": "resource", + "handler_key": "sources", + "io_type": "target", + "label": "待移动液体" + }, + { + "data_key": "targets", + "data_source": "handle", + "data_type": "resource", + "handler_key": "targets", + "label": "转移目标" + }, + { + "data_key": "tip_racks", + "data_source": "handle", + "data_type": "resource", + "handler_key": "tip_rack", + "label": "枪头盒" + } + ], + "output": [ + { + "data_key": "sources.@flatten", + "data_source": "executor", + "data_type": "resource", + "handler_key": "sources_out", + "io_type": "source", + "label": "移液后源孔" + }, + { + "data_key": "targets.@flatten", + "data_source": "executor", + "data_type": "resource", + "handler_key": "targets_out", + "label": "移液后目标孔" + } + ] + }, + "placeholder_keys": { + "sources": "unilabos_resources", + "targets": "unilabos_resources", + "tip_racks": "unilabos_resources" + }, + "result": { + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "LiquidHandlerTransfer", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "asp_vols": { + "type": "array", + "items": { + "type": "number" + }, + "title": "asp_vols", + "description": "" + }, + "dis_vols": { + "type": "array", + "items": { + "type": "number" + }, + "title": "dis_vols", + "description": "" + }, + "sources": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position" + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + }, + "w": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation" + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose" + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ] + }, + "title": "sources", + "description": "" + }, + "targets": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position" + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + }, + "w": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation" + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose" + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ] + }, + "title": "targets", + "description": "" + }, + "tip_racks": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position" + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + }, + "w": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation" + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose" + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ] + }, + "title": "tip_racks", + "description": "" + }, + "use_channels": { + "type": "array", + "items": { + "type": "integer" + }, + "title": "use_channels", + "description": "" + }, + "asp_flow_rates": { + "type": "array", + "items": { + "type": "number" + }, + "title": "asp_flow_rates", + "description": "" + }, + "dis_flow_rates": { + "type": "array", + "items": { + "type": "number" + }, + "title": "dis_flow_rates", + "description": "" + }, + "offsets": { + "type": "array", + "items": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z" + ] + }, + "title": "offsets", + "description": "" + }, + "touch_tip": { + "type": "boolean", + "title": "touch_tip", + "description": "" + }, + "liquid_height": { + "type": "array", + "items": { + "type": "number" + }, + "title": "liquid_height", + "description": "" + }, + "blow_out_air_volume": { + "type": "array", + "items": { + "type": "number" + }, + "title": "blow_out_air_volume", + "description": "" + }, + "spread": { + "type": "string", + "title": "spread", + "description": "" + }, + "is_96_well": { + "type": "boolean", + "title": "is_96_well", + "description": "" + }, + "mix_stage": { + "type": "string", + "title": "mix_stage", + "description": "" + }, + "mix_times": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "mix_times", + "description": "" + }, + "mix_vol": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "mix_vol", + "description": "" + }, + "mix_rate": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "mix_rate", + "description": "" + }, + "mix_liquid_height": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "mix_liquid_height", + "description": "" + }, + "delays": { + "type": "array", + "items": { + "type": "integer" + }, + "title": "delays", + "description": "" + }, + "none_keys": { + "type": "array", + "items": { + "type": "string" + }, + "title": "none_keys", + "description": "" + } + }, + "title": "LiquidHandlerTransfer_Goal", + "_unilabos_placeholder_info": { + "sources": "unilabos_resources", + "targets": "unilabos_resources", + "tip_racks": "unilabos_resources" + } + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "LiquidHandlerTransfer_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "LiquidHandlerTransfer_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "LiquidHandlerTransfer" + } + }, + "module": "unilabos.devices.liquid_handling.biomek:LiquidHandlerBiomek", + "status_types": { + "success": "" + }, + "type": "python" + }, + "config_info": [], + "description": "Biomek液体处理器设备,基于pylabrobot控制", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/devices/liquid_handler.yaml", + "handles": [], + "icon": "icon_yiyezhan.webp", + "init_param_schema": { + "config": { + "properties": {}, + "required": [], + "type": "object" + }, + "data": { + "properties": { + "success": { + "type": "string" + } + }, + "required": [ + "success" + ], + "type": "object" + } + }, + "registry_type": "device", + "version": "1.0.0" + }, + { + "id": "liquid_handler.laiyu", + "category": [ + "liquid_handler" + ], + "class": { + "action_value_mappings": { + "add_liquid": { + "feedback": {}, + "goal": { + "asp_vols": "asp_vols", + "blow_out_air_volume": "blow_out_air_volume", + "delays": "delays", + "dis_vols": "dis_vols", + "flow_rates": "flow_rates", + "is_96_well": "is_96_well", + "liquid_height": "liquid_height", + "mix_liquid_height": "mix_liquid_height", + "mix_rate": "mix_rate", + "mix_time": "mix_time", + "mix_vol": "mix_vol", + "none_keys": "none_keys", + "offsets": "offsets", + "reagent_sources": "reagent_sources", + "spread": "spread", + "targets": "targets", + "use_channels": "use_channels" + }, + "goal_default": { + "asp_vols": [], + "dis_vols": [], + "reagent_sources": [], + "targets": [], + "use_channels": [], + "flow_rates": [], + "offsets": [], + "liquid_height": [], + "blow_out_air_volume": [], + "spread": "", + "is_96_well": false, + "mix_time": 0, + "mix_vol": 0, + "mix_rate": 0, + "mix_liquid_height": 0.0, + "none_keys": [] + }, + "handles": {}, + "placeholder_keys": { + "reagent_sources": "unilabos_resources", + "targets": "unilabos_resources" + }, + "result": { + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "LiquidHandlerAdd", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "asp_vols": { + "type": "array", + "items": { + "type": "number" + }, + "title": "asp_vols", + "description": "" + }, + "dis_vols": { + "type": "array", + "items": { + "type": "number" + }, + "title": "dis_vols", + "description": "" + }, + "reagent_sources": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position" + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + }, + "w": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation" + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose" + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ] + }, + "title": "reagent_sources", + "description": "" + }, + "targets": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position" + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + }, + "w": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation" + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose" + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ] + }, + "title": "targets", + "description": "" + }, + "use_channels": { + "type": "array", + "items": { + "type": "integer" + }, + "title": "use_channels", + "description": "" + }, + "flow_rates": { + "type": "array", + "items": { + "type": "number" + }, + "title": "flow_rates", + "description": "" + }, + "offsets": { + "type": "array", + "items": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z" + ] + }, + "title": "offsets", + "description": "" + }, + "liquid_height": { + "type": "array", + "items": { + "type": "number" + }, + "title": "liquid_height", + "description": "" + }, + "blow_out_air_volume": { + "type": "array", + "items": { + "type": "number" + }, + "title": "blow_out_air_volume", + "description": "" + }, + "spread": { + "type": "string", + "title": "spread", + "description": "" + }, + "is_96_well": { + "type": "boolean", + "title": "is_96_well", + "description": "" + }, + "mix_time": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "mix_time", + "description": "" + }, + "mix_vol": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "mix_vol", + "description": "" + }, + "mix_rate": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "mix_rate", + "description": "" + }, + "mix_liquid_height": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "mix_liquid_height", + "description": "" + }, + "none_keys": { + "type": "array", + "items": { + "type": "string" + }, + "title": "none_keys", + "description": "" + } + }, + "title": "LiquidHandlerAdd_Goal", + "_unilabos_placeholder_info": { + "reagent_sources": "unilabos_resources", + "targets": "unilabos_resources" + } + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "LiquidHandlerAdd_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "LiquidHandlerAdd_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "LiquidHandlerAdd" + }, + "aspirate": { + "feedback": {}, + "goal": { + "blow_out_air_volume": "blow_out_air_volume", + "flow_rates": "flow_rates", + "liquid_height": "liquid_height", + "offsets": "offsets", + "resources": "resources", + "spread": "spread", + "use_channels": "use_channels", + "vols": "vols" + }, + "goal_default": { + "resources": [], + "vols": [], + "use_channels": [], + "flow_rates": [], + "offsets": [], + "liquid_height": [], + "blow_out_air_volume": [], + "spread": "" + }, + "handles": {}, + "placeholder_keys": { + "resources": "unilabos_resources" + }, + "result": { + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "LiquidHandlerAspirate", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "resources": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position" + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + }, + "w": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation" + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose" + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ] + }, + "title": "resources", + "description": "" + }, + "vols": { + "type": "array", + "items": { + "type": "number" + }, + "title": "vols", + "description": "" + }, + "use_channels": { + "type": "array", + "items": { + "type": "integer" + }, + "title": "use_channels", + "description": "" + }, + "flow_rates": { + "type": "array", + "items": { + "type": "number" + }, + "title": "flow_rates", + "description": "" + }, + "offsets": { + "type": "array", + "items": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z" + ] + }, + "title": "offsets", + "description": "" + }, + "liquid_height": { + "type": "array", + "items": { + "type": "number" + }, + "title": "liquid_height", + "description": "" + }, + "blow_out_air_volume": { + "type": "array", + "items": { + "type": "number" + }, + "title": "blow_out_air_volume", + "description": "" + }, + "spread": { + "type": "string", + "title": "spread", + "description": "" + } + }, + "title": "LiquidHandlerAspirate_Goal", + "_unilabos_placeholder_info": { + "resources": "unilabos_resources" + } + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "LiquidHandlerAspirate_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "LiquidHandlerAspirate_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "LiquidHandlerAspirate" + }, + "auto-transfer_liquid": { + "feedback": {}, + "goal": {}, + "goal_default": { + "asp_flow_rates": null, + "asp_vols": null, + "blow_out_air_volume": null, + "delays": null, + "dis_flow_rates": null, + "dis_vols": null, + "is_96_well": false, + "liquid_height": null, + "mix_liquid_height": null, + "mix_rate": null, + "mix_stage": "none", + "mix_times": null, + "mix_vol": null, + "none_keys": [], + "offsets": null, + "sources": null, + "spread": "wide", + "targets": null, + "tip_racks": null, + "touch_tip": false, + "use_channels": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "asp_flow_rates": { + "items": { + "type": "number" + }, + "type": "array", + "title": "asp_flow_rates", + "description": "" + }, + "asp_vols": { + "anyOf": [ + { + "items": { + "type": "number" + }, + "type": "array" + }, + { + "type": "number" + } + ], + "title": "asp_vols", + "description": "" + }, + "blow_out_air_volume": { + "items": { + "type": "number" + }, + "type": "array", + "title": "blow_out_air_volume", + "description": "" + }, + "delays": { + "items": { + "type": "integer" + }, + "type": "array", + "title": "delays", + "description": "" + }, + "dis_flow_rates": { + "items": { + "type": "number" + }, + "type": "array", + "title": "dis_flow_rates", + "description": "" + }, + "dis_vols": { + "anyOf": [ + { + "items": { + "type": "number" + }, + "type": "array" + }, + { + "type": "number" + } + ], + "title": "dis_vols", + "description": "" + }, + "is_96_well": { + "default": false, + "type": "boolean", + "title": "is_96_well", + "description": "" + }, + "liquid_height": { + "items": { + "type": "number" + }, + "type": "array", + "title": "liquid_height", + "description": "" + }, + "mix_liquid_height": { + "type": "number", + "title": "mix_liquid_height", + "description": "" + }, + "mix_rate": { + "type": "integer", + "title": "mix_rate", + "description": "" + }, + "mix_stage": { + "default": "none", + "enum": [ + "none", + "before", + "after", + "both" + ], + "type": "string", + "title": "mix_stage", + "description": "" + }, + "mix_times": { + "items": { + "type": "integer" + }, + "type": "array", + "title": "mix_times", + "description": "" + }, + "mix_vol": { + "type": "integer", + "title": "mix_vol", + "description": "" + }, + "none_keys": { + "default": [], + "items": { + "type": "string" + }, + "type": "array", + "title": "none_keys", + "description": "" + }, + "offsets": { + "items": { + "type": "object" + }, + "type": "array", + "title": "offsets", + "description": "" + }, + "sources": { + "items": { + "type": "object" + }, + "type": "array", + "title": "sources", + "description": "" + }, + "spread": { + "default": "wide", + "enum": [ + "wide", + "tight", + "custom" + ], + "type": "string", + "title": "spread", + "description": "" + }, + "targets": { + "items": { + "type": "object" + }, + "type": "array", + "title": "targets", + "description": "" + }, + "tip_racks": { + "items": { + "type": "object" + }, + "type": "array", + "title": "tip_racks", + "description": "" + }, + "touch_tip": { + "default": false, + "type": "boolean", + "title": "touch_tip", + "description": "" + }, + "use_channels": { + "items": { + "type": "integer" + }, + "type": "array", + "title": "use_channels", + "description": "" + } + }, + "required": [ + "sources", + "targets", + "tip_racks", + "asp_vols", + "dis_vols" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "transfer_liquid参数", + "type": "object" + }, + "type": "UniLabJsonCommandAsync" + }, + "dispense": { + "feedback": {}, + "goal": { + "blow_out_air_volume": "blow_out_air_volume", + "flow_rates": "flow_rates", + "liquid_height": "liquid_height", + "offsets": "offsets", + "resources": "resources", + "spread": "spread", + "use_channels": "use_channels", + "vols": "vols" + }, + "goal_default": { + "resources": [], + "vols": [], + "use_channels": [], + "flow_rates": [], + "offsets": [], + "blow_out_air_volume": [], + "spread": "" + }, + "handles": {}, + "placeholder_keys": { + "resources": "unilabos_resources" + }, + "result": { + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "LiquidHandlerDispense", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "resources": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position" + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + }, + "w": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation" + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose" + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ] + }, + "title": "resources", + "description": "" + }, + "vols": { + "type": "array", + "items": { + "type": "number" + }, + "title": "vols", + "description": "" + }, + "use_channels": { + "type": "array", + "items": { + "type": "integer" + }, + "title": "use_channels", + "description": "" + }, + "flow_rates": { + "type": "array", + "items": { + "type": "number" + }, + "title": "flow_rates", + "description": "" + }, + "offsets": { + "type": "array", + "items": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z" + ] + }, + "title": "offsets", + "description": "" + }, + "blow_out_air_volume": { + "type": "array", + "items": { + "type": "integer" + }, + "title": "blow_out_air_volume", + "description": "" + }, + "spread": { + "type": "string", + "title": "spread", + "description": "" + } + }, + "title": "LiquidHandlerDispense_Goal", + "_unilabos_placeholder_info": { + "resources": "unilabos_resources" + } + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "LiquidHandlerDispense_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "LiquidHandlerDispense_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "LiquidHandlerDispense" + }, + "drop_tips": { + "feedback": {}, + "goal": { + "allow_nonzero_volume": "allow_nonzero_volume", + "offsets": "offsets", + "tip_spots": "tip_spots", + "use_channels": "use_channels" + }, + "goal_default": { + "tip_spots": [], + "use_channels": [], + "offsets": [], + "allow_nonzero_volume": false + }, + "handles": {}, + "placeholder_keys": { + "tip_spots": "unilabos_resources" + }, + "result": { + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "LiquidHandlerDropTips", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "tip_spots": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position" + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + }, + "w": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation" + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose" + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ] + }, + "title": "tip_spots", + "description": "" + }, + "use_channels": { + "type": "array", + "items": { + "type": "integer" + }, + "title": "use_channels", + "description": "" + }, + "offsets": { + "type": "array", + "items": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z" + ] + }, + "title": "offsets", + "description": "" + }, + "allow_nonzero_volume": { + "type": "boolean", + "title": "allow_nonzero_volume", + "description": "" + } + }, + "title": "LiquidHandlerDropTips_Goal", + "_unilabos_placeholder_info": { + "tip_spots": "unilabos_resources" + } + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "LiquidHandlerDropTips_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "LiquidHandlerDropTips_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "LiquidHandlerDropTips" + }, + "mix": { + "feedback": {}, + "goal": { + "height_to_bottom": "height_to_bottom", + "mix_rate": "mix_rate", + "mix_time": "mix_time", + "mix_vol": "mix_vol", + "none_keys": "none_keys", + "offsets": "offsets", + "targets": "targets" + }, + "goal_default": { + "targets": [], + "mix_time": 0, + "mix_vol": 0, + "height_to_bottom": 0.0, + "offsets": [], + "mix_rate": 0.0, + "none_keys": [] + }, + "handles": {}, + "placeholder_keys": { + "targets": "unilabos_resources" + }, + "result": { + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "LiquidHandlerMix", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "targets": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position" + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + }, + "w": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation" + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose" + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ] + }, + "title": "targets", + "description": "" + }, + "mix_time": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "mix_time", + "description": "" + }, + "mix_vol": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "mix_vol", + "description": "" + }, + "height_to_bottom": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "height_to_bottom", + "description": "" + }, + "offsets": { + "type": "array", + "items": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z" + ] + }, + "title": "offsets", + "description": "" + }, + "mix_rate": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "mix_rate", + "description": "" + }, + "none_keys": { + "type": "array", + "items": { + "type": "string" + }, + "title": "none_keys", + "description": "" + } + }, + "title": "LiquidHandlerMix_Goal", + "_unilabos_placeholder_info": { + "targets": "unilabos_resources" + } + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "LiquidHandlerMix_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "LiquidHandlerMix_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "LiquidHandlerMix" + }, + "pick_up_tips": { + "feedback": {}, + "goal": { + "offsets": "offsets", + "tip_spots": "tip_spots", + "use_channels": "use_channels" + }, + "goal_default": { + "tip_spots": [], + "use_channels": [], + "offsets": [] + }, + "handles": {}, + "placeholder_keys": { + "tip_spots": "unilabos_resources" + }, + "result": { + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "LiquidHandlerPickUpTips", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "tip_spots": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position" + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + }, + "w": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation" + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose" + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ] + }, + "title": "tip_spots", + "description": "" + }, + "use_channels": { + "type": "array", + "items": { + "type": "integer" + }, + "title": "use_channels", + "description": "" + }, + "offsets": { + "type": "array", + "items": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z" + ] + }, + "title": "offsets", + "description": "" + } + }, + "title": "LiquidHandlerPickUpTips_Goal", + "_unilabos_placeholder_info": { + "tip_spots": "unilabos_resources" + } + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "LiquidHandlerPickUpTips_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "LiquidHandlerPickUpTips_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "LiquidHandlerPickUpTips" + } + }, + "module": "unilabos.devices.liquid_handling.laiyu.laiyu:TransformXYZHandler", + "properties": { + "support_touch_tip": "bool" + }, + "status_types": {}, + "type": "python" + }, + "config_info": [], + "description": "Laiyu液体处理器设备,基于pylabrobot控制", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/devices/liquid_handler.yaml", + "handles": [], + "icon": "icon_yiyezhan.webp", + "init_param_schema": { + "config": { + "properties": { + "channel_num": { + "default": 1, + "type": "string" + }, + "deck": { + "type": "object" + }, + "host": { + "default": "127.0.0.1", + "type": "string" + }, + "port": { + "default": 9999, + "type": "integer" + }, + "simulator": { + "default": true, + "type": "string" + }, + "timeout": { + "default": 10.0, + "type": "number" + } + }, + "required": [ + "deck" + ], + "type": "object" + }, + "data": { + "properties": {}, + "required": [], + "type": "object" + } + }, + "registry_type": "device", + "version": "1.0.0" + }, + { + "id": "liquid_handler.prcxi", + "category": [ + "liquid_handler" + ], + "class": { + "action_value_mappings": { + "add_liquid": { + "feedback": {}, + "goal": { + "asp_vols": "asp_vols", + "blow_out_air_volume": "blow_out_air_volume", + "delays": "delays", + "dis_vols": "dis_vols", + "flow_rates": "flow_rates", + "is_96_well": "is_96_well", + "liquid_height": "liquid_height", + "mix_liquid_height": "mix_liquid_height", + "mix_rate": "mix_rate", + "mix_time": "mix_time", + "mix_vol": "mix_vol", + "none_keys": "none_keys", + "offsets": "offsets", + "reagent_sources": "reagent_sources", + "spread": "spread", + "targets": "targets", + "use_channels": "use_channels" + }, + "goal_default": { + "asp_vols": [], + "dis_vols": [], + "reagent_sources": [], + "targets": [], + "use_channels": [], + "flow_rates": [], + "offsets": [], + "liquid_height": [], + "blow_out_air_volume": [], + "spread": "", + "is_96_well": false, + "mix_time": 0, + "mix_vol": 0, + "mix_rate": 0, + "mix_liquid_height": 0.0, + "none_keys": [] + }, + "handles": {}, + "placeholder_keys": { + "reagent_sources": "unilabos_resources", + "targets": "unilabos_resources" + }, + "result": { + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "LiquidHandlerAdd", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "asp_vols": { + "type": "array", + "items": { + "type": "number" + }, + "title": "asp_vols", + "description": "" + }, + "dis_vols": { + "type": "array", + "items": { + "type": "number" + }, + "title": "dis_vols", + "description": "" + }, + "reagent_sources": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position" + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + }, + "w": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation" + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose" + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ] + }, + "title": "reagent_sources", + "description": "" + }, + "targets": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position" + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + }, + "w": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation" + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose" + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ] + }, + "title": "targets", + "description": "" + }, + "use_channels": { + "type": "array", + "items": { + "type": "integer" + }, + "title": "use_channels", + "description": "" + }, + "flow_rates": { + "type": "array", + "items": { + "type": "number" + }, + "title": "flow_rates", + "description": "" + }, + "offsets": { + "type": "array", + "items": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z" + ] + }, + "title": "offsets", + "description": "" + }, + "liquid_height": { + "type": "array", + "items": { + "type": "number" + }, + "title": "liquid_height", + "description": "" + }, + "blow_out_air_volume": { + "type": "array", + "items": { + "type": "number" + }, + "title": "blow_out_air_volume", + "description": "" + }, + "spread": { + "type": "string", + "title": "spread", + "description": "" + }, + "is_96_well": { + "type": "boolean", + "title": "is_96_well", + "description": "" + }, + "mix_time": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "mix_time", + "description": "" + }, + "mix_vol": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "mix_vol", + "description": "" + }, + "mix_rate": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "mix_rate", + "description": "" + }, + "mix_liquid_height": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "mix_liquid_height", + "description": "" + }, + "none_keys": { + "type": "array", + "items": { + "type": "string" + }, + "title": "none_keys", + "description": "" + } + }, + "title": "LiquidHandlerAdd_Goal", + "_unilabos_placeholder_info": { + "reagent_sources": "unilabos_resources", + "targets": "unilabos_resources" + } + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "LiquidHandlerAdd_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "LiquidHandlerAdd_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "LiquidHandlerAdd" + }, + "aspirate": { + "feedback": {}, + "goal": { + "blow_out_air_volume": "blow_out_air_volume", + "flow_rates": "flow_rates", + "liquid_height": "liquid_height", + "offsets": "offsets", + "resources": "resources", + "spread": "spread", + "use_channels": "use_channels", + "vols": "vols" + }, + "goal_default": { + "resources": [], + "vols": [], + "use_channels": [], + "flow_rates": [], + "offsets": [], + "liquid_height": [], + "blow_out_air_volume": [], + "spread": "" + }, + "handles": {}, + "placeholder_keys": { + "resources": "unilabos_resources" + }, + "result": { + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "LiquidHandlerAspirate", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "resources": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position" + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + }, + "w": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation" + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose" + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ] + }, + "title": "resources", + "description": "" + }, + "vols": { + "type": "array", + "items": { + "type": "number" + }, + "title": "vols", + "description": "" + }, + "use_channels": { + "type": "array", + "items": { + "type": "integer" + }, + "title": "use_channels", + "description": "" + }, + "flow_rates": { + "type": "array", + "items": { + "type": "number" + }, + "title": "flow_rates", + "description": "" + }, + "offsets": { + "type": "array", + "items": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z" + ] + }, + "title": "offsets", + "description": "" + }, + "liquid_height": { + "type": "array", + "items": { + "type": "number" + }, + "title": "liquid_height", + "description": "" + }, + "blow_out_air_volume": { + "type": "array", + "items": { + "type": "number" + }, + "title": "blow_out_air_volume", + "description": "" + }, + "spread": { + "type": "string", + "title": "spread", + "description": "" + } + }, + "title": "LiquidHandlerAspirate_Goal", + "_unilabos_placeholder_info": { + "resources": "unilabos_resources" + } + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "LiquidHandlerAspirate_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "LiquidHandlerAspirate_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "LiquidHandlerAspirate" + }, + "auto-create_protocol": { + "feedback": {}, + "goal": {}, + "goal_default": { + "none_keys": [], + "protocol_author": "", + "protocol_date": "", + "protocol_description": "", + "protocol_name": "", + "protocol_type": "", + "protocol_version": "" + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "create_protocol的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "none_keys": { + "default": [], + "items": { + "type": "string" + }, + "type": "array", + "title": "none_keys", + "description": "" + }, + "protocol_author": { + "default": "", + "type": "string", + "title": "protocol_author", + "description": "" + }, + "protocol_date": { + "default": "", + "type": "string", + "title": "protocol_date", + "description": "" + }, + "protocol_description": { + "default": "", + "type": "string", + "title": "protocol_description", + "description": "" + }, + "protocol_name": { + "default": "", + "type": "string", + "title": "protocol_name", + "description": "" + }, + "protocol_type": { + "default": "", + "type": "string", + "title": "protocol_type", + "description": "" + }, + "protocol_version": { + "default": "", + "type": "string", + "title": "protocol_version", + "description": "" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "create_protocol参数", + "type": "object" + }, + "type": "UniLabJsonCommandAsync" + }, + "auto-custom_delay": { + "feedback": {}, + "goal": {}, + "goal_default": { + "msg": null, + "seconds": 0 + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "custom_delay的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "msg": { + "type": "string", + "title": "msg", + "description": "" + }, + "seconds": { + "default": 0, + "type": "string", + "title": "seconds", + "description": "" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "custom_delay参数", + "type": "object" + }, + "type": "UniLabJsonCommandAsync" + }, + "auto-heater_action": { + "feedback": {}, + "goal": {}, + "goal_default": { + "temperature": null, + "time": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "temperature": { + "type": "number", + "title": "temperature", + "description": "" + }, + "time": { + "type": "integer", + "title": "time", + "description": "" + } + }, + "required": [ + "temperature", + "time" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "heater_action参数", + "type": "object" + }, + "type": "UniLabJsonCommandAsync" + }, + "auto-iter_tips": { + "feedback": {}, + "goal": {}, + "goal_default": { + "tip_racks": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "iter_tips的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "tip_racks": { + "items": { + "type": "object" + }, + "type": "array", + "title": "tip_racks", + "description": "" + } + }, + "required": [ + "tip_racks" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "string" + } + }, + "required": [ + "goal" + ], + "title": "iter_tips参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-move_to": { + "feedback": {}, + "goal": {}, + "goal_default": { + "channel": 0, + "dis_to_top": 0, + "well": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "move_to的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "channel": { + "default": 0, + "type": "integer", + "title": "channel", + "description": "" + }, + "dis_to_top": { + "default": 0, + "type": "number", + "title": "dis_to_top", + "description": "" + }, + "well": { + "type": "object", + "title": "well", + "description": "" + } + }, + "required": [ + "well" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "move_to参数", + "type": "object" + }, + "type": "UniLabJsonCommandAsync" + }, + "auto-run_protocol": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "run_protocol的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "run_protocol参数", + "type": "object" + }, + "type": "UniLabJsonCommandAsync" + }, + "auto-set_group": { + "feedback": {}, + "goal": {}, + "goal_default": { + "group_name": null, + "volumes": null, + "wells": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "group_name": { + "type": "string", + "title": "group_name", + "description": "" + }, + "volumes": { + "items": { + "type": "number" + }, + "type": "array", + "title": "volumes", + "description": "" + }, + "wells": { + "items": { + "type": "object" + }, + "type": "array", + "title": "wells", + "description": "" + } + }, + "required": [ + "group_name", + "wells", + "volumes" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "set_group参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-shaker_action": { + "feedback": {}, + "goal": {}, + "goal_default": { + "amplitude": null, + "is_wait": null, + "module_no": null, + "time": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "amplitude": { + "type": "integer", + "title": "amplitude", + "description": "" + }, + "is_wait": { + "type": "boolean", + "title": "is_wait", + "description": "" + }, + "module_no": { + "type": "integer", + "title": "module_no", + "description": "" + }, + "time": { + "type": "integer", + "title": "time", + "description": "" + } + }, + "required": [ + "time", + "module_no", + "amplitude", + "is_wait" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "shaker_action参数", + "type": "object" + }, + "type": "UniLabJsonCommandAsync" + }, + "auto-touch_tip": { + "feedback": {}, + "goal": {}, + "goal_default": { + "targets": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "touch_tip的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "targets": { + "items": { + "type": "object" + }, + "type": "array", + "title": "targets", + "description": "" + } + }, + "required": [ + "targets" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "touch_tip参数", + "type": "object" + }, + "type": "UniLabJsonCommandAsync" + }, + "auto-transfer_group": { + "feedback": {}, + "goal": {}, + "goal_default": { + "source_group_name": null, + "target_group_name": null, + "unit_volume": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "source_group_name": { + "type": "string", + "title": "source_group_name", + "description": "" + }, + "target_group_name": { + "type": "string", + "title": "target_group_name", + "description": "" + }, + "unit_volume": { + "type": "number", + "title": "unit_volume", + "description": "" + } + }, + "required": [ + "source_group_name", + "target_group_name", + "unit_volume" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "transfer_group参数", + "type": "object" + }, + "type": "UniLabJsonCommandAsync" + }, + "discard_tips": { + "feedback": {}, + "goal": { + "allow_nonzero_volume": "allow_nonzero_volume", + "offsets": "offsets", + "use_channels": "use_channels" + }, + "goal_default": { + "use_channels": [] + }, + "handles": {}, + "placeholder_keys": {}, + "result": { + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "LiquidHandlerDiscardTips", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "use_channels": { + "type": "array", + "items": { + "type": "integer" + }, + "title": "use_channels", + "description": "" + } + }, + "title": "LiquidHandlerDiscardTips_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "LiquidHandlerDiscardTips_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "LiquidHandlerDiscardTips_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "LiquidHandlerDiscardTips" + }, + "dispense": { + "feedback": {}, + "goal": { + "blow_out_air_volume": "blow_out_air_volume", + "flow_rates": "flow_rates", + "liquid_height": "liquid_height", + "offsets": "offsets", + "resources": "resources", + "spread": "spread", + "use_channels": "use_channels", + "vols": "vols" + }, + "goal_default": { + "resources": [], + "vols": [], + "use_channels": [], + "flow_rates": [], + "offsets": [], + "blow_out_air_volume": [], + "spread": "" + }, + "handles": {}, + "placeholder_keys": { + "resources": "unilabos_resources" + }, + "result": { + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "LiquidHandlerDispense", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "resources": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position" + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + }, + "w": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation" + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose" + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ] + }, + "title": "resources", + "description": "" + }, + "vols": { + "type": "array", + "items": { + "type": "number" + }, + "title": "vols", + "description": "" + }, + "use_channels": { + "type": "array", + "items": { + "type": "integer" + }, + "title": "use_channels", + "description": "" + }, + "flow_rates": { + "type": "array", + "items": { + "type": "number" + }, + "title": "flow_rates", + "description": "" + }, + "offsets": { + "type": "array", + "items": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z" + ] + }, + "title": "offsets", + "description": "" + }, + "blow_out_air_volume": { + "type": "array", + "items": { + "type": "integer" + }, + "title": "blow_out_air_volume", + "description": "" + }, + "spread": { + "type": "string", + "title": "spread", + "description": "" + } + }, + "title": "LiquidHandlerDispense_Goal", + "_unilabos_placeholder_info": { + "resources": "unilabos_resources" + } + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "LiquidHandlerDispense_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "LiquidHandlerDispense_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "LiquidHandlerDispense" + }, + "drop_tips": { + "feedback": {}, + "goal": { + "allow_nonzero_volume": "allow_nonzero_volume", + "offsets": "offsets", + "tip_spots": "tip_spots", + "use_channels": "use_channels" + }, + "goal_default": { + "tip_spots": [], + "use_channels": [], + "offsets": [], + "allow_nonzero_volume": false + }, + "handles": {}, + "placeholder_keys": { + "tip_spots": "unilabos_resources" + }, + "result": { + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "LiquidHandlerDropTips", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "tip_spots": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position" + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + }, + "w": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation" + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose" + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ] + }, + "title": "tip_spots", + "description": "" + }, + "use_channels": { + "type": "array", + "items": { + "type": "integer" + }, + "title": "use_channels", + "description": "" + }, + "offsets": { + "type": "array", + "items": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z" + ] + }, + "title": "offsets", + "description": "" + }, + "allow_nonzero_volume": { + "type": "boolean", + "title": "allow_nonzero_volume", + "description": "" + } + }, + "title": "LiquidHandlerDropTips_Goal", + "_unilabos_placeholder_info": { + "tip_spots": "unilabos_resources" + } + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "LiquidHandlerDropTips_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "LiquidHandlerDropTips_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "LiquidHandlerDropTips" + }, + "mix": { + "feedback": {}, + "goal": { + "height_to_bottom": "height_to_bottom", + "mix_rate": "mix_rate", + "mix_time": "mix_time", + "mix_vol": "mix_vol", + "none_keys": "none_keys", + "offsets": "offsets", + "targets": "targets" + }, + "goal_default": { + "targets": [], + "mix_time": 0, + "mix_vol": 0, + "height_to_bottom": 0.0, + "offsets": [], + "mix_rate": 0.0, + "none_keys": [] + }, + "handles": {}, + "placeholder_keys": { + "targets": "unilabos_resources" + }, + "result": { + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "LiquidHandlerMix", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "targets": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position" + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + }, + "w": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation" + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose" + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ] + }, + "title": "targets", + "description": "" + }, + "mix_time": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "mix_time", + "description": "" + }, + "mix_vol": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "mix_vol", + "description": "" + }, + "height_to_bottom": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "height_to_bottom", + "description": "" + }, + "offsets": { + "type": "array", + "items": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z" + ] + }, + "title": "offsets", + "description": "" + }, + "mix_rate": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "mix_rate", + "description": "" + }, + "none_keys": { + "type": "array", + "items": { + "type": "string" + }, + "title": "none_keys", + "description": "" + } + }, + "title": "LiquidHandlerMix_Goal", + "_unilabos_placeholder_info": { + "targets": "unilabos_resources" + } + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "LiquidHandlerMix_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "LiquidHandlerMix_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "LiquidHandlerMix" + }, + "move_plate": { + "feedback": {}, + "goal": { + "destination_offset": "destination_offset", + "drop_direction": "drop_direction", + "get_direction": "get_direction", + "intermediate_locations": "intermediate_locations", + "pickup_direction": "pickup_direction", + "pickup_distance_from_top": "pickup_distance_from_top", + "pickup_offset": "pickup_offset", + "plate": "plate", + "put_direction": "put_direction", + "resource_offset": "resource_offset", + "to": "to" + }, + "goal_default": { + "plate": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + }, + "to": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + }, + "intermediate_locations": [], + "resource_offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pickup_offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "destination_offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pickup_direction": "", + "drop_direction": "", + "get_direction": "", + "put_direction": "", + "pickup_distance_from_top": 0.0 + }, + "handles": {}, + "placeholder_keys": { + "plate": "unilabos_resources", + "to": "unilabos_resources" + }, + "result": { + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "LiquidHandlerMovePlate", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "plate": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "plate", + "additionalProperties": false, + "description": "" + }, + "to": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "to", + "additionalProperties": false, + "description": "" + }, + "intermediate_locations": { + "type": "array", + "items": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z" + ] + }, + "title": "intermediate_locations", + "description": "" + }, + "resource_offset": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "resource_offset", + "additionalProperties": false, + "description": "" + }, + "pickup_offset": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "pickup_offset", + "additionalProperties": false, + "description": "" + }, + "destination_offset": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "destination_offset", + "additionalProperties": false, + "description": "" + }, + "pickup_direction": { + "type": "string", + "title": "pickup_direction", + "description": "" + }, + "drop_direction": { + "type": "string", + "title": "drop_direction", + "description": "" + }, + "get_direction": { + "type": "string", + "title": "get_direction", + "description": "" + }, + "put_direction": { + "type": "string", + "title": "put_direction", + "description": "" + }, + "pickup_distance_from_top": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "pickup_distance_from_top", + "description": "" + } + }, + "title": "LiquidHandlerMovePlate_Goal", + "_unilabos_placeholder_info": { + "plate": "unilabos_resources", + "to": "unilabos_resources" + } + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "LiquidHandlerMovePlate_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "LiquidHandlerMovePlate_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "LiquidHandlerMovePlate" + }, + "pick_up_tips": { + "feedback": {}, + "goal": { + "offsets": "offsets", + "tip_spots": "tip_spots", + "use_channels": "use_channels" + }, + "goal_default": { + "tip_spots": [], + "use_channels": [], + "offsets": [] + }, + "handles": {}, + "placeholder_keys": { + "tip_spots": "unilabos_resources" + }, + "result": { + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "LiquidHandlerPickUpTips", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "tip_spots": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position" + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + }, + "w": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation" + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose" + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ] + }, + "title": "tip_spots", + "description": "" + }, + "use_channels": { + "type": "array", + "items": { + "type": "integer" + }, + "title": "use_channels", + "description": "" + }, + "offsets": { + "type": "array", + "items": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z" + ] + }, + "title": "offsets", + "description": "" + } + }, + "title": "LiquidHandlerPickUpTips_Goal", + "_unilabos_placeholder_info": { + "tip_spots": "unilabos_resources" + } + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "LiquidHandlerPickUpTips_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "LiquidHandlerPickUpTips_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "LiquidHandlerPickUpTips" + }, + "remove_liquid": { + "feedback": {}, + "goal": { + "blow_out_air_volume": "blow_out_air_volume", + "delays": "delays", + "flow_rates": "flow_rates", + "is_96_well": "is_96_well", + "liquid_height": "liquid_height", + "none_keys": "none_keys", + "offsets": "offsets", + "sources": "sources", + "spread": "spread", + "top": "top", + "use_channels": "use_channels", + "vols": "vols", + "waste_liquid": "waste_liquid" + }, + "goal_default": { + "vols": [], + "sources": [], + "waste_liquid": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + }, + "use_channels": [], + "flow_rates": [], + "offsets": [], + "liquid_height": [], + "blow_out_air_volume": [], + "spread": "", + "delays": [], + "is_96_well": false, + "top": [], + "none_keys": [] + }, + "handles": {}, + "placeholder_keys": { + "sources": "unilabos_resources", + "waste_liquid": "unilabos_resources" + }, + "result": { + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "LiquidHandlerRemove", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "vols": { + "type": "array", + "items": { + "type": "number" + }, + "title": "vols", + "description": "" + }, + "sources": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position" + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + }, + "w": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation" + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose" + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ] + }, + "title": "sources", + "description": "" + }, + "waste_liquid": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "waste_liquid", + "additionalProperties": false, + "description": "" + }, + "use_channels": { + "type": "array", + "items": { + "type": "integer" + }, + "title": "use_channels", + "description": "" + }, + "flow_rates": { + "type": "array", + "items": { + "type": "number" + }, + "title": "flow_rates", + "description": "" + }, + "offsets": { + "type": "array", + "items": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z" + ] + }, + "title": "offsets", + "description": "" + }, + "liquid_height": { + "type": "array", + "items": { + "type": "number" + }, + "title": "liquid_height", + "description": "" + }, + "blow_out_air_volume": { + "type": "array", + "items": { + "type": "number" + }, + "title": "blow_out_air_volume", + "description": "" + }, + "spread": { + "type": "string", + "title": "spread", + "description": "" + }, + "delays": { + "type": "array", + "items": { + "type": "integer" + }, + "title": "delays", + "description": "" + }, + "is_96_well": { + "type": "boolean", + "title": "is_96_well", + "description": "" + }, + "top": { + "type": "array", + "items": { + "type": "number" + }, + "title": "top", + "description": "" + }, + "none_keys": { + "type": "array", + "items": { + "type": "string" + }, + "title": "none_keys", + "description": "" + } + }, + "title": "LiquidHandlerRemove_Goal", + "_unilabos_placeholder_info": { + "sources": "unilabos_resources", + "waste_liquid": "unilabos_resources" + } + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "LiquidHandlerRemove_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "LiquidHandlerRemove_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "LiquidHandlerRemove" + }, + "set_liquid": { + "feedback": {}, + "goal": { + "liquid_names": "liquid_names", + "volumes": "volumes", + "wells": "wells" + }, + "goal_default": { + "wells": [], + "liquid_names": [], + "volumes": [] + }, + "handles": { + "input": [ + { + "data_key": "wells", + "data_source": "handle", + "data_type": "resource", + "handler_key": "input_wells", + "label": "待设定液体孔" + } + ], + "output": [ + { + "data_key": "wells.@flatten", + "data_source": "executor", + "data_type": "resource", + "handler_key": "output_wells", + "label": "已设定液体孔" + } + ] + }, + "placeholder_keys": { + "wells": "unilabos_resources" + }, + "result": { + "return_info": "return_info" + }, + "schema": { + "title": "LiquidHandlerSetLiquid", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "wells": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position" + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + }, + "w": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation" + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose" + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ] + }, + "title": "wells", + "description": "" + }, + "liquid_names": { + "type": "array", + "items": { + "type": "string" + }, + "title": "liquid_names", + "description": "" + }, + "volumes": { + "type": "array", + "items": { + "type": "number" + }, + "title": "volumes", + "description": "" + } + }, + "title": "LiquidHandlerSetLiquid_Goal", + "_unilabos_placeholder_info": { + "wells": "unilabos_resources" + } + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "LiquidHandlerSetLiquid_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + } + }, + "title": "LiquidHandlerSetLiquid_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "LiquidHandlerSetLiquid" + }, + "set_liquid_from_plate": { + "feedback": {}, + "goal": {}, + "goal_default": { + "liquid_names": null, + "plate": null, + "volumes": null, + "well_names": null + }, + "handles": { + "input": [ + { + "data_key": "@this.0@@@plate", + "data_source": "handle", + "data_type": "resource", + "handler_key": "input_plate", + "label": "待设定液体板" + } + ], + "output": [ + { + "data_key": "plate.@flatten", + "data_source": "executor", + "data_type": "resource", + "handler_key": "output_plate", + "label": "已设定液体板" + }, + { + "data_key": "wells.@flatten", + "data_source": "executor", + "data_type": "resource", + "handler_key": "output_wells", + "label": "已设定液体孔" + }, + { + "data_key": "volumes", + "data_source": "executor", + "data_type": "number_array", + "handler_key": "output_volumes", + "label": "各孔设定体积" + } + ] + }, + "placeholder_keys": { + "plate": "unilabos_resources" + }, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "liquid_names": { + "items": { + "type": "string" + }, + "type": "array", + "title": "liquid_names", + "description": "" + }, + "plate": { + "additionalProperties": false, + "properties": { + "category": { + "type": "string" + }, + "children": { + "items": { + "type": "string" + }, + "type": "array" + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + }, + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "parent": { + "type": "string" + }, + "pose": { + "additionalProperties": false, + "properties": { + "orientation": { + "additionalProperties": false, + "properties": { + "w": { + "maximum": 1.7976931348623157e+308, + "minimum": -1.7976931348623157e+308, + "type": "number" + }, + "x": { + "maximum": 1.7976931348623157e+308, + "minimum": -1.7976931348623157e+308, + "type": "number" + }, + "y": { + "maximum": 1.7976931348623157e+308, + "minimum": -1.7976931348623157e+308, + "type": "number" + }, + "z": { + "maximum": 1.7976931348623157e+308, + "minimum": -1.7976931348623157e+308, + "type": "number" + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "type": "object" + }, + "position": { + "additionalProperties": false, + "properties": { + "x": { + "maximum": 1.7976931348623157e+308, + "minimum": -1.7976931348623157e+308, + "type": "number" + }, + "y": { + "maximum": 1.7976931348623157e+308, + "minimum": -1.7976931348623157e+308, + "type": "number" + }, + "z": { + "maximum": 1.7976931348623157e+308, + "minimum": -1.7976931348623157e+308, + "type": "number" + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "type": "object" + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "type": "object" + }, + "sample_id": { + "type": "string" + }, + "type": { + "type": "string" + } + }, + "title": "plate", + "type": "object", + "description": "" + }, + "volumes": { + "items": { + "type": "number" + }, + "type": "array", + "title": "volumes", + "description": "" + }, + "well_names": { + "items": { + "type": "string" + }, + "type": "array", + "title": "well_names", + "description": "" + } + }, + "required": [ + "plate", + "well_names", + "liquid_names", + "volumes" + ], + "type": "object", + "_unilabos_placeholder_info": { + "plate": "unilabos_resources" + } + }, + "result": { + "$defs": { + "ResourceDict": { + "properties": { + "class": { + "description": "Resource class name", + "title": "Class", + "type": "string" + }, + "config": { + "additionalProperties": true, + "description": "Resource configuration", + "title": "Config", + "type": "object" + }, + "data": { + "additionalProperties": true, + "description": "Resource data, eg: container liquid data", + "title": "Data", + "type": "object" + }, + "description": { + "default": "", + "description": "Resource description", + "title": "Description", + "type": "string" + }, + "extra": { + "additionalProperties": true, + "description": "Extra data, eg: slot index", + "title": "Extra", + "type": "object" + }, + "icon": { + "default": "", + "description": "Resource icon", + "title": "Icon", + "type": "string" + }, + "id": { + "description": "Resource ID", + "title": "Id", + "type": "string" + }, + "machine_name": { + "default": "", + "description": "Machine this resource belongs to", + "title": "Machine Name", + "type": "string" + }, + "model": { + "additionalProperties": true, + "description": "Resource model", + "title": "Model", + "type": "object" + }, + "name": { + "description": "Resource name", + "title": "Name", + "type": "string" + }, + "parent": { + "anyOf": [ + { + "$ref": "#/$defs/ResourceDict" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Parent resource object" + }, + "parent_uuid": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Parent resource uuid", + "title": "Parent Uuid" + }, + "pose": { + "$ref": "#/$defs/ResourceDictPosition", + "description": "Resource position" + }, + "schema": { + "additionalProperties": true, + "description": "Resource schema", + "title": "Schema", + "type": "object" + }, + "type": { + "anyOf": [ + { + "const": "device", + "type": "string" + }, + { + "type": "string" + } + ], + "description": "Resource type", + "title": "Type" + }, + "uuid": { + "description": "Resource UUID", + "title": "Uuid", + "type": "string" + } + }, + "required": [ + "id", + "uuid", + "name", + "type", + "class", + "config", + "data", + "extra" + ], + "title": "ResourceDict", + "type": "object" + }, + "ResourceDictPosition": { + "properties": { + "cross_section_type": { + "default": "rectangle", + "description": "Cross section type", + "enum": [ + "rectangle", + "circle", + "rounded_rectangle" + ], + "title": "Cross Section Type", + "type": "string" + }, + "extra": { + "anyOf": [ + { + "additionalProperties": true, + "type": "object" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Extra data", + "title": "Extra" + }, + "layout": { + "default": "x-y", + "description": "Resource layout", + "enum": [ + "2d", + "x-y", + "z-y", + "x-z" + ], + "title": "Layout", + "type": "string" + }, + "position": { + "$ref": "#/$defs/ResourceDictPositionObject", + "description": "Resource position" + }, + "position3d": { + "$ref": "#/$defs/ResourceDictPositionObject", + "description": "Resource position in 3D space" + }, + "rotation": { + "$ref": "#/$defs/ResourceDictPositionObject", + "description": "Resource rotation" + }, + "scale": { + "$ref": "#/$defs/ResourceDictPositionScale", + "description": "Resource scale" + }, + "size": { + "$ref": "#/$defs/ResourceDictPositionSize", + "description": "Resource size" + } + }, + "title": "ResourceDictPosition", + "type": "object" + }, + "ResourceDictPositionObject": { + "properties": { + "x": { + "default": 0.0, + "description": "X coordinate", + "title": "X", + "type": "number" + }, + "y": { + "default": 0.0, + "description": "Y coordinate", + "title": "Y", + "type": "number" + }, + "z": { + "default": 0.0, + "description": "Z coordinate", + "title": "Z", + "type": "number" + } + }, + "title": "ResourceDictPositionObject", + "type": "object" + }, + "ResourceDictPositionScale": { + "properties": { + "x": { + "default": 0.0, + "description": "x scale", + "title": "X", + "type": "number" + }, + "y": { + "default": 0.0, + "description": "y scale", + "title": "Y", + "type": "number" + }, + "z": { + "default": 0.0, + "description": "z scale", + "title": "Z", + "type": "number" + } + }, + "title": "ResourceDictPositionScale", + "type": "object" + }, + "ResourceDictPositionSize": { + "properties": { + "depth": { + "default": 0.0, + "description": "Depth", + "title": "Depth", + "type": "number" + }, + "height": { + "default": 0.0, + "description": "Height", + "title": "Height", + "type": "number" + }, + "width": { + "default": 0.0, + "description": "Width", + "title": "Width", + "type": "number" + } + }, + "title": "ResourceDictPositionSize", + "type": "object" + } + }, + "properties": { + "plate": { + "items": { + "items": { + "$ref": "#/$defs/ResourceDict" + }, + "type": "array" + }, + "title": "Plate", + "type": "array" + }, + "volumes": { + "items": { + "type": "number" + }, + "title": "Volumes", + "type": "array" + }, + "wells": { + "items": { + "items": { + "$ref": "#/$defs/ResourceDict" + }, + "type": "array" + }, + "title": "Wells", + "type": "array" + } + }, + "required": [ + "plate", + "wells", + "volumes" + ], + "title": "SetLiquidFromPlateReturn", + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "set_liquid_from_plate参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "set_tiprack": { + "feedback": {}, + "goal": { + "tip_racks": "tip_racks" + }, + "goal_default": { + "tip_racks": [] + }, + "handles": {}, + "placeholder_keys": { + "tip_racks": "unilabos_resources" + }, + "result": { + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "LiquidHandlerSetTipRack", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "tip_racks": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position" + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + }, + "w": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation" + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose" + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ] + }, + "title": "tip_racks", + "description": "" + } + }, + "title": "LiquidHandlerSetTipRack_Goal", + "_unilabos_placeholder_info": { + "tip_racks": "unilabos_resources" + } + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "LiquidHandlerSetTipRack_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "LiquidHandlerSetTipRack_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "LiquidHandlerSetTipRack" + }, + "transfer": { + "goal": { + "aspiration_flow_rate": "aspiration_flow_rate", + "dispense_flow_rates": "dispense_flow_rates", + "ratios": "ratios", + "source": "source", + "source_vol": "source_vol", + "target_vols": "target_vols", + "targets": "targets" + }, + "goal_default": { + "from_vessel": "", + "to_vessel": "", + "volume": 0.0, + "amount": "", + "time": 0.0, + "viscous": false, + "rinsing_solvent": "", + "rinsing_volume": 0.0, + "rinsing_repeats": 0, + "solid": false + }, + "handles": {}, + "schema": { + "title": "Transfer", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "from_vessel": { + "type": "string", + "title": "from_vessel", + "description": "" + }, + "to_vessel": { + "type": "string", + "title": "to_vessel", + "description": "" + }, + "volume": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "volume", + "description": "" + }, + "amount": { + "type": "string", + "title": "amount", + "description": "" + }, + "time": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "time", + "description": "" + }, + "viscous": { + "type": "boolean", + "title": "viscous", + "description": "" + }, + "rinsing_solvent": { + "type": "string", + "title": "rinsing_solvent", + "description": "" + }, + "rinsing_volume": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "rinsing_volume", + "description": "" + }, + "rinsing_repeats": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "rinsing_repeats", + "description": "" + }, + "solid": { + "type": "boolean", + "title": "solid", + "description": "" + } + }, + "title": "Transfer_Goal" + }, + "feedback": { + "type": "object", + "additionalProperties": false, + "properties": { + "progress": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "transferred_volume": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "current_status": { + "type": "string" + } + }, + "title": "Transfer_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "success": { + "type": "boolean" + }, + "message": { + "type": "string" + }, + "return_info": { + "type": "string" + } + }, + "title": "Transfer_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "Transfer" + }, + "transfer_liquid": { + "feedback": {}, + "goal": { + "asp_flow_rates": "asp_flow_rates", + "asp_vols": "asp_vols", + "blow_out_air_volume": "blow_out_air_volume", + "delays": "delays", + "dis_flow_rates": "dis_flow_rates", + "dis_vols": "dis_vols", + "is_96_well": "is_96_well", + "liquid_height": "liquid_height", + "mix_liquid_height": "mix_liquid_height", + "mix_rate": "mix_rate", + "mix_stage": "mix_stage", + "mix_times": "mix_times", + "mix_vol": "mix_vol", + "none_keys": "none_keys", + "offsets": "offsets", + "sources": "sources", + "spread": "spread", + "targets": "targets", + "tip_racks": "tip_racks", + "touch_tip": "touch_tip", + "use_channels": "use_channels" + }, + "goal_default": { + "asp_vols": [], + "dis_vols": [], + "sources": [], + "targets": [], + "tip_racks": [], + "use_channels": [], + "asp_flow_rates": [], + "dis_flow_rates": [], + "offsets": [], + "touch_tip": false, + "liquid_height": [], + "blow_out_air_volume": [], + "spread": "", + "is_96_well": false, + "mix_stage": "", + "mix_times": 0, + "mix_vol": 0, + "mix_rate": 0, + "mix_liquid_height": 0.0, + "delays": [], + "none_keys": [] + }, + "handles": { + "input": [ + { + "data_key": "sources", + "data_source": "handle", + "data_type": "resource", + "handler_key": "sources_identifier", + "label": "待移动液体" + }, + { + "data_key": "targets", + "data_source": "handle", + "data_type": "resource", + "handler_key": "targets_identifier", + "label": "转移目标" + }, + { + "data_key": "tip_rack", + "data_source": "handle", + "data_type": "resource", + "handler_key": "tip_rack_identifier", + "label": "枪头盒" + } + ], + "output": [ + { + "data_key": "sources.@flatten", + "data_source": "executor", + "data_type": "resource", + "handler_key": "sources_out", + "label": "移液后源孔" + }, + { + "data_key": "targets.@flatten", + "data_source": "executor", + "data_type": "resource", + "handler_key": "targets_out", + "label": "移液后目标孔" + } + ] + }, + "placeholder_keys": { + "sources": "unilabos_resources", + "targets": "unilabos_resources", + "tip_racks": "unilabos_resources" + }, + "result": { + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "LiquidHandlerTransfer", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "asp_vols": { + "type": "array", + "items": { + "type": "number" + }, + "title": "asp_vols", + "description": "" + }, + "dis_vols": { + "type": "array", + "items": { + "type": "number" + }, + "title": "dis_vols", + "description": "" + }, + "sources": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position" + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + }, + "w": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation" + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose" + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ] + }, + "title": "sources", + "description": "" + }, + "targets": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position" + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + }, + "w": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation" + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose" + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ] + }, + "title": "targets", + "description": "" + }, + "tip_racks": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position" + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + }, + "w": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation" + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose" + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ] + }, + "title": "tip_racks", + "description": "" + }, + "use_channels": { + "type": "array", + "items": { + "type": "integer" + }, + "title": "use_channels", + "description": "" + }, + "asp_flow_rates": { + "type": "array", + "items": { + "type": "number" + }, + "title": "asp_flow_rates", + "description": "" + }, + "dis_flow_rates": { + "type": "array", + "items": { + "type": "number" + }, + "title": "dis_flow_rates", + "description": "" + }, + "offsets": { + "type": "array", + "items": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z" + ] + }, + "title": "offsets", + "description": "" + }, + "touch_tip": { + "type": "boolean", + "title": "touch_tip", + "description": "" + }, + "liquid_height": { + "type": "array", + "items": { + "type": "number" + }, + "title": "liquid_height", + "description": "" + }, + "blow_out_air_volume": { + "type": "array", + "items": { + "type": "number" + }, + "title": "blow_out_air_volume", + "description": "" + }, + "spread": { + "type": "string", + "title": "spread", + "description": "" + }, + "is_96_well": { + "type": "boolean", + "title": "is_96_well", + "description": "" + }, + "mix_stage": { + "type": "string", + "title": "mix_stage", + "description": "" + }, + "mix_times": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "mix_times", + "description": "" + }, + "mix_vol": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "mix_vol", + "description": "" + }, + "mix_rate": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "mix_rate", + "description": "" + }, + "mix_liquid_height": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "mix_liquid_height", + "description": "" + }, + "delays": { + "type": "array", + "items": { + "type": "integer" + }, + "title": "delays", + "description": "" + }, + "none_keys": { + "type": "array", + "items": { + "type": "string" + }, + "title": "none_keys", + "description": "" + } + }, + "title": "LiquidHandlerTransfer_Goal", + "_unilabos_placeholder_info": { + "sources": "unilabos_resources", + "targets": "unilabos_resources", + "tip_racks": "unilabos_resources" + } + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "LiquidHandlerTransfer_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "LiquidHandlerTransfer_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "LiquidHandlerTransfer" + } + }, + "module": "unilabos.devices.liquid_handling.prcxi.prcxi:PRCXI9300Handler", + "status_types": { + "reset_ok": "Bool" + }, + "type": "python" + }, + "config_info": [], + "description": "prcxi液体处理器设备,基于pylabrobot控制", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/devices/liquid_handler.yaml", + "handles": [], + "icon": "icon_yiyezhan.webp", + "init_param_schema": { + "config": { + "properties": { + "axis": { + "default": "Left", + "type": "string" + }, + "channel_num": { + "default": 8, + "type": "string" + }, + "debug": { + "default": false, + "type": "string" + }, + "deck": { + "type": "object" + }, + "host": { + "type": "string" + }, + "is_9320": { + "default": false, + "type": "string" + }, + "matrix_id": { + "default": "", + "type": "string" + }, + "port": { + "type": "integer" + }, + "setup": { + "default": true, + "type": "string" + }, + "simulator": { + "default": false, + "type": "string" + }, + "step_mode": { + "default": false, + "type": "string" + }, + "timeout": { + "type": "number" + } + }, + "required": [ + "deck", + "host", + "port", + "timeout" + ], + "type": "object" + }, + "data": { + "properties": { + "reset_ok": { + "type": "boolean" + } + }, + "required": [ + "reset_ok" + ], + "type": "object" + } + }, + "registry_type": "device", + "version": "1.0.0" + }, + { + "id": "liquid_handler.revvity", + "category": [ + "liquid_handler" + ], + "class": { + "action_value_mappings": { + "run": { + "feedback": { + "gantt": "gantt", + "status": "status" + }, + "goal": { + "file_path": "file_path", + "params": "params", + "resource": "resource", + "wf_name": "wf_name" + }, + "goal_default": { + "wf_name": "", + "params": "", + "resource": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + } + }, + "handles": {}, + "placeholder_keys": {}, + "result": { + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "WorkStationRun", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "wf_name": { + "type": "string", + "title": "wf_name", + "description": "" + }, + "params": { + "type": "string", + "title": "params", + "description": "" + }, + "resource": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "resource", + "additionalProperties": false, + "description": "" + } + }, + "title": "WorkStationRun_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": false, + "properties": { + "status": { + "type": "string" + }, + "gantt": { + "type": "string" + } + }, + "title": "WorkStationRun_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "WorkStationRun_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "WorkStationRun" + } + }, + "module": "unilabos.devices.liquid_handling.revvity:Revvity", + "status_types": { + "status": "String", + "success": "Bool" + }, + "type": "python" + }, + "config_info": [], + "description": "", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/devices/liquid_handler.yaml", + "handles": [], + "icon": "", + "init_param_schema": { + "config": { + "properties": {}, + "required": [], + "type": "object" + }, + "data": { + "properties": { + "status": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "required": [ + "status", + "success" + ], + "type": "object" + } + }, + "registry_type": "device", + "version": "1.0.0" + }, + { + "id": "hplc.agilent", + "category": [ + "characterization_chromatic" + ], + "class": { + "action_value_mappings": { + "auto-check_status": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "检查安捷伦HPLC设备状态的函数。用于监控设备的运行状态、连接状态、错误信息等关键指标。该函数定期查询设备状态,确保系统稳定运行,及时发现和报告设备异常。适用于自动化流程中的设备监控、故障诊断、系统维护等场景。", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "check_status参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-extract_data_from_txt": { + "feedback": {}, + "goal": {}, + "goal_default": { + "file_path": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "从文本文件中提取分析数据的函数。用于解析安捷伦HPLC生成的结果文件,提取峰面积、保留时间、浓度等关键分析数据。支持多种文件格式的自动识别和数据结构化处理,为后续数据分析和报告生成提供标准化的数据格式。适用于批量数据处理、结果验证、质量控制等分析工作流程。", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "file_path": { + "type": "string", + "title": "file_path", + "description": "" + } + }, + "required": [ + "file_path" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "extract_data_from_txt参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-start_sequence": { + "feedback": {}, + "goal": {}, + "goal_default": { + "params": null, + "resource": null, + "wf_name": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "启动安捷伦HPLC分析序列的函数。用于执行预定义的分析方法序列,包括样品进样、色谱分离、检测等完整的分析流程。支持参数配置、资源分配、工作流程管理等功能,实现全自动的样品分析。适用于批量样品处理、标准化分析、质量检测等需要连续自动分析的应用场景。", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "params": { + "type": "string", + "title": "params", + "description": "" + }, + "resource": { + "type": "object", + "title": "resource", + "description": "" + }, + "wf_name": { + "type": "string", + "title": "wf_name", + "description": "" + } + }, + "required": [ + "wf_name" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "start_sequence参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-try_close_sub_device": { + "feedback": {}, + "goal": {}, + "goal_default": { + "device_name": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "尝试关闭HPLC子设备的函数。用于安全地关闭泵、检测器、进样器等各个子模块,确保设备正常断开连接并保护硬件安全。该函数提供错误处理和状态确认机制,避免强制关闭可能造成的设备损坏。适用于设备维护、系统重启、紧急停机等需要安全关闭设备的场景。", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "device_name": { + "type": "string", + "title": "device_name", + "description": "" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "try_close_sub_device参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-try_open_sub_device": { + "feedback": {}, + "goal": {}, + "goal_default": { + "device_name": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "尝试打开HPLC子设备的函数。用于初始化和连接泵、检测器、进样器等各个子模块,建立设备通信并进行自检。该函数提供连接验证和错误恢复机制,确保子设备正常启动并准备就绪。适用于设备初始化、系统启动、设备重连等需要建立设备连接的场景。", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "device_name": { + "type": "string", + "title": "device_name", + "description": "" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "try_open_sub_device参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "execute_command_from_outer": { + "feedback": {}, + "goal": { + "command": "command" + }, + "goal_default": { + "command": "" + }, + "handles": {}, + "result": { + "success": "success" + }, + "schema": { + "title": "SendCmd", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "command": { + "type": "string", + "title": "command", + "description": "" + } + }, + "title": "SendCmd_Goal" + }, + "feedback": { + "type": "object", + "additionalProperties": false, + "properties": { + "status": { + "type": "string" + } + }, + "title": "SendCmd_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "SendCmd_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "SendCmd" + } + }, + "module": "unilabos.devices.hplc.AgilentHPLC:HPLCDriver", + "status_types": { + "could_run": "Bool", + "device_status": "String", + "driver_init_ok": "Bool", + "finish_status": "String", + "is_running": "Bool", + "status_text": "String", + "success": "Bool" + }, + "type": "python" + }, + "config_info": [], + "description": "安捷伦高效液相色谱(HPLC)分析设备,用于复杂化合物的分离、检测和定量分析。该设备通过UI自动化技术控制安捷伦ChemStation软件,实现全自动的样品分析流程。具备序列启动、设备状态监控、数据文件提取、结果处理等功能。支持多样品批量处理和实时状态反馈,适用于药物分析、环境检测、食品安全、化学研究等需要高精度色谱分析的实验室应用。", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/devices/characterization_chromatic.yaml", + "handles": [], + "icon": "", + "init_param_schema": { + "config": { + "properties": { + "driver_debug": { + "default": false, + "type": "string" + } + }, + "required": [], + "type": "object" + }, + "data": { + "properties": { + "could_run": { + "type": "boolean" + }, + "device_status": { + "type": "string" + }, + "driver_init_ok": { + "type": "boolean" + }, + "finish_status": { + "type": "string" + }, + "is_running": { + "type": "boolean" + }, + "status_text": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "required": [ + "could_run", + "device_status", + "driver_init_ok", + "finish_status", + "is_running", + "status_text", + "success" + ], + "type": "object" + } + }, + "registry_type": "device", + "version": "1.0.0" + }, + { + "id": "hplc.agilent-zhida", + "category": [ + "characterization_chromatic" + ], + "class": { + "action_value_mappings": { + "abort": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": { + "return_info": "return_info" + }, + "schema": { + "title": "EmptyIn", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": true, + "title": "EmptyIn_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "EmptyIn_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + } + }, + "title": "EmptyIn_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "EmptyIn" + }, + "auto-close": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "HPLC设备连接关闭函数。安全地断开与智达HPLC设备的TCP socket连接,释放网络资源。该函数确保连接的正确关闭,避免网络资源泄露。通常在设备使用完毕或系统关闭时调用。", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "close参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-connect": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "HPLC设备连接建立函数。与智达HPLC设备建立TCP socket通信连接,配置通信超时参数。该函数是设备使用前的必要步骤,建立成功后可进行状态查询、方法获取、任务启动等操作。连接失败时会抛出异常。", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "connect参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "get_methods": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "result": {}, + "schema": { + "title": "EmptyIn", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": true, + "title": "EmptyIn_Goal" + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "EmptyIn_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + } + }, + "title": "EmptyIn_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "EmptyIn" + }, + "start": { + "feedback": {}, + "goal": { + "string": "string", + "text": "text" + }, + "goal_default": { + "string": "" + }, + "handles": {}, + "placeholder_keys": {}, + "result": { + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "StrSingleInput", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "string": { + "type": "string", + "title": "string", + "description": "" + } + }, + "title": "StrSingleInput_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "StrSingleInput_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "StrSingleInput_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "StrSingleInput" + } + }, + "module": "unilabos.devices.zhida_hplc.zhida:ZhidaClient", + "status_types": { + "methods": "dict", + "status": "dict" + }, + "type": "python" + }, + "config_info": [], + "description": "智达高效液相色谱(HPLC)分析设备,用于实验室样品的分离、检测和定量分析。该设备通过TCP socket与HPLC控制系统通信,支持远程控制和状态监控。具备自动进样、梯度洗脱、多检测器数据采集等功能,可执行复杂的色谱分析方法。适用于化学分析、药物检测、环境监测、生物样品分析等需要高精度分离分析的实验室应用场景。", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/devices/characterization_chromatic.yaml", + "handles": [], + "icon": "", + "init_param_schema": { + "config": { + "properties": { + "host": { + "default": "192.168.1.47", + "type": "string" + }, + "port": { + "default": 5792, + "type": "string" + }, + "timeout": { + "default": 10.0, + "type": "string" + } + }, + "required": [], + "type": "object" + }, + "data": { + "properties": { + "methods": { + "type": "object" + }, + "status": { + "type": "object" + } + }, + "required": [ + "methods", + "status" + ], + "type": "object" + } + }, + "registry_type": "device", + "version": "1.0.0" + }, + { + "id": "separator.chinwe", + "category": [ + "separator", + "chinwe" + ], + "class": { + "action_value_mappings": { + "auto-connect": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "boolean" + } + }, + "required": [ + "goal" + ], + "title": "connect参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-disconnect": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "disconnect参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-execute_command_from_outer": { + "feedback": {}, + "goal": {}, + "goal_default": { + "command_dict": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "command_dict": { + "type": "object", + "title": "command_dict", + "description": "" + } + }, + "required": [ + "command_dict" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "boolean" + } + }, + "required": [ + "goal" + ], + "title": "execute_command_from_outer参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "motor_rotate_quarter": { + "feedback": {}, + "goal": { + "direction": "顺时针", + "motor_id": 4, + "speed": 60 + }, + "goal_default": { + "direction": "顺时针", + "motor_id": null, + "speed": 60 + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "电机旋转 1/4 圈", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "direction": { + "default": "顺时针", + "description": "旋转方向", + "type": "string", + "title": "direction" + }, + "motor_id": { + "description": "选择电机 (4:搅拌, 5:旋钮)", + "type": "integer", + "title": "motor_id" + }, + "speed": { + "default": 60, + "description": "速度 (RPM)", + "type": "integer", + "title": "speed" + } + }, + "required": [ + "motor_id" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "motor_rotate_quarter参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "motor_run_continuous": { + "feedback": {}, + "goal": { + "direction": "顺时针", + "motor_id": 4, + "speed": 60 + }, + "goal_default": { + "direction": "顺时针", + "motor_id": null, + "speed": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "电机一直旋转 (速度模式)", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "direction": { + "default": "顺时针", + "description": "旋转方向", + "type": "string", + "title": "direction" + }, + "motor_id": { + "description": "选择电机 (4:搅拌, 5:旋钮)", + "type": "integer", + "title": "motor_id" + }, + "speed": { + "description": "速度 (RPM)", + "type": "integer", + "title": "speed" + } + }, + "required": [ + "motor_id", + "speed" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "motor_run_continuous参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "motor_stop": { + "feedback": {}, + "goal": { + "motor_id": 4 + }, + "goal_default": { + "motor_id": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "停止指定步进电机", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "motor_id": { + "description": "选择电机", + "title": "注: 4=搅拌, 5=旋钮", + "type": "integer" + } + }, + "required": [ + "motor_id" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "motor_stop参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "pump_aspirate": { + "feedback": {}, + "goal": { + "pump_id": 1, + "valve_port": 1, + "volume": 1000 + }, + "goal_default": { + "pump_id": null, + "valve_port": null, + "volume": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "注射泵吸液", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "pump_id": { + "description": "选择泵", + "type": "integer", + "title": "pump_id" + }, + "valve_port": { + "description": "阀门端口", + "type": "integer", + "title": "valve_port" + }, + "volume": { + "description": "吸液步数", + "type": "integer", + "title": "volume" + } + }, + "required": [ + "pump_id", + "volume", + "valve_port" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "pump_aspirate参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "pump_dispense": { + "feedback": {}, + "goal": { + "pump_id": 1, + "valve_port": 1, + "volume": 1000 + }, + "goal_default": { + "pump_id": null, + "valve_port": null, + "volume": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "注射泵排液", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "pump_id": { + "description": "选择泵", + "type": "integer", + "title": "pump_id" + }, + "valve_port": { + "description": "阀门端口", + "type": "integer", + "title": "valve_port" + }, + "volume": { + "description": "排液步数", + "type": "integer", + "title": "volume" + } + }, + "required": [ + "pump_id", + "volume", + "valve_port" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "pump_dispense参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "pump_initialize": { + "feedback": {}, + "goal": { + "drain_port": 0, + "output_port": 0, + "pump_id": 1, + "speed": 10 + }, + "goal_default": { + "drain_port": 0, + "output_port": 0, + "pump_id": null, + "speed": 10 + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "初始化指定注射泵", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "drain_port": { + "default": 0, + "description": "排液口索引", + "type": "string", + "title": "drain_port" + }, + "output_port": { + "default": 0, + "description": "输出口索引", + "type": "string", + "title": "output_port" + }, + "pump_id": { + "description": "选择泵", + "title": "注: 1号泵, 2号泵, 3号泵", + "type": "integer" + }, + "speed": { + "default": 10, + "description": "运动速度", + "type": "string", + "title": "speed" + } + }, + "required": [ + "pump_id" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "pump_initialize参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "pump_valve": { + "feedback": {}, + "goal": { + "port": 1, + "pump_id": 1 + }, + "goal_default": { + "port": null, + "pump_id": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "切换指定泵的阀门端口", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "port": { + "description": "阀门端口号 (1-8)", + "type": "integer", + "title": "port" + }, + "pump_id": { + "description": "选择泵", + "type": "integer", + "title": "pump_id" + } + }, + "required": [ + "pump_id", + "port" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "pump_valve参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "wait_sensor_level": { + "feedback": {}, + "goal": { + "target_state": "有液", + "timeout": 30 + }, + "goal_default": { + "target_state": "有液", + "timeout": 30 + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "等待传感器液位条件", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "target_state": { + "default": "有液", + "description": "目标液位状态", + "type": "string", + "title": "target_state" + }, + "timeout": { + "default": 30, + "description": "超时时间 (秒)", + "type": "integer", + "title": "timeout" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "boolean" + } + }, + "required": [ + "goal" + ], + "title": "wait_sensor_level参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "wait_time": { + "feedback": {}, + "goal": { + "duration": 10 + }, + "goal_default": { + "duration": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "等待指定时间", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "duration": { + "description": "等待时间 (秒)", + "type": "integer", + "title": "duration" + } + }, + "required": [ + "duration" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "boolean" + } + }, + "required": [ + "goal" + ], + "title": "wait_time参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + } + }, + "module": "unilabos.devices.separator.chinwe:ChinweDevice", + "status_types": { + "is_connected": "Bool", + "sensor_level": "Bool", + "sensor_rssi": "Int64" + }, + "type": "python" + }, + "config_info": [], + "description": "ChinWe 简易工作站控制器 (3泵, 2电机, 1传感器)", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/devices/chinwe.yaml", + "handles": [], + "icon": "", + "init_param_schema": { + "config": { + "properties": { + "baudrate": { + "default": 9600, + "type": "integer" + }, + "motor_ids": { + "items": { + "type": "integer" + }, + "type": "array" + }, + "port": { + "default": "192.168.1.200:8899", + "type": "string" + }, + "pump_ids": { + "items": { + "type": "integer" + }, + "type": "array" + }, + "sensor_id": { + "default": 6, + "type": "integer" + }, + "sensor_threshold": { + "default": 300, + "type": "integer" + }, + "timeout": { + "default": 10.0, + "type": "number" + } + }, + "required": [], + "type": "object" + }, + "data": { + "properties": { + "is_connected": { + "type": "boolean" + }, + "sensor_level": { + "type": "boolean" + }, + "sensor_rssi": { + "type": "integer" + } + }, + "required": [ + "is_connected", + "sensor_level", + "sensor_rssi" + ], + "type": "object" + } + }, + "registry_type": "device", + "version": "2.1.0" + }, + { + "id": "post_process_station", + "category": [ + "post_process_station" + ], + "class": { + "action_value_mappings": { + "auto-load_config": { + "feedback": {}, + "goal": {}, + "goal_default": { + "config_path": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "config_path": { + "type": "string", + "title": "config_path", + "description": "" + } + }, + "required": [ + "config_path" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "load_config参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-print_cache_stats": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "print_cache_stats参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-set_node_value": { + "feedback": {}, + "goal": {}, + "goal_default": { + "name": null, + "value": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "name": { + "type": "string", + "title": "name", + "description": "" + }, + "value": { + "type": "string", + "title": "value", + "description": "" + } + }, + "required": [ + "name", + "value" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "set_node_value参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "disconnect": { + "feedback": { + "status": "status" + }, + "goal": { + "command": "command" + }, + "goal_default": { + "command": "" + }, + "handles": {}, + "placeholder_keys": {}, + "result": { + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "SendCmd", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "command": { + "type": "string", + "title": "command", + "description": "" + } + }, + "title": "SendCmd_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": false, + "properties": { + "status": { + "type": "string" + } + }, + "title": "SendCmd_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "SendCmd_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "SendCmd" + }, + "read_node": { + "feedback": { + "status": "status" + }, + "goal": { + "command": "command", + "node_name": "node_name" + }, + "goal_default": { + "command": "" + }, + "handles": {}, + "placeholder_keys": {}, + "result": { + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "SendCmd", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "command": { + "type": "string", + "title": "command", + "description": "" + } + }, + "title": "SendCmd_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": false, + "properties": { + "status": { + "type": "string" + } + }, + "title": "SendCmd_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "SendCmd_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "SendCmd" + }, + "trigger_cleaning_action": { + "feedback": {}, + "goal": { + "acetone_inner_wall_cleaning_count": "acetone_inner_wall_cleaning_count", + "acetone_inner_wall_cleaning_injection": "acetone_inner_wall_cleaning_injection", + "acetone_inner_wall_cleaning_waste_time": "acetone_inner_wall_cleaning_waste_time", + "acetone_outer_wall_cleaning_count": "acetone_outer_wall_cleaning_count", + "acetone_outer_wall_cleaning_injection": "acetone_outer_wall_cleaning_injection", + "acetone_outer_wall_cleaning_wait_time": "acetone_outer_wall_cleaning_wait_time", + "acetone_outer_wall_cleaning_waste_time": "acetone_outer_wall_cleaning_waste_time", + "acetone_pump_cleaning_suction_count": "acetone_pump_cleaning_suction_count", + "acetone_stirrer_cleaning_count": "acetone_stirrer_cleaning_count", + "acetone_stirrer_cleaning_injection": "acetone_stirrer_cleaning_injection", + "acetone_stirrer_cleaning_wait_time": "acetone_stirrer_cleaning_wait_time", + "acetone_stirrer_cleaning_waste_time": "acetone_stirrer_cleaning_waste_time", + "filtration_liquid_selection": "filtration_liquid_selection", + "injection_pump_forward_empty_suction_count": "injection_pump_forward_empty_suction_count", + "injection_pump_reverse_empty_suction_count": "injection_pump_reverse_empty_suction_count", + "nmp_inner_wall_cleaning_count": "nmp_inner_wall_cleaning_count", + "nmp_inner_wall_cleaning_injection": "nmp_inner_wall_cleaning_injection", + "nmp_inner_wall_cleaning_waste_time": "nmp_inner_wall_cleaning_waste_time", + "nmp_outer_wall_cleaning_count": "nmp_outer_wall_cleaning_count", + "nmp_outer_wall_cleaning_injection": "nmp_outer_wall_cleaning_injection", + "nmp_outer_wall_cleaning_wait_time": "nmp_outer_wall_cleaning_wait_time", + "nmp_outer_wall_cleaning_waste_time": "nmp_outer_wall_cleaning_waste_time", + "nmp_pump_cleaning_suction_count": "nmp_pump_cleaning_suction_count", + "nmp_stirrer_cleaning_count": "nmp_stirrer_cleaning_count", + "nmp_stirrer_cleaning_injection": "nmp_stirrer_cleaning_injection", + "nmp_stirrer_cleaning_wait_time": "nmp_stirrer_cleaning_wait_time", + "nmp_stirrer_cleaning_waste_time": "nmp_stirrer_cleaning_waste_time", + "pipe_blowing_time": "pipe_blowing_time", + "water_inner_wall_cleaning_count": "water_inner_wall_cleaning_count", + "water_inner_wall_cleaning_injection": "water_inner_wall_cleaning_injection", + "water_inner_wall_cleaning_waste_time": "water_inner_wall_cleaning_waste_time", + "water_outer_wall_cleaning_count": "water_outer_wall_cleaning_count", + "water_outer_wall_cleaning_injection": "water_outer_wall_cleaning_injection", + "water_outer_wall_cleaning_wait_time": "water_outer_wall_cleaning_wait_time", + "water_outer_wall_cleaning_waste_time": "water_outer_wall_cleaning_waste_time", + "water_pump_cleaning_suction_count": "water_pump_cleaning_suction_count", + "water_stirrer_cleaning_count": "water_stirrer_cleaning_count", + "water_stirrer_cleaning_injection": "water_stirrer_cleaning_injection", + "water_stirrer_cleaning_wait_time": "water_stirrer_cleaning_wait_time", + "water_stirrer_cleaning_waste_time": "water_stirrer_cleaning_waste_time" + }, + "goal_default": { + "nmp_outer_wall_cleaning_injection": 0.0, + "nmp_outer_wall_cleaning_count": 0, + "nmp_outer_wall_cleaning_wait_time": 0, + "nmp_outer_wall_cleaning_waste_time": 0, + "nmp_inner_wall_cleaning_injection": 0.0, + "nmp_inner_wall_cleaning_count": 0, + "nmp_pump_cleaning_suction_count": 0, + "nmp_inner_wall_cleaning_waste_time": 0, + "nmp_stirrer_cleaning_injection": 0.0, + "nmp_stirrer_cleaning_count": 0, + "nmp_stirrer_cleaning_wait_time": 0, + "nmp_stirrer_cleaning_waste_time": 0, + "water_outer_wall_cleaning_injection": 0.0, + "water_outer_wall_cleaning_count": 0, + "water_outer_wall_cleaning_wait_time": 0, + "water_outer_wall_cleaning_waste_time": 0, + "water_inner_wall_cleaning_injection": 0.0, + "water_inner_wall_cleaning_count": 0, + "water_pump_cleaning_suction_count": 0, + "water_inner_wall_cleaning_waste_time": 0, + "water_stirrer_cleaning_injection": 0.0, + "water_stirrer_cleaning_count": 0, + "water_stirrer_cleaning_wait_time": 0, + "water_stirrer_cleaning_waste_time": 0, + "acetone_outer_wall_cleaning_injection": 0.0, + "acetone_outer_wall_cleaning_count": 0, + "acetone_outer_wall_cleaning_wait_time": 0, + "acetone_outer_wall_cleaning_waste_time": 0, + "acetone_inner_wall_cleaning_injection": 0.0, + "acetone_inner_wall_cleaning_count": 0, + "acetone_pump_cleaning_suction_count": 0, + "acetone_inner_wall_cleaning_waste_time": 0, + "acetone_stirrer_cleaning_injection": 0.0, + "acetone_stirrer_cleaning_count": 0, + "acetone_stirrer_cleaning_wait_time": 0, + "acetone_stirrer_cleaning_waste_time": 0, + "pipe_blowing_time": 0, + "injection_pump_forward_empty_suction_count": 0, + "injection_pump_reverse_empty_suction_count": 0, + "filtration_liquid_selection": 0 + }, + "handles": {}, + "result": { + "return_info": "return_info" + }, + "schema": { + "title": "PostProcessTriggerClean", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "nmp_outer_wall_cleaning_injection": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "nmp_outer_wall_cleaning_injection", + "description": "" + }, + "nmp_outer_wall_cleaning_count": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "nmp_outer_wall_cleaning_count", + "description": "" + }, + "nmp_outer_wall_cleaning_wait_time": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "nmp_outer_wall_cleaning_wait_time", + "description": "" + }, + "nmp_outer_wall_cleaning_waste_time": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "nmp_outer_wall_cleaning_waste_time", + "description": "" + }, + "nmp_inner_wall_cleaning_injection": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "nmp_inner_wall_cleaning_injection", + "description": "" + }, + "nmp_inner_wall_cleaning_count": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "nmp_inner_wall_cleaning_count", + "description": "" + }, + "nmp_pump_cleaning_suction_count": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "nmp_pump_cleaning_suction_count", + "description": "" + }, + "nmp_inner_wall_cleaning_waste_time": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "nmp_inner_wall_cleaning_waste_time", + "description": "" + }, + "nmp_stirrer_cleaning_injection": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "nmp_stirrer_cleaning_injection", + "description": "" + }, + "nmp_stirrer_cleaning_count": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "nmp_stirrer_cleaning_count", + "description": "" + }, + "nmp_stirrer_cleaning_wait_time": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "nmp_stirrer_cleaning_wait_time", + "description": "" + }, + "nmp_stirrer_cleaning_waste_time": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "nmp_stirrer_cleaning_waste_time", + "description": "" + }, + "water_outer_wall_cleaning_injection": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "water_outer_wall_cleaning_injection", + "description": "" + }, + "water_outer_wall_cleaning_count": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "water_outer_wall_cleaning_count", + "description": "" + }, + "water_outer_wall_cleaning_wait_time": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "water_outer_wall_cleaning_wait_time", + "description": "" + }, + "water_outer_wall_cleaning_waste_time": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "water_outer_wall_cleaning_waste_time", + "description": "" + }, + "water_inner_wall_cleaning_injection": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "water_inner_wall_cleaning_injection", + "description": "" + }, + "water_inner_wall_cleaning_count": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "water_inner_wall_cleaning_count", + "description": "" + }, + "water_pump_cleaning_suction_count": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "water_pump_cleaning_suction_count", + "description": "" + }, + "water_inner_wall_cleaning_waste_time": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "water_inner_wall_cleaning_waste_time", + "description": "" + }, + "water_stirrer_cleaning_injection": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "water_stirrer_cleaning_injection", + "description": "" + }, + "water_stirrer_cleaning_count": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "water_stirrer_cleaning_count", + "description": "" + }, + "water_stirrer_cleaning_wait_time": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "water_stirrer_cleaning_wait_time", + "description": "" + }, + "water_stirrer_cleaning_waste_time": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "water_stirrer_cleaning_waste_time", + "description": "" + }, + "acetone_outer_wall_cleaning_injection": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "acetone_outer_wall_cleaning_injection", + "description": "" + }, + "acetone_outer_wall_cleaning_count": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "acetone_outer_wall_cleaning_count", + "description": "" + }, + "acetone_outer_wall_cleaning_wait_time": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "acetone_outer_wall_cleaning_wait_time", + "description": "" + }, + "acetone_outer_wall_cleaning_waste_time": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "acetone_outer_wall_cleaning_waste_time", + "description": "" + }, + "acetone_inner_wall_cleaning_injection": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "acetone_inner_wall_cleaning_injection", + "description": "" + }, + "acetone_inner_wall_cleaning_count": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "acetone_inner_wall_cleaning_count", + "description": "" + }, + "acetone_pump_cleaning_suction_count": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "acetone_pump_cleaning_suction_count", + "description": "" + }, + "acetone_inner_wall_cleaning_waste_time": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "acetone_inner_wall_cleaning_waste_time", + "description": "" + }, + "acetone_stirrer_cleaning_injection": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "acetone_stirrer_cleaning_injection", + "description": "" + }, + "acetone_stirrer_cleaning_count": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "acetone_stirrer_cleaning_count", + "description": "" + }, + "acetone_stirrer_cleaning_wait_time": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "acetone_stirrer_cleaning_wait_time", + "description": "" + }, + "acetone_stirrer_cleaning_waste_time": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "acetone_stirrer_cleaning_waste_time", + "description": "" + }, + "pipe_blowing_time": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "pipe_blowing_time", + "description": "" + }, + "injection_pump_forward_empty_suction_count": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "injection_pump_forward_empty_suction_count", + "description": "" + }, + "injection_pump_reverse_empty_suction_count": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "injection_pump_reverse_empty_suction_count", + "description": "" + }, + "filtration_liquid_selection": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "filtration_liquid_selection", + "description": "" + } + }, + "title": "PostProcessTriggerClean_Goal" + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "PostProcessTriggerClean_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + } + }, + "title": "PostProcessTriggerClean_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "PostProcessTriggerClean" + }, + "trigger_grab_action": { + "feedback": {}, + "goal": { + "raw_tank_number": "raw_tank_number", + "reaction_tank_number": "reaction_tank_number" + }, + "goal_default": { + "reaction_tank_number": 0, + "raw_tank_number": 0 + }, + "handles": {}, + "result": { + "return_info": "return_info" + }, + "schema": { + "title": "PostProcessGrab", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "reaction_tank_number": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "reaction_tank_number", + "description": "" + }, + "raw_tank_number": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "raw_tank_number", + "description": "" + } + }, + "title": "PostProcessGrab_Goal" + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "PostProcessGrab_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + } + }, + "title": "PostProcessGrab_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "PostProcessGrab" + }, + "trigger_post_processing": { + "feedback": {}, + "goal": { + "atomization_fast_speed": "atomization_fast_speed", + "atomization_pressure_kpa": "atomization_pressure_kpa", + "first_powder_mixing_tim": "first_powder_mixing_tim", + "first_powder_wash_count": "first_powder_wash_count", + "first_wash_water_amount": "first_wash_water_amount", + "initial_water_amount": "initial_water_amount", + "injection_pump_push_speed": "injection_pump_push_speed", + "injection_pump_suction_speed": "injection_pump_suction_speed", + "pre_filtration_mixing_time": "pre_filtration_mixing_time", + "raw_liquid_suction_count": "raw_liquid_suction_count", + "second_powder_mixing_time": "second_powder_mixing_time", + "second_powder_wash_count": "second_powder_wash_count", + "second_wash_water_amount": "second_wash_water_amount", + "wash_slow_speed": "wash_slow_speed" + }, + "goal_default": { + "atomization_fast_speed": 0.0, + "wash_slow_speed": 0.0, + "injection_pump_suction_speed": 0, + "injection_pump_push_speed": 0, + "raw_liquid_suction_count": 0, + "first_wash_water_amount": 0.0, + "second_wash_water_amount": 0.0, + "first_powder_mixing_tim": 0, + "second_powder_mixing_time": 0, + "first_powder_wash_count": 0, + "second_powder_wash_count": 0, + "initial_water_amount": 0.0, + "pre_filtration_mixing_time": 0, + "atomization_pressure_kpa": 0 + }, + "handles": {}, + "result": { + "return_info": "return_info" + }, + "schema": { + "title": "PostProcessTriggerPostPro", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "atomization_fast_speed": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "atomization_fast_speed", + "description": "" + }, + "wash_slow_speed": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "wash_slow_speed", + "description": "" + }, + "injection_pump_suction_speed": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "injection_pump_suction_speed", + "description": "" + }, + "injection_pump_push_speed": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "injection_pump_push_speed", + "description": "" + }, + "raw_liquid_suction_count": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "raw_liquid_suction_count", + "description": "" + }, + "first_wash_water_amount": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "first_wash_water_amount", + "description": "" + }, + "second_wash_water_amount": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "second_wash_water_amount", + "description": "" + }, + "first_powder_mixing_tim": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "first_powder_mixing_tim", + "description": "" + }, + "second_powder_mixing_time": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "second_powder_mixing_time", + "description": "" + }, + "first_powder_wash_count": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "first_powder_wash_count", + "description": "" + }, + "second_powder_wash_count": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "second_powder_wash_count", + "description": "" + }, + "initial_water_amount": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "initial_water_amount", + "description": "" + }, + "pre_filtration_mixing_time": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "pre_filtration_mixing_time", + "description": "" + }, + "atomization_pressure_kpa": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "atomization_pressure_kpa", + "description": "" + } + }, + "title": "PostProcessTriggerPostPro_Goal" + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "PostProcessTriggerPostPro_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + } + }, + "title": "PostProcessTriggerPostPro_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "PostProcessTriggerPostPro" + }, + "write_node": { + "feedback": { + "result": "result" + }, + "goal": { + "command": "json_input" + }, + "goal_default": { + "command": "" + }, + "handles": {}, + "result": { + "success": "success" + }, + "schema": { + "title": "SendCmd", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "command": { + "type": "string", + "title": "command", + "description": "" + } + }, + "title": "SendCmd_Goal" + }, + "feedback": { + "type": "object", + "additionalProperties": false, + "properties": { + "status": { + "type": "string" + } + }, + "title": "SendCmd_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "SendCmd_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "SendCmd" + } + }, + "module": "unilabos.devices.workstation.post_process.post_process:OpcUaClient", + "status_types": { + "cache_stats": "String" + }, + "type": "python" + }, + "config_info": [], + "description": "后处理站", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/devices/post_process_station.yaml", + "handles": [], + "icon": "post_process_station.webp", + "init_param_schema": { + "config": { + "properties": { + "cache_timeout": { + "default": 5.0, + "type": "number" + }, + "config_path": { + "type": "string" + }, + "deck": { + "anyOf": [ + { + "type": "object" + }, + { + "type": "object" + } + ] + }, + "password": { + "type": "string" + }, + "subscription_interval": { + "default": 500, + "type": "integer" + }, + "url": { + "type": "string" + }, + "use_subscription": { + "default": true, + "type": "boolean" + }, + "username": { + "type": "string" + } + }, + "required": [ + "url" + ], + "type": "object" + }, + "data": { + "properties": { + "cache_stats": { + "type": "object" + } + }, + "required": [ + "cache_stats" + ], + "type": "object" + } + }, + "registry_type": "device", + "version": "1.0.0" + }, + { + "id": "rotavap.one", + "category": [ + "organic_miscellaneous" + ], + "class": { + "action_value_mappings": { + "auto-cmd_write": { + "feedback": {}, + "goal": {}, + "goal_default": { + "cmd": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "cmd_write的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "cmd": { + "type": "string", + "title": "cmd", + "description": "" + } + }, + "required": [ + "cmd" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "cmd_write参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-main_loop": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "main_loop的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "main_loop参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-set_pump_time": { + "feedback": {}, + "goal": {}, + "goal_default": { + "time": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "set_pump_time的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "time": { + "type": "string", + "title": "time", + "description": "" + } + }, + "required": [ + "time" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "set_pump_time参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-set_rotate_time": { + "feedback": {}, + "goal": {}, + "goal_default": { + "time": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "set_rotate_time的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "time": { + "type": "string", + "title": "time", + "description": "" + } + }, + "required": [ + "time" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "set_rotate_time参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "set_timer": { + "feedback": { + "status": "status" + }, + "goal": { + "command": "command" + }, + "goal_default": { + "command": "" + }, + "handles": {}, + "placeholder_keys": {}, + "result": { + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "SendCmd", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "command": { + "type": "string", + "title": "command", + "description": "" + } + }, + "title": "SendCmd_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": false, + "properties": { + "status": { + "type": "string" + } + }, + "title": "SendCmd_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "SendCmd_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "SendCmd" + } + }, + "module": "unilabos.devices.rotavap.rotavap_one:RotavapOne", + "status_types": {}, + "type": "python" + }, + "config_info": [], + "description": "旋转蒸发仪设备,用于有机化学实验中的溶剂回收和浓缩操作。该设备通过串口通信控制,集成旋转和真空泵功能,支持定时控制和自动化操作。具备旋转速度调节、真空度控制、温度管理等功能,实现高效的溶剂蒸发和回收。适用于有机合成、天然产物提取、药物制备等需要溶剂去除和浓缩的实验室应用场景。", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/devices/organic_miscellaneous.yaml", + "handles": [], + "icon": "", + "init_param_schema": { + "config": { + "properties": { + "port": { + "type": "string" + }, + "rate": { + "default": 9600, + "type": "string" + } + }, + "required": [ + "port" + ], + "type": "object" + }, + "data": { + "properties": {}, + "required": [], + "type": "object" + } + }, + "registry_type": "device", + "version": "1.0.0" + }, + { + "id": "separator.homemade", + "category": [ + "organic_miscellaneous" + ], + "class": { + "action_value_mappings": { + "auto-read_sensor_loop": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "read_sensor_loop的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "read_sensor_loop参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-valve_open": { + "feedback": {}, + "goal": {}, + "goal_default": { + "condition": null, + "value": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "valve_open的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "condition": { + "type": "string", + "title": "condition", + "description": "" + }, + "value": { + "type": "string", + "title": "value", + "description": "" + } + }, + "required": [ + "condition", + "value" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "valve_open参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-write": { + "feedback": {}, + "goal": {}, + "goal_default": { + "data": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "write的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "data": { + "type": "string", + "title": "data", + "description": "" + } + }, + "required": [ + "data" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "write参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "stir": { + "feedback": { + "status": "status" + }, + "goal": { + "event": "event", + "settling_time": "settling_time", + "stir_speed": "stir_speed", + "stir_time": "stir_time", + "time": "time", + "time_spec": "time_spec", + "vessel": "vessel" + }, + "goal_default": { + "vessel": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + }, + "time": "", + "event": "", + "time_spec": "", + "stir_time": 0.0, + "stir_speed": 0.0, + "settling_time": "" + }, + "handles": {}, + "placeholder_keys": {}, + "result": { + "message": "message", + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "Stir", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "vessel": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "vessel", + "additionalProperties": false, + "description": "" + }, + "time": { + "type": "string", + "title": "time", + "description": "" + }, + "event": { + "type": "string", + "title": "event", + "description": "" + }, + "time_spec": { + "type": "string", + "title": "time_spec", + "description": "" + }, + "stir_time": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "stir_time", + "description": "" + }, + "stir_speed": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "stir_speed", + "description": "" + }, + "settling_time": { + "type": "string", + "title": "settling_time", + "description": "" + } + }, + "title": "Stir_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": false, + "properties": { + "status": { + "type": "string" + } + }, + "title": "Stir_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "success": { + "type": "boolean" + }, + "message": { + "type": "string" + }, + "return_info": { + "type": "string" + } + }, + "title": "Stir_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "Stir" + }, + "valve_open_cmd": { + "feedback": { + "status": "status" + }, + "goal": { + "command": "command" + }, + "goal_default": { + "command": "" + }, + "handles": {}, + "placeholder_keys": {}, + "result": { + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "SendCmd", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "command": { + "type": "string", + "title": "command", + "description": "" + } + }, + "title": "SendCmd_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": false, + "properties": { + "status": { + "type": "string" + } + }, + "title": "SendCmd_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "SendCmd_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "SendCmd" + } + }, + "module": "unilabos.devices.separator.homemade_grbl_conductivity:SeparatorController", + "status_types": {}, + "type": "python" + }, + "config_info": [], + "description": "液-液分离器设备,基于自制Grbl控制器的自动化分离系统。该设备集成搅拌、沉降、阀门控制和电导率传感器,通过串口通信实现精确的分离操作控制。支持自动搅拌、分层沉降、基于传感器反馈的智能分液等功能。适用于有机化学中的萃取分离、相分离、液-液提取等需要精确分离控制的实验应用。", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/devices/organic_miscellaneous.yaml", + "handles": [], + "icon": "", + "init_param_schema": { + "config": { + "properties": { + "baudrate_executor": { + "default": 115200, + "type": "integer" + }, + "baudrate_sensor": { + "default": 115200, + "type": "integer" + }, + "port_executor": { + "type": "string" + }, + "port_sensor": { + "type": "string" + } + }, + "required": [ + "port_executor", + "port_sensor" + ], + "type": "object" + }, + "data": { + "properties": {}, + "required": [], + "type": "object" + } + }, + "registry_type": "device", + "version": "1.0.0" + }, + { + "id": "solid_dispenser.laiyu", + "category": [ + "solid_dispenser" + ], + "class": { + "action_value_mappings": { + "add_powder_tube": { + "feedback": {}, + "goal": { + "compound_mass": "compound_mass", + "powder_tube_number": "powder_tube_number", + "target_tube_position": "target_tube_position" + }, + "goal_default": { + "powder_tube_number": 0, + "target_tube_position": "", + "compound_mass": 0.0 + }, + "handles": {}, + "placeholder_keys": {}, + "result": { + "actual_mass_mg": "actual_mass_mg", + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "SolidDispenseAddPowderTube", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "powder_tube_number": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "powder_tube_number", + "description": "" + }, + "target_tube_position": { + "type": "string", + "title": "target_tube_position", + "description": "" + }, + "compound_mass": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "compound_mass", + "description": "" + } + }, + "title": "SolidDispenseAddPowderTube_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "SolidDispenseAddPowderTube_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "actual_mass_mg": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "success": { + "type": "boolean" + } + }, + "title": "SolidDispenseAddPowderTube_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "SolidDispenseAddPowderTube" + }, + "auto-calculate_crc": { + "feedback": {}, + "goal": {}, + "goal_default": { + "data": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "Modbus CRC-16校验码计算函数。计算Modbus RTU通信协议所需的CRC-16校验码,确保数据传输的完整性和可靠性。该函数实现标准的CRC-16算法,用于构造完整的Modbus指令帧。", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "data": { + "type": "object", + "title": "data", + "description": "" + } + }, + "required": [ + "data" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "calculate_crc参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-send_command": { + "feedback": {}, + "goal": {}, + "goal_default": { + "command": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "Modbus指令发送函数。构造完整的Modbus RTU指令帧(包含CRC校验),发送给分装设备并等待响应。该函数处理底层通信协议,确保指令的正确传输和响应接收,支持最长3分钟的响应等待时间。", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "command": { + "type": "object", + "title": "command", + "description": "" + } + }, + "required": [ + "command" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "send_command参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "discharge": { + "feedback": {}, + "goal": { + "float_in": "float_in" + }, + "goal_default": { + "float_in": 0.0 + }, + "handles": {}, + "placeholder_keys": {}, + "result": { + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "FloatSingleInput", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "float_in": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "float_in", + "description": "" + } + }, + "title": "FloatSingleInput_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "FloatSingleInput_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "FloatSingleInput_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "FloatSingleInput" + }, + "move_to_plate": { + "feedback": {}, + "goal": { + "string": "string" + }, + "goal_default": { + "string": "" + }, + "handles": {}, + "placeholder_keys": {}, + "result": { + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "StrSingleInput", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "string": { + "type": "string", + "title": "string", + "description": "" + } + }, + "title": "StrSingleInput_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "StrSingleInput_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "StrSingleInput_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "StrSingleInput" + }, + "move_to_xyz": { + "feedback": {}, + "goal": { + "x": "x", + "y": "y", + "z": "z" + }, + "goal_default": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "handles": {}, + "placeholder_keys": {}, + "result": { + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "Point3DSeparateInput", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "x", + "description": "" + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "y", + "description": "" + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "z", + "description": "" + } + }, + "title": "Point3DSeparateInput_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "Point3DSeparateInput_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "Point3DSeparateInput_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "Point3DSeparateInput" + }, + "pick_powder_tube": { + "feedback": {}, + "goal": { + "int_input": "int_input" + }, + "goal_default": { + "int_input": 0 + }, + "handles": {}, + "placeholder_keys": {}, + "result": { + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "IntSingleInput", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "int_input": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "int_input", + "description": "" + } + }, + "title": "IntSingleInput_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "IntSingleInput_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "IntSingleInput_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "IntSingleInput" + }, + "put_powder_tube": { + "feedback": {}, + "goal": { + "int_input": "int_input" + }, + "goal_default": { + "int_input": 0 + }, + "handles": {}, + "placeholder_keys": {}, + "result": { + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "IntSingleInput", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "int_input": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "int_input", + "description": "" + } + }, + "title": "IntSingleInput_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "IntSingleInput_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "IntSingleInput_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "IntSingleInput" + }, + "reset": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": { + "return_info": "return_info" + }, + "schema": { + "title": "EmptyIn", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": true, + "title": "EmptyIn_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "EmptyIn_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + } + }, + "title": "EmptyIn_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "EmptyIn" + } + }, + "module": "unilabos.devices.powder_dispense.laiyu:Laiyu", + "status_types": { + "status": "String" + }, + "type": "python" + }, + "config_info": [], + "description": "来渝固体粉末自动分装设备,用于实验室化学试剂的精确称量和分装。该设备通过Modbus RTU协议与控制系统通信,集成了精密天平、三轴运动平台、粉筒管理系统等组件。支持多种粉末试剂的自动拿取、精确称量、定点分装和归位操作。具备高精度称量、位置控制和批量处理能力,适用于化学合成、药物研发、材料制备等需要精确固体试剂配制的实验室应用场景。", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/devices/solid_dispenser.yaml", + "handles": [], + "icon": "", + "init_param_schema": { + "config": { + "properties": { + "baudrate": { + "default": 115200, + "type": "string" + }, + "port": { + "type": "string" + }, + "timeout": { + "default": 0.5, + "type": "string" + } + }, + "required": [ + "port" + ], + "type": "object" + }, + "data": { + "properties": { + "status": { + "type": "string" + } + }, + "required": [ + "status" + ], + "type": "object" + } + }, + "registry_type": "device", + "version": "1.0.0" + }, + { + "id": "solenoid_valve", + "category": [ + "pump_and_valve" + ], + "class": { + "action_value_mappings": { + "auto-close": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "close的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "close参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-is_closed": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "is_closed的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "is_closed参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-is_open": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "is_open的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "is_open参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-open": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "open参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-read_data": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "read_data的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "read_data参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-send_command": { + "feedback": {}, + "goal": {}, + "goal_default": { + "command": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "send_command的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "command": { + "type": "string", + "title": "command", + "description": "" + } + }, + "required": [ + "command" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "send_command参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "set_valve_position": { + "feedback": {}, + "goal": { + "position": "position", + "string": "string" + }, + "goal_default": { + "string": "" + }, + "handles": {}, + "placeholder_keys": {}, + "result": { + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "StrSingleInput", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "string": { + "type": "string", + "title": "string", + "description": "" + } + }, + "title": "StrSingleInput_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "StrSingleInput_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "StrSingleInput_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "StrSingleInput" + } + }, + "module": "unilabos.devices.pump_and_valve.solenoid_valve:SolenoidValve", + "status_types": { + "status": "String", + "valve_position": "String" + }, + "type": "python" + }, + "config_info": [], + "description": "电磁阀控制设备,用于精确的流体路径控制和开关操作。该设备通过串口通信控制电磁阀的开关状态,支持远程操作和状态监测。具备快速响应、可靠密封、状态反馈等特性,广泛应用于流体输送、样品进样、路径切换等需要精确流体控制的实验室自动化应用。", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/devices/pump_and_valve.yaml", + "handles": [], + "icon": "", + "init_param_schema": { + "config": { + "properties": { + "io_device_port": { + "type": "string" + } + }, + "required": [ + "io_device_port" + ], + "type": "object" + }, + "data": { + "properties": { + "status": { + "type": "string" + }, + "valve_position": { + "type": "string" + } + }, + "required": [ + "status", + "valve_position" + ], + "type": "object" + } + }, + "registry_type": "device", + "version": "1.0.0" + }, + { + "id": "solenoid_valve.mock", + "category": [ + "pump_and_valve" + ], + "class": { + "action_value_mappings": { + "auto-is_closed": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "is_closed的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "is_closed参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-is_open": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "is_open的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "is_open参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-set_valve_position": { + "feedback": {}, + "goal": {}, + "goal_default": { + "position": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "set_valve_position的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "position": { + "type": "string", + "title": "position", + "description": "" + } + }, + "required": [ + "position" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "set_valve_position参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "close": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": { + "return_info": "return_info" + }, + "schema": { + "title": "EmptyIn", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": true, + "title": "EmptyIn_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "EmptyIn_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + } + }, + "title": "EmptyIn_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "EmptyIn" + }, + "open": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": { + "return_info": "return_info" + }, + "schema": { + "title": "EmptyIn", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": true, + "title": "EmptyIn_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "EmptyIn_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + } + }, + "title": "EmptyIn_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "EmptyIn" + } + }, + "module": "unilabos.devices.pump_and_valve.solenoid_valve_mock:SolenoidValveMock", + "status_types": { + "status": "String", + "valve_position": "String" + }, + "type": "python" + }, + "config_info": [], + "description": "模拟电磁阀设备,用于系统测试和开发调试。该设备模拟真实电磁阀的开关操作和状态变化,提供与实际设备相同的控制接口和反馈机制。支持流体路径的虚拟控制,便于在没有实际硬件的情况下进行流体系统的集成测试和算法验证。适用于系统开发、流程调试和培训演示等场景。", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/devices/pump_and_valve.yaml", + "handles": [ + { + "data_type": "fluid", + "handler_key": "in", + "io_type": "target", + "label": "in", + "side": "NORTH" + }, + { + "data_type": "fluid", + "handler_key": "out", + "io_type": "source", + "label": "out", + "side": "SOUTH" + } + ], + "icon": "", + "init_param_schema": { + "config": { + "properties": { + "port": { + "default": "COM6", + "type": "string" + } + }, + "required": [], + "type": "object" + }, + "data": { + "properties": { + "status": { + "type": "string" + }, + "valve_position": { + "type": "string" + } + }, + "required": [ + "status", + "valve_position" + ], + "type": "object" + } + }, + "registry_type": "device", + "version": "1.0.0" + }, + { + "id": "syringe_pump_with_valve.runze.SY03B-T06", + "category": [ + "pump_and_valve" + ], + "class": { + "action_value_mappings": { + "auto-close": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "close的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "close参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-initialize": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "initialize的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "initialize参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-list": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "list的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "list参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-pull_plunger": { + "feedback": {}, + "goal": {}, + "goal_default": { + "volume": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "pull_plunger的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "volume": { + "type": "number", + "title": "volume", + "description": "" + } + }, + "required": [ + "volume" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "pull_plunger参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-push_plunger": { + "feedback": {}, + "goal": {}, + "goal_default": { + "volume": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "push_plunger的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "volume": { + "type": "number", + "title": "volume", + "description": "" + } + }, + "required": [ + "volume" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "push_plunger参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-query_aux_input_status_1": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "query_aux_input_status_1的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "query_aux_input_status_1参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-query_aux_input_status_2": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "query_aux_input_status_2的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "query_aux_input_status_2参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-query_backlash_position": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "query_backlash_position的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "query_backlash_position参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-query_command_buffer_status": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "query_command_buffer_status的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "query_command_buffer_status参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-query_software_version": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "query_software_version的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "query_software_version参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-send_command": { + "feedback": {}, + "goal": {}, + "goal_default": { + "full_command": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "send_command的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "full_command": { + "type": "string", + "title": "full_command", + "description": "" + } + }, + "required": [ + "full_command" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "send_command参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-set_baudrate": { + "feedback": {}, + "goal": {}, + "goal_default": { + "baudrate": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "set_baudrate的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "baudrate": { + "type": "string", + "title": "baudrate", + "description": "" + } + }, + "required": [ + "baudrate" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "set_baudrate参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-set_max_velocity": { + "feedback": {}, + "goal": {}, + "goal_default": { + "velocity": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "set_max_velocity的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "velocity": { + "type": "number", + "title": "velocity", + "description": "" + } + }, + "required": [ + "velocity" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "set_max_velocity参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-set_position": { + "feedback": {}, + "goal": {}, + "goal_default": { + "max_velocity": null, + "position": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "set_position的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "max_velocity": { + "type": "number", + "title": "max_velocity", + "description": "" + }, + "position": { + "type": "number", + "title": "position", + "description": "" + } + }, + "required": [ + "position" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "set_position参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-set_valve_position": { + "feedback": {}, + "goal": {}, + "goal_default": { + "position": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "set_valve_position的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "position": { + "anyOf": [ + { + "type": "integer" + }, + { + "type": "string" + }, + { + "type": "number" + } + ], + "title": "position", + "description": "" + } + }, + "required": [ + "position" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "set_valve_position参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-set_velocity_grade": { + "feedback": {}, + "goal": {}, + "goal_default": { + "velocity": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "set_velocity_grade的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "velocity": { + "anyOf": [ + { + "type": "integer" + }, + { + "type": "string" + } + ], + "title": "velocity", + "description": "" + } + }, + "required": [ + "velocity" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "set_velocity_grade参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-stop_operation": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "stop_operation的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "stop_operation参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-wait_error": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "wait_error的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "wait_error参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + } + }, + "hardware_interface": { + "name": "hardware_interface", + "read": "send_command", + "write": "send_command" + }, + "module": "unilabos.devices.pump_and_valve.runze_backbone:RunzeSyringePump", + "status_types": { + "max_velocity": "Float64", + "mode": "Int64", + "plunger_position": "", + "position": "Float64", + "status": "String", + "valve_position": "String", + "velocity_end": "", + "velocity_grade": "", + "velocity_init": "" + }, + "type": "python" + }, + "config_info": [], + "description": "润泽精密注射泵设备,集成阀门控制的高精度流体输送系统。该设备通过串口通信控制,支持多种运行模式和精确的体积控制。具备可变速度控制、精密定位、阀门切换、实时状态监控等功能。适用于微量液体输送、精密进样、流速控制、化学反应进料等需要高精度流体操作的实验室自动化应用。", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/devices/pump_and_valve.yaml", + "handles": [ + { + "data_key": "fluid_port_1", + "data_source": "executor", + "data_type": "fluid", + "description": "八通阀门端口1", + "handler_key": "1", + "io_type": "source", + "label": "1", + "side": "NORTH" + }, + { + "data_key": "fluid_port_2", + "data_source": "executor", + "data_type": "fluid", + "description": "八通阀门端口2", + "handler_key": "2", + "io_type": "source", + "label": "2", + "side": "EAST" + }, + { + "data_key": "fluid_port_3", + "data_source": "executor", + "data_type": "fluid", + "description": "八通阀门端口3", + "handler_key": "3", + "io_type": "source", + "label": "3", + "side": "SOUTH" + }, + { + "data_key": "fluid_port_4", + "data_source": "executor", + "data_type": "fluid", + "description": "八通阀门端口4", + "handler_key": "4", + "io_type": "source", + "label": "4", + "side": "SOUTH" + }, + { + "data_key": "fluid_port_5", + "data_source": "executor", + "data_type": "fluid", + "description": "八通阀门端口5", + "handler_key": "5", + "io_type": "source", + "label": "5", + "side": "EAST" + }, + { + "data_key": "fluid_port_6", + "data_source": "executor", + "data_type": "fluid", + "description": "八通阀门端口6", + "handler_key": "6", + "io_type": "source", + "label": "6", + "side": "NORTH" + }, + { + "data_key": "fluid_port_6", + "data_source": "executor", + "data_type": "fluid", + "description": "六通阀门端口6-特殊输入", + "handler_key": "6", + "io_type": "target", + "label": "6-in", + "side": "WEST" + } + ], + "icon": "", + "init_param_schema": { + "config": { + "properties": { + "address": { + "default": "1", + "type": "string" + }, + "max_volume": { + "default": 25.0, + "type": "number" + }, + "mode": { + "type": "object" + }, + "port": { + "type": "string" + } + }, + "required": [ + "port" + ], + "type": "object" + }, + "data": { + "properties": { + "max_velocity": { + "type": "number" + }, + "mode": { + "type": "integer" + }, + "plunger_position": { + "type": "string" + }, + "position": { + "type": "number" + }, + "status": { + "type": "string" + }, + "valve_position": { + "type": "string" + }, + "velocity_end": { + "type": "string" + }, + "velocity_grade": { + "type": "string" + }, + "velocity_init": { + "type": "string" + } + }, + "required": [ + "max_velocity", + "mode", + "plunger_position", + "position", + "status", + "valve_position", + "velocity_end", + "velocity_grade", + "velocity_init" + ], + "type": "object" + } + }, + "registry_type": "device", + "version": "1.0.0" + }, + { + "id": "syringe_pump_with_valve.runze.SY03B-T08", + "category": [ + "pump_and_valve" + ], + "class": { + "action_value_mappings": { + "auto-close": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "close的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "close参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-initialize": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "initialize的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "initialize参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-list": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "list的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "list参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-pull_plunger": { + "feedback": {}, + "goal": {}, + "goal_default": { + "volume": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "pull_plunger的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "volume": { + "type": "number", + "title": "volume", + "description": "" + } + }, + "required": [ + "volume" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "pull_plunger参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-push_plunger": { + "feedback": {}, + "goal": {}, + "goal_default": { + "volume": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "push_plunger的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "volume": { + "type": "number", + "title": "volume", + "description": "" + } + }, + "required": [ + "volume" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "push_plunger参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-query_aux_input_status_1": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "query_aux_input_status_1的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "query_aux_input_status_1参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-query_aux_input_status_2": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "query_aux_input_status_2的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "query_aux_input_status_2参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-query_backlash_position": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "query_backlash_position的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "query_backlash_position参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-query_command_buffer_status": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "query_command_buffer_status的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "query_command_buffer_status参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-query_software_version": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "query_software_version的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "query_software_version参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-send_command": { + "feedback": {}, + "goal": {}, + "goal_default": { + "full_command": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "send_command的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "full_command": { + "type": "string", + "title": "full_command", + "description": "" + } + }, + "required": [ + "full_command" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "send_command参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-set_baudrate": { + "feedback": {}, + "goal": {}, + "goal_default": { + "baudrate": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "set_baudrate的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "baudrate": { + "type": "string", + "title": "baudrate", + "description": "" + } + }, + "required": [ + "baudrate" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "set_baudrate参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-set_max_velocity": { + "feedback": {}, + "goal": {}, + "goal_default": { + "velocity": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "set_max_velocity的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "velocity": { + "type": "number", + "title": "velocity", + "description": "" + } + }, + "required": [ + "velocity" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "set_max_velocity参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-set_position": { + "feedback": {}, + "goal": {}, + "goal_default": { + "max_velocity": null, + "position": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "set_position的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "max_velocity": { + "type": "number", + "title": "max_velocity", + "description": "" + }, + "position": { + "type": "number", + "title": "position", + "description": "" + } + }, + "required": [ + "position" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "set_position参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-set_valve_position": { + "feedback": {}, + "goal": {}, + "goal_default": { + "position": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "set_valve_position的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "position": { + "anyOf": [ + { + "type": "integer" + }, + { + "type": "string" + }, + { + "type": "number" + } + ], + "title": "position", + "description": "" + } + }, + "required": [ + "position" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "set_valve_position参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-set_velocity_grade": { + "feedback": {}, + "goal": {}, + "goal_default": { + "velocity": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "set_velocity_grade的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "velocity": { + "anyOf": [ + { + "type": "integer" + }, + { + "type": "string" + } + ], + "title": "velocity", + "description": "" + } + }, + "required": [ + "velocity" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "set_velocity_grade参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-stop_operation": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "stop_operation的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "stop_operation参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-wait_error": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "wait_error的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "wait_error参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + } + }, + "hardware_interface": { + "name": "hardware_interface", + "read": "send_command", + "write": "send_command" + }, + "module": "unilabos.devices.pump_and_valve.runze_backbone:RunzeSyringePump", + "status_types": { + "max_velocity": "Float64", + "mode": "Int64", + "plunger_position": "", + "position": "Float64", + "status": "String", + "valve_position": "String", + "velocity_end": "", + "velocity_grade": "", + "velocity_init": "" + }, + "type": "python" + }, + "config_info": [], + "description": "润泽精密注射泵设备,集成阀门控制的高精度流体输送系统。该设备通过串口通信控制,支持多种运行模式和精确的体积控制。具备可变速度控制、精密定位、阀门切换、实时状态监控等功能。适用于微量液体输送、精密进样、流速控制、化学反应进料等需要高精度流体操作的实验室自动化应用。", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/devices/pump_and_valve.yaml", + "handles": [ + { + "data_key": "fluid_port_1", + "data_source": "executor", + "data_type": "fluid", + "description": "八通阀门端口1", + "handler_key": "1", + "io_type": "source", + "label": "1", + "side": "NORTH" + }, + { + "data_key": "fluid_port_2", + "data_source": "executor", + "data_type": "fluid", + "description": "八通阀门端口2", + "handler_key": "2", + "io_type": "source", + "label": "2", + "side": "EAST" + }, + { + "data_key": "fluid_port_3", + "data_source": "executor", + "data_type": "fluid", + "description": "八通阀门端口3", + "handler_key": "3", + "io_type": "source", + "label": "3", + "side": "EAST" + }, + { + "data_key": "fluid_port_4", + "data_source": "executor", + "data_type": "fluid", + "description": "八通阀门端口4", + "handler_key": "4", + "io_type": "source", + "label": "4", + "side": "SOUTH" + }, + { + "data_key": "fluid_port_5", + "data_source": "executor", + "data_type": "fluid", + "description": "八通阀门端口5", + "handler_key": "5", + "io_type": "source", + "label": "5", + "side": "SOUTH" + }, + { + "data_key": "fluid_port_6", + "data_source": "executor", + "data_type": "fluid", + "description": "八通阀门端口6", + "handler_key": "6", + "io_type": "source", + "label": "6", + "side": "WEST" + }, + { + "data_key": "fluid_port_7", + "data_source": "executor", + "data_type": "fluid", + "description": "八通阀门端口7", + "handler_key": "7", + "io_type": "source", + "label": "7", + "side": "WEST" + }, + { + "data_key": "fluid_port_8", + "data_source": "executor", + "data_type": "fluid", + "description": "八通阀门端口8-特殊输入", + "handler_key": "8", + "io_type": "target", + "label": "8", + "side": "WEST" + }, + { + "data_key": "fluid_port_8", + "data_source": "executor", + "data_type": "fluid", + "description": "八通阀门端口8", + "handler_key": "8", + "io_type": "source", + "label": "8", + "side": "NORTH" + } + ], + "icon": "", + "init_param_schema": { + "config": { + "properties": { + "address": { + "default": "1", + "type": "string" + }, + "max_volume": { + "default": 25.0, + "type": "number" + }, + "mode": { + "type": "object" + }, + "port": { + "type": "string" + } + }, + "required": [ + "port" + ], + "type": "object" + }, + "data": { + "properties": { + "max_velocity": { + "type": "number" + }, + "mode": { + "type": "integer" + }, + "plunger_position": { + "type": "string" + }, + "position": { + "type": "number" + }, + "status": { + "type": "string" + }, + "valve_position": { + "type": "string" + }, + "velocity_end": { + "type": "string" + }, + "velocity_grade": { + "type": "string" + }, + "velocity_init": { + "type": "string" + } + }, + "required": [ + "max_velocity", + "mode", + "plunger_position", + "position", + "status", + "valve_position", + "velocity_end", + "velocity_grade", + "velocity_init" + ], + "type": "object" + } + }, + "registry_type": "device", + "version": "1.0.0" + }, + { + "id": "xyz_stepper_controller", + "category": [ + "laiyu_liquid_test" + ], + "class": { + "action_value_mappings": { + "auto-degrees_to_steps": { + "feedback": {}, + "goal": {}, + "goal_default": { + "degrees": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "degrees": { + "type": "number", + "title": "degrees", + "description": "" + } + }, + "required": [ + "degrees" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "integer" + } + }, + "required": [ + "goal" + ], + "title": "degrees_to_steps参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-emergency_stop": { + "feedback": {}, + "goal": {}, + "goal_default": { + "axis": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "axis": { + "type": "object", + "title": "axis", + "description": "" + } + }, + "required": [ + "axis" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "boolean" + } + }, + "required": [ + "goal" + ], + "title": "emergency_stop参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-enable_all_axes": { + "feedback": {}, + "goal": {}, + "goal_default": { + "enable": true + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "enable": { + "default": true, + "type": "boolean", + "title": "enable", + "description": "" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "additionalProperties": { + "type": "boolean" + }, + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "enable_all_axes参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-enable_motor": { + "feedback": {}, + "goal": {}, + "goal_default": { + "axis": null, + "enable": true + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "axis": { + "type": "object", + "title": "axis", + "description": "" + }, + "enable": { + "default": true, + "type": "boolean", + "title": "enable", + "description": "" + } + }, + "required": [ + "axis" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "boolean" + } + }, + "required": [ + "goal" + ], + "title": "enable_motor参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-home_all_axes": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "additionalProperties": { + "type": "boolean" + }, + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "home_all_axes参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-home_axis": { + "feedback": {}, + "goal": {}, + "goal_default": { + "axis": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "axis": { + "type": "object", + "title": "axis", + "description": "" + } + }, + "required": [ + "axis" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "boolean" + } + }, + "required": [ + "goal" + ], + "title": "home_axis参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-move_to_position": { + "feedback": {}, + "goal": {}, + "goal_default": { + "acceleration": 1000, + "axis": null, + "position": null, + "precision": 100, + "speed": 5000 + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "acceleration": { + "default": 1000, + "type": "integer", + "title": "acceleration", + "description": "" + }, + "axis": { + "type": "object", + "title": "axis", + "description": "" + }, + "position": { + "type": "integer", + "title": "position", + "description": "" + }, + "precision": { + "default": 100, + "type": "integer", + "title": "precision", + "description": "" + }, + "speed": { + "default": 5000, + "type": "integer", + "title": "speed", + "description": "" + } + }, + "required": [ + "axis", + "position" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "boolean" + } + }, + "required": [ + "goal" + ], + "title": "move_to_position参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-move_to_position_degrees": { + "feedback": {}, + "goal": {}, + "goal_default": { + "acceleration": 1000, + "axis": null, + "degrees": null, + "precision": 100, + "speed": 5000 + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "acceleration": { + "default": 1000, + "type": "integer", + "title": "acceleration", + "description": "" + }, + "axis": { + "type": "object", + "title": "axis", + "description": "" + }, + "degrees": { + "type": "number", + "title": "degrees", + "description": "" + }, + "precision": { + "default": 100, + "type": "integer", + "title": "precision", + "description": "" + }, + "speed": { + "default": 5000, + "type": "integer", + "title": "speed", + "description": "" + } + }, + "required": [ + "axis", + "degrees" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "boolean" + } + }, + "required": [ + "goal" + ], + "title": "move_to_position_degrees参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-move_to_position_revolutions": { + "feedback": {}, + "goal": {}, + "goal_default": { + "acceleration": 1000, + "axis": null, + "precision": 100, + "revolutions": null, + "speed": 5000 + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "acceleration": { + "default": 1000, + "type": "integer", + "title": "acceleration", + "description": "" + }, + "axis": { + "type": "object", + "title": "axis", + "description": "" + }, + "precision": { + "default": 100, + "type": "integer", + "title": "precision", + "description": "" + }, + "revolutions": { + "type": "number", + "title": "revolutions", + "description": "" + }, + "speed": { + "default": 5000, + "type": "integer", + "title": "speed", + "description": "" + } + }, + "required": [ + "axis", + "revolutions" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "boolean" + } + }, + "required": [ + "goal" + ], + "title": "move_to_position_revolutions参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-move_xyz": { + "feedback": {}, + "goal": {}, + "goal_default": { + "acceleration": 1000, + "speed": 5000, + "x": null, + "y": null, + "z": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "acceleration": { + "default": 1000, + "type": "integer", + "title": "acceleration", + "description": "" + }, + "speed": { + "default": 5000, + "type": "integer", + "title": "speed", + "description": "" + }, + "x": { + "type": "integer", + "title": "x", + "description": "" + }, + "y": { + "type": "integer", + "title": "y", + "description": "" + }, + "z": { + "type": "integer", + "title": "z", + "description": "" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "additionalProperties": { + "type": "boolean" + }, + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "move_xyz参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-move_xyz_degrees": { + "feedback": {}, + "goal": {}, + "goal_default": { + "acceleration": 1000, + "speed": 5000, + "x_deg": null, + "y_deg": null, + "z_deg": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "acceleration": { + "default": 1000, + "type": "integer", + "title": "acceleration", + "description": "" + }, + "speed": { + "default": 5000, + "type": "integer", + "title": "speed", + "description": "" + }, + "x_deg": { + "type": "number", + "title": "x_deg", + "description": "" + }, + "y_deg": { + "type": "number", + "title": "y_deg", + "description": "" + }, + "z_deg": { + "type": "number", + "title": "z_deg", + "description": "" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "additionalProperties": { + "type": "boolean" + }, + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "move_xyz_degrees参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-move_xyz_revolutions": { + "feedback": {}, + "goal": {}, + "goal_default": { + "acceleration": 1000, + "speed": 5000, + "x_rev": null, + "y_rev": null, + "z_rev": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "acceleration": { + "default": 1000, + "type": "integer", + "title": "acceleration", + "description": "" + }, + "speed": { + "default": 5000, + "type": "integer", + "title": "speed", + "description": "" + }, + "x_rev": { + "type": "number", + "title": "x_rev", + "description": "" + }, + "y_rev": { + "type": "number", + "title": "y_rev", + "description": "" + }, + "z_rev": { + "type": "number", + "title": "z_rev", + "description": "" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "additionalProperties": { + "type": "boolean" + }, + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "move_xyz_revolutions参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-revolutions_to_steps": { + "feedback": {}, + "goal": {}, + "goal_default": { + "revolutions": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "revolutions": { + "type": "number", + "title": "revolutions", + "description": "" + } + }, + "required": [ + "revolutions" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "integer" + } + }, + "required": [ + "goal" + ], + "title": "revolutions_to_steps参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-set_speed_mode": { + "feedback": {}, + "goal": {}, + "goal_default": { + "acceleration": 1000, + "axis": null, + "speed": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "acceleration": { + "default": 1000, + "type": "integer", + "title": "acceleration", + "description": "" + }, + "axis": { + "type": "object", + "title": "axis", + "description": "" + }, + "speed": { + "type": "integer", + "title": "speed", + "description": "" + } + }, + "required": [ + "axis", + "speed" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "boolean" + } + }, + "required": [ + "goal" + ], + "title": "set_speed_mode参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-steps_to_degrees": { + "feedback": {}, + "goal": {}, + "goal_default": { + "steps": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "steps": { + "type": "integer", + "title": "steps", + "description": "" + } + }, + "required": [ + "steps" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "number" + } + }, + "required": [ + "goal" + ], + "title": "steps_to_degrees参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-steps_to_revolutions": { + "feedback": {}, + "goal": {}, + "goal_default": { + "steps": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "steps": { + "type": "integer", + "title": "steps", + "description": "" + } + }, + "required": [ + "steps" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "number" + } + }, + "required": [ + "goal" + ], + "title": "steps_to_revolutions参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-stop_all_axes": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "additionalProperties": { + "type": "boolean" + }, + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "stop_all_axes参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-wait_for_completion": { + "feedback": {}, + "goal": {}, + "goal_default": { + "axis": null, + "timeout": 30.0 + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "axis": { + "type": "object", + "title": "axis", + "description": "" + }, + "timeout": { + "default": 30.0, + "type": "number", + "title": "timeout", + "description": "" + } + }, + "required": [ + "axis" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "boolean" + } + }, + "required": [ + "goal" + ], + "title": "wait_for_completion参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + } + }, + "module": "unilabos.devices.liquid_handling.laiyu.drivers.xyz_stepper_driver:XYZStepperController", + "status_types": { + "all_positions": "String" + }, + "type": "python" + }, + "config_info": [], + "description": "新XYZ控制器", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/devices/laiyu_liquid_test.yaml", + "handles": [], + "icon": "", + "init_param_schema": { + "config": { + "properties": { + "baudrate": { + "default": 115200, + "type": "integer" + }, + "port": { + "type": "string" + }, + "timeout": { + "default": 1.0, + "type": "number" + } + }, + "required": [ + "port" + ], + "type": "object" + }, + "data": { + "properties": { + "all_positions": { + "additionalProperties": { + "type": "object" + }, + "type": "object" + } + }, + "required": [ + "all_positions" + ], + "type": "object" + } + }, + "registry_type": "device", + "version": "1.0.0" + }, + { + "id": "gripper.misumi_rz", + "category": [ + "robot_gripper" + ], + "class": { + "action_value_mappings": { + "auto-data_loop": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "data_loop的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "data_loop参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-data_reader": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "data_reader的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "data_reader参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-gripper_move": { + "feedback": {}, + "goal": {}, + "goal_default": { + "force": null, + "pos": null, + "speed": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "夹爪抓取运动控制函数。控制夹爪的开合运动,支持位置、速度、力矩的精确设定。位置参数控制夹爪开合程度,速度参数控制运动快慢,力矩参数控制夹持强度。该函数提供安全的力控制,避免损坏被抓取物体,适用于各种形状和材质的物品抓取。", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "force": { + "type": "string", + "title": "force", + "description": "" + }, + "pos": { + "type": "string", + "title": "pos", + "description": "" + }, + "speed": { + "type": "string", + "title": "speed", + "description": "" + } + }, + "required": [ + "pos", + "speed", + "force" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "gripper_move参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-init_gripper": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "夹爪初始化函数。执行Misumi RZ夹爪的完整初始化流程,包括Modbus通信建立、电机参数配置、传感器校准等。该函数确保夹爪系统从安全状态恢复到可操作状态,是夹爪使用前的必要步骤。初始化完成后夹爪将处于就绪状态,可接收抓取和旋转指令。", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "init_gripper参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-modbus_crc": { + "feedback": {}, + "goal": {}, + "goal_default": { + "data": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "modbus_crc的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "data": { + "type": "object", + "title": "data", + "description": "" + } + }, + "required": [ + "data" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "modbus_crc参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-move_and_rotate": { + "feedback": {}, + "goal": {}, + "goal_default": { + "grasp_F": null, + "grasp_pos": null, + "grasp_v": null, + "spin_F": null, + "spin_pos": null, + "spin_v": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "move_and_rotate的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "grasp_F": { + "type": "string", + "title": "grasp_F", + "description": "" + }, + "grasp_pos": { + "type": "string", + "title": "grasp_pos", + "description": "" + }, + "grasp_v": { + "type": "string", + "title": "grasp_v", + "description": "" + }, + "spin_F": { + "type": "string", + "title": "spin_F", + "description": "" + }, + "spin_pos": { + "type": "string", + "title": "spin_pos", + "description": "" + }, + "spin_v": { + "type": "string", + "title": "spin_v", + "description": "" + } + }, + "required": [ + "spin_pos", + "grasp_pos", + "spin_v", + "grasp_v", + "spin_F", + "grasp_F" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "move_and_rotate参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-node_gripper_move": { + "feedback": {}, + "goal": {}, + "goal_default": { + "cmd": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "节点夹爪移动任务函数。接收逗号分隔的命令字符串,解析位置、速度、力矩参数并执行夹爪抓取动作。该函数等待运动完成并返回执行结果,提供同步的运动控制接口。适用于需要可靠完成确认的精密抓取操作。", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "cmd": { + "type": "string", + "title": "cmd", + "description": "" + } + }, + "required": [ + "cmd" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "node_gripper_move参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-node_rotate_move": { + "feedback": {}, + "goal": {}, + "goal_default": { + "cmd": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "节点旋转移动任务函数。接收逗号分隔的命令字符串,解析角度、速度、力矩参数并执行夹爪旋转动作。该函数等待旋转完成并返回执行结果,提供同步的旋转控制接口。适用于需要精确角度定位和完成确认的旋转操作。", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "cmd": { + "type": "string", + "title": "cmd", + "description": "" + } + }, + "required": [ + "cmd" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "node_rotate_move参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-read_address": { + "feedback": {}, + "goal": {}, + "goal_default": { + "address": null, + "data_len": null, + "id": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "read_address的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "address": { + "type": "string", + "title": "address", + "description": "" + }, + "data_len": { + "type": "string", + "title": "data_len", + "description": "" + }, + "id": { + "type": "string", + "title": "id", + "description": "" + } + }, + "required": [ + "id", + "address", + "data_len" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "read_address参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-rotate_move_abs": { + "feedback": {}, + "goal": {}, + "goal_default": { + "force": null, + "pos": null, + "speed": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "夹爪绝对位置旋转控制函数。控制夹爪主轴旋转到指定的绝对角度位置,支持360度连续旋转。位置参数指定目标角度,速度参数控制旋转速率,力矩参数设定旋转阻力限制。该函数提供高精度的角度定位,适用于需要精确方向控制的操作场景。", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "force": { + "type": "string", + "title": "force", + "description": "" + }, + "pos": { + "type": "string", + "title": "pos", + "description": "" + }, + "speed": { + "type": "string", + "title": "speed", + "description": "" + } + }, + "required": [ + "pos", + "speed", + "force" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "rotate_move_abs参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-send_cmd": { + "feedback": {}, + "goal": {}, + "goal_default": { + "address": null, + "data": null, + "fun": null, + "id": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "send_cmd的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "address": { + "type": "string", + "title": "address", + "description": "" + }, + "data": { + "type": "string", + "title": "data", + "description": "" + }, + "fun": { + "type": "string", + "title": "fun", + "description": "" + }, + "id": { + "type": "string", + "title": "id", + "description": "" + } + }, + "required": [ + "id", + "fun", + "address", + "data" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "send_cmd参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-wait_for_gripper": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "wait_for_gripper的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "wait_for_gripper参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-wait_for_gripper_init": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "wait_for_gripper_init的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "wait_for_gripper_init参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-wait_for_rotate": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "wait_for_rotate的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "wait_for_rotate参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "execute_command_from_outer": { + "feedback": {}, + "goal": { + "command": "command" + }, + "goal_default": { + "command": "" + }, + "handles": {}, + "result": { + "success": "success" + }, + "schema": { + "title": "SendCmd", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "command": { + "type": "string", + "title": "command", + "description": "" + } + }, + "title": "SendCmd_Goal" + }, + "feedback": { + "type": "object", + "additionalProperties": false, + "properties": { + "status": { + "type": "string" + } + }, + "title": "SendCmd_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "SendCmd_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "SendCmd" + } + }, + "module": "unilabos.devices.motor.Grasp:EleGripper", + "status_types": { + "status": "String" + }, + "type": "python" + }, + "config_info": [], + "description": "Misumi RZ系列电子夹爪设备,集成旋转和抓取双重功能的精密夹爪系统。该设备通过Modbus RTU协议与控制系统通信,支持位置、速度、力矩的精确控制。具备高精度的位置反馈、实时状态监控和故障检测功能。适用于需要精密抓取和旋转操作的实验室自动化场景,如样品管理、精密装配、器件操作等应用。", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/devices/robot_gripper.yaml", + "handles": [], + "icon": "", + "init_param_schema": { + "config": { + "properties": { + "baudrate": { + "default": 115200, + "type": "string" + }, + "id": { + "default": 9, + "type": "string" + }, + "port": { + "type": "string" + }, + "pos_error": { + "default": -11, + "type": "string" + } + }, + "required": [ + "port" + ], + "type": "object" + }, + "data": { + "properties": { + "status": { + "type": "string" + } + }, + "required": [ + "status" + ], + "type": "object" + } + }, + "registry_type": "device", + "version": "1.0.0" + }, + { + "id": "gripper.mock", + "category": [ + "robot_gripper" + ], + "class": { + "action_value_mappings": { + "auto-edit_id": { + "feedback": {}, + "goal": {}, + "goal_default": { + "params": "{}", + "resource": { + "Gripper1": {} + }, + "wf_name": "gripper_run" + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "模拟夹爪资源ID编辑函数。用于测试和演示资源管理功能,模拟修改夹爪资源的标识信息。该函数接收工作流名称、参数和资源对象,模拟真实的资源更新过程并返回修改后的资源信息。适用于系统测试和开发调试场景。", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "params": { + "default": "{}", + "type": "string", + "title": "params", + "description": "" + }, + "resource": { + "default": { + "Gripper1": {} + }, + "type": "object", + "title": "resource", + "description": "" + }, + "wf_name": { + "default": "gripper_run", + "type": "string", + "title": "wf_name", + "description": "" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "edit_id参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "push_to": { + "feedback": { + "effort": "effort", + "position": "position", + "reached_goal": "reached_goal", + "stalled": "stalled" + }, + "goal": { + "command": "command", + "position": "position", + "torque": "torque", + "velocity": "velocity" + }, + "goal_default": { + "command": { + "position": 0.0, + "max_effort": 0.0 + } + }, + "handles": {}, + "placeholder_keys": {}, + "result": { + "effort": "effort", + "position": "position", + "reached_goal": "reached_goal", + "stalled": "stalled" + }, + "schema": { + "title": "GripperCommand", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "command": { + "type": "object", + "properties": { + "position": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "max_effort": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "position", + "max_effort" + ], + "title": "command", + "additionalProperties": false, + "description": "" + } + }, + "title": "GripperCommand_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": false, + "properties": { + "position": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "effort": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "stalled": { + "type": "boolean" + }, + "reached_goal": { + "type": "boolean" + } + }, + "title": "GripperCommand_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "position": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "effort": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "stalled": { + "type": "boolean" + }, + "reached_goal": { + "type": "boolean" + } + }, + "title": "GripperCommand_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "GripperCommand" + } + }, + "module": "unilabos.devices.gripper.mock:MockGripper", + "status_types": { + "position": "Float64", + "status": "String", + "torque": "Float64", + "velocity": "Float64" + }, + "type": "python" + }, + "config_info": [], + "description": "模拟夹爪设备,用于系统测试和开发调试。该设备模拟真实夹爪的位置、速度、力矩等物理特性,支持虚拟的抓取和移动操作。提供与真实夹爪相同的接口和状态反馈,便于在没有实际硬件的情况下进行系统集成测试和算法验证。适用于软件开发、系统调试和培训演示等场景。", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/devices/robot_gripper.yaml", + "handles": [], + "icon": "", + "init_param_schema": { + "config": { + "properties": {}, + "required": [], + "type": "object" + }, + "data": { + "properties": { + "position": { + "type": "number" + }, + "status": { + "type": "string" + }, + "torque": { + "type": "number" + }, + "velocity": { + "type": "number" + } + }, + "required": [ + "position", + "status", + "torque", + "velocity" + ], + "type": "object" + } + }, + "registry_type": "device", + "version": "1.0.0" + }, + { + "id": "bioyond_cell", + "category": [ + "bioyond_cell" + ], + "class": { + "action_value_mappings": { + "auto-auto_batch_outbound_from_xlsx": { + "feedback": {}, + "goal": {}, + "goal_default": { + "xlsx_path": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "xlsx_path": { + "type": "string", + "title": "xlsx_path", + "description": "" + } + }, + "required": [ + "xlsx_path" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "auto_batch_outbound_from_xlsx参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-auto_feeding4to3": { + "feedback": {}, + "goal": {}, + "goal_default": { + "WH3_x1_y1_z3_1_materialId": "", + "WH3_x1_y1_z3_1_materialType": "", + "WH3_x1_y1_z3_1_quantity": 0, + "WH3_x1_y2_z3_4_materialId": "", + "WH3_x1_y2_z3_4_materialType": "", + "WH3_x1_y2_z3_4_quantity": 0, + "WH3_x1_y3_z3_7_materialId": "", + "WH3_x1_y3_z3_7_materialType": "", + "WH3_x1_y3_z3_7_quantity": 0, + "WH3_x1_y4_z3_10_materialId": "", + "WH3_x1_y4_z3_10_materialType": "", + "WH3_x1_y4_z3_10_quantity": 0, + "WH3_x1_y5_z3_13_materialId": "", + "WH3_x1_y5_z3_13_materialType": "", + "WH3_x1_y5_z3_13_quantity": 0, + "WH3_x2_y1_z3_2_materialId": "", + "WH3_x2_y1_z3_2_materialType": "", + "WH3_x2_y1_z3_2_quantity": 0, + "WH3_x2_y2_z3_5_materialId": "", + "WH3_x2_y2_z3_5_materialType": "", + "WH3_x2_y2_z3_5_quantity": 0, + "WH3_x2_y3_z3_8_materialId": "", + "WH3_x2_y3_z3_8_materialType": "", + "WH3_x2_y3_z3_8_quantity": 0, + "WH3_x2_y4_z3_11_materialId": "", + "WH3_x2_y4_z3_11_materialType": "", + "WH3_x2_y4_z3_11_quantity": 0, + "WH3_x2_y5_z3_14_materialId": "", + "WH3_x2_y5_z3_14_materialType": "", + "WH3_x2_y5_z3_14_quantity": 0, + "WH3_x3_y1_z3_3_materialId": "", + "WH3_x3_y1_z3_3_materialType": "", + "WH3_x3_y1_z3_3_quantity": 0, + "WH3_x3_y2_z3_6_materialId": "", + "WH3_x3_y2_z3_6_materialType": "", + "WH3_x3_y2_z3_6_quantity": 0, + "WH3_x3_y3_z3_9_materialId": "", + "WH3_x3_y3_z3_9_materialType": "", + "WH3_x3_y3_z3_9_quantity": 0, + "WH3_x3_y4_z3_12_materialId": "", + "WH3_x3_y4_z3_12_materialType": "", + "WH3_x3_y4_z3_12_quantity": 0, + "WH3_x3_y5_z3_15_materialId": "", + "WH3_x3_y5_z3_15_materialType": "", + "WH3_x3_y5_z3_15_quantity": 0, + "WH4_x1_y1_z1_1_materialName": "", + "WH4_x1_y1_z1_1_quantity": 0.0, + "WH4_x1_y1_z2_1_materialName": "", + "WH4_x1_y1_z2_1_materialType": "", + "WH4_x1_y1_z2_1_quantity": 0.0, + "WH4_x1_y1_z2_1_targetWH": "", + "WH4_x1_y2_z1_6_materialName": "", + "WH4_x1_y2_z1_6_quantity": 0.0, + "WH4_x1_y2_z2_4_materialName": "", + "WH4_x1_y2_z2_4_materialType": "", + "WH4_x1_y2_z2_4_quantity": 0.0, + "WH4_x1_y2_z2_4_targetWH": "", + "WH4_x1_y3_z1_11_materialName": "", + "WH4_x1_y3_z1_11_quantity": 0.0, + "WH4_x1_y3_z2_7_materialName": "", + "WH4_x1_y3_z2_7_materialType": "", + "WH4_x1_y3_z2_7_quantity": 0.0, + "WH4_x1_y3_z2_7_targetWH": "", + "WH4_x2_y1_z1_2_materialName": "", + "WH4_x2_y1_z1_2_quantity": 0.0, + "WH4_x2_y1_z2_2_materialName": "", + "WH4_x2_y1_z2_2_materialType": "", + "WH4_x2_y1_z2_2_quantity": 0.0, + "WH4_x2_y1_z2_2_targetWH": "", + "WH4_x2_y2_z1_7_materialName": "", + "WH4_x2_y2_z1_7_quantity": 0.0, + "WH4_x2_y2_z2_5_materialName": "", + "WH4_x2_y2_z2_5_materialType": "", + "WH4_x2_y2_z2_5_quantity": 0.0, + "WH4_x2_y2_z2_5_targetWH": "", + "WH4_x2_y3_z1_12_materialName": "", + "WH4_x2_y3_z1_12_quantity": 0.0, + "WH4_x2_y3_z2_8_materialName": "", + "WH4_x2_y3_z2_8_materialType": "", + "WH4_x2_y3_z2_8_quantity": 0.0, + "WH4_x2_y3_z2_8_targetWH": "", + "WH4_x3_y1_z1_3_materialName": "", + "WH4_x3_y1_z1_3_quantity": 0.0, + "WH4_x3_y1_z2_3_materialName": "", + "WH4_x3_y1_z2_3_materialType": "", + "WH4_x3_y1_z2_3_quantity": 0.0, + "WH4_x3_y1_z2_3_targetWH": "", + "WH4_x3_y2_z1_8_materialName": "", + "WH4_x3_y2_z1_8_quantity": 0.0, + "WH4_x3_y2_z2_6_materialName": "", + "WH4_x3_y2_z2_6_materialType": "", + "WH4_x3_y2_z2_6_quantity": 0.0, + "WH4_x3_y2_z2_6_targetWH": "", + "WH4_x3_y3_z2_9_materialName": "", + "WH4_x3_y3_z2_9_materialType": "", + "WH4_x3_y3_z2_9_quantity": 0.0, + "WH4_x3_y3_z2_9_targetWH": "", + "WH4_x4_y1_z1_4_materialName": "", + "WH4_x4_y1_z1_4_quantity": 0.0, + "WH4_x4_y2_z1_9_materialName": "", + "WH4_x4_y2_z1_9_quantity": 0.0, + "WH4_x5_y1_z1_5_materialName": "", + "WH4_x5_y1_z1_5_quantity": 0.0, + "WH4_x5_y2_z1_10_materialName": "", + "WH4_x5_y2_z1_10_quantity": 0.0, + "xlsx_path": "D:\\UniLab\\Uni-Lab-OS\\unilabos\\devices\\workstation\\bioyond_studio\\bioyond_cell\\material_template.xlsx" + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "WH3_x1_y1_z3_1_materialId": { + "default": "", + "type": "string", + "title": "WH3_x1_y1_z3_1_materialId", + "description": "" + }, + "WH3_x1_y1_z3_1_materialType": { + "default": "", + "type": "string", + "title": "WH3_x1_y1_z3_1_materialType", + "description": "" + }, + "WH3_x1_y1_z3_1_quantity": { + "default": 0, + "type": "number", + "title": "WH3_x1_y1_z3_1_quantity", + "description": "" + }, + "WH3_x1_y2_z3_4_materialId": { + "default": "", + "type": "string", + "title": "WH3_x1_y2_z3_4_materialId", + "description": "" + }, + "WH3_x1_y2_z3_4_materialType": { + "default": "", + "type": "string", + "title": "WH3_x1_y2_z3_4_materialType", + "description": "" + }, + "WH3_x1_y2_z3_4_quantity": { + "default": 0, + "type": "number", + "title": "WH3_x1_y2_z3_4_quantity", + "description": "" + }, + "WH3_x1_y3_z3_7_materialId": { + "default": "", + "type": "string", + "title": "WH3_x1_y3_z3_7_materialId", + "description": "" + }, + "WH3_x1_y3_z3_7_materialType": { + "default": "", + "type": "string", + "title": "WH3_x1_y3_z3_7_materialType", + "description": "" + }, + "WH3_x1_y3_z3_7_quantity": { + "default": 0, + "type": "number", + "title": "WH3_x1_y3_z3_7_quantity", + "description": "" + }, + "WH3_x1_y4_z3_10_materialId": { + "default": "", + "type": "string", + "title": "WH3_x1_y4_z3_10_materialId", + "description": "" + }, + "WH3_x1_y4_z3_10_materialType": { + "default": "", + "type": "string", + "title": "WH3_x1_y4_z3_10_materialType", + "description": "" + }, + "WH3_x1_y4_z3_10_quantity": { + "default": 0, + "type": "number", + "title": "WH3_x1_y4_z3_10_quantity", + "description": "" + }, + "WH3_x1_y5_z3_13_materialId": { + "default": "", + "type": "string", + "title": "WH3_x1_y5_z3_13_materialId", + "description": "" + }, + "WH3_x1_y5_z3_13_materialType": { + "default": "", + "type": "string", + "title": "WH3_x1_y5_z3_13_materialType", + "description": "" + }, + "WH3_x1_y5_z3_13_quantity": { + "default": 0, + "type": "number", + "title": "WH3_x1_y5_z3_13_quantity", + "description": "" + }, + "WH3_x2_y1_z3_2_materialId": { + "default": "", + "type": "string", + "title": "WH3_x2_y1_z3_2_materialId", + "description": "" + }, + "WH3_x2_y1_z3_2_materialType": { + "default": "", + "type": "string", + "title": "WH3_x2_y1_z3_2_materialType", + "description": "" + }, + "WH3_x2_y1_z3_2_quantity": { + "default": 0, + "type": "number", + "title": "WH3_x2_y1_z3_2_quantity", + "description": "" + }, + "WH3_x2_y2_z3_5_materialId": { + "default": "", + "type": "string", + "title": "WH3_x2_y2_z3_5_materialId", + "description": "" + }, + "WH3_x2_y2_z3_5_materialType": { + "default": "", + "type": "string", + "title": "WH3_x2_y2_z3_5_materialType", + "description": "" + }, + "WH3_x2_y2_z3_5_quantity": { + "default": 0, + "type": "number", + "title": "WH3_x2_y2_z3_5_quantity", + "description": "" + }, + "WH3_x2_y3_z3_8_materialId": { + "default": "", + "type": "string", + "title": "WH3_x2_y3_z3_8_materialId", + "description": "" + }, + "WH3_x2_y3_z3_8_materialType": { + "default": "", + "type": "string", + "title": "WH3_x2_y3_z3_8_materialType", + "description": "" + }, + "WH3_x2_y3_z3_8_quantity": { + "default": 0, + "type": "number", + "title": "WH3_x2_y3_z3_8_quantity", + "description": "" + }, + "WH3_x2_y4_z3_11_materialId": { + "default": "", + "type": "string", + "title": "WH3_x2_y4_z3_11_materialId", + "description": "" + }, + "WH3_x2_y4_z3_11_materialType": { + "default": "", + "type": "string", + "title": "WH3_x2_y4_z3_11_materialType", + "description": "" + }, + "WH3_x2_y4_z3_11_quantity": { + "default": 0, + "type": "number", + "title": "WH3_x2_y4_z3_11_quantity", + "description": "" + }, + "WH3_x2_y5_z3_14_materialId": { + "default": "", + "type": "string", + "title": "WH3_x2_y5_z3_14_materialId", + "description": "" + }, + "WH3_x2_y5_z3_14_materialType": { + "default": "", + "type": "string", + "title": "WH3_x2_y5_z3_14_materialType", + "description": "" + }, + "WH3_x2_y5_z3_14_quantity": { + "default": 0, + "type": "number", + "title": "WH3_x2_y5_z3_14_quantity", + "description": "" + }, + "WH3_x3_y1_z3_3_materialId": { + "default": "", + "type": "string", + "title": "WH3_x3_y1_z3_3_materialId", + "description": "" + }, + "WH3_x3_y1_z3_3_materialType": { + "default": "", + "type": "string", + "title": "WH3_x3_y1_z3_3_materialType", + "description": "" + }, + "WH3_x3_y1_z3_3_quantity": { + "default": 0, + "type": "number", + "title": "WH3_x3_y1_z3_3_quantity", + "description": "" + }, + "WH3_x3_y2_z3_6_materialId": { + "default": "", + "type": "string", + "title": "WH3_x3_y2_z3_6_materialId", + "description": "" + }, + "WH3_x3_y2_z3_6_materialType": { + "default": "", + "type": "string", + "title": "WH3_x3_y2_z3_6_materialType", + "description": "" + }, + "WH3_x3_y2_z3_6_quantity": { + "default": 0, + "type": "number", + "title": "WH3_x3_y2_z3_6_quantity", + "description": "" + }, + "WH3_x3_y3_z3_9_materialId": { + "default": "", + "type": "string", + "title": "WH3_x3_y3_z3_9_materialId", + "description": "" + }, + "WH3_x3_y3_z3_9_materialType": { + "default": "", + "type": "string", + "title": "WH3_x3_y3_z3_9_materialType", + "description": "" + }, + "WH3_x3_y3_z3_9_quantity": { + "default": 0, + "type": "number", + "title": "WH3_x3_y3_z3_9_quantity", + "description": "" + }, + "WH3_x3_y4_z3_12_materialId": { + "default": "", + "type": "string", + "title": "WH3_x3_y4_z3_12_materialId", + "description": "" + }, + "WH3_x3_y4_z3_12_materialType": { + "default": "", + "type": "string", + "title": "WH3_x3_y4_z3_12_materialType", + "description": "" + }, + "WH3_x3_y4_z3_12_quantity": { + "default": 0, + "type": "number", + "title": "WH3_x3_y4_z3_12_quantity", + "description": "" + }, + "WH3_x3_y5_z3_15_materialId": { + "default": "", + "type": "string", + "title": "WH3_x3_y5_z3_15_materialId", + "description": "" + }, + "WH3_x3_y5_z3_15_materialType": { + "default": "", + "type": "string", + "title": "WH3_x3_y5_z3_15_materialType", + "description": "" + }, + "WH3_x3_y5_z3_15_quantity": { + "default": 0, + "type": "number", + "title": "WH3_x3_y5_z3_15_quantity", + "description": "" + }, + "WH4_x1_y1_z1_1_materialName": { + "default": "", + "type": "string", + "title": "WH4_x1_y1_z1_1_materialName", + "description": "" + }, + "WH4_x1_y1_z1_1_quantity": { + "default": 0.0, + "type": "number", + "title": "WH4_x1_y1_z1_1_quantity", + "description": "" + }, + "WH4_x1_y1_z2_1_materialName": { + "default": "", + "type": "string", + "title": "WH4_x1_y1_z2_1_materialName", + "description": "" + }, + "WH4_x1_y1_z2_1_materialType": { + "default": "", + "type": "string", + "title": "WH4_x1_y1_z2_1_materialType", + "description": "" + }, + "WH4_x1_y1_z2_1_quantity": { + "default": 0.0, + "type": "number", + "title": "WH4_x1_y1_z2_1_quantity", + "description": "" + }, + "WH4_x1_y1_z2_1_targetWH": { + "default": "", + "type": "string", + "title": "WH4_x1_y1_z2_1_targetWH", + "description": "" + }, + "WH4_x1_y2_z1_6_materialName": { + "default": "", + "type": "string", + "title": "WH4_x1_y2_z1_6_materialName", + "description": "" + }, + "WH4_x1_y2_z1_6_quantity": { + "default": 0.0, + "type": "number", + "title": "WH4_x1_y2_z1_6_quantity", + "description": "" + }, + "WH4_x1_y2_z2_4_materialName": { + "default": "", + "type": "string", + "title": "WH4_x1_y2_z2_4_materialName", + "description": "" + }, + "WH4_x1_y2_z2_4_materialType": { + "default": "", + "type": "string", + "title": "WH4_x1_y2_z2_4_materialType", + "description": "" + }, + "WH4_x1_y2_z2_4_quantity": { + "default": 0.0, + "type": "number", + "title": "WH4_x1_y2_z2_4_quantity", + "description": "" + }, + "WH4_x1_y2_z2_4_targetWH": { + "default": "", + "type": "string", + "title": "WH4_x1_y2_z2_4_targetWH", + "description": "" + }, + "WH4_x1_y3_z1_11_materialName": { + "default": "", + "type": "string", + "title": "WH4_x1_y3_z1_11_materialName", + "description": "" + }, + "WH4_x1_y3_z1_11_quantity": { + "default": 0.0, + "type": "number", + "title": "WH4_x1_y3_z1_11_quantity", + "description": "" + }, + "WH4_x1_y3_z2_7_materialName": { + "default": "", + "type": "string", + "title": "WH4_x1_y3_z2_7_materialName", + "description": "" + }, + "WH4_x1_y3_z2_7_materialType": { + "default": "", + "type": "string", + "title": "WH4_x1_y3_z2_7_materialType", + "description": "" + }, + "WH4_x1_y3_z2_7_quantity": { + "default": 0.0, + "type": "number", + "title": "WH4_x1_y3_z2_7_quantity", + "description": "" + }, + "WH4_x1_y3_z2_7_targetWH": { + "default": "", + "type": "string", + "title": "WH4_x1_y3_z2_7_targetWH", + "description": "" + }, + "WH4_x2_y1_z1_2_materialName": { + "default": "", + "type": "string", + "title": "WH4_x2_y1_z1_2_materialName", + "description": "" + }, + "WH4_x2_y1_z1_2_quantity": { + "default": 0.0, + "type": "number", + "title": "WH4_x2_y1_z1_2_quantity", + "description": "" + }, + "WH4_x2_y1_z2_2_materialName": { + "default": "", + "type": "string", + "title": "WH4_x2_y1_z2_2_materialName", + "description": "" + }, + "WH4_x2_y1_z2_2_materialType": { + "default": "", + "type": "string", + "title": "WH4_x2_y1_z2_2_materialType", + "description": "" + }, + "WH4_x2_y1_z2_2_quantity": { + "default": 0.0, + "type": "number", + "title": "WH4_x2_y1_z2_2_quantity", + "description": "" + }, + "WH4_x2_y1_z2_2_targetWH": { + "default": "", + "type": "string", + "title": "WH4_x2_y1_z2_2_targetWH", + "description": "" + }, + "WH4_x2_y2_z1_7_materialName": { + "default": "", + "type": "string", + "title": "WH4_x2_y2_z1_7_materialName", + "description": "" + }, + "WH4_x2_y2_z1_7_quantity": { + "default": 0.0, + "type": "number", + "title": "WH4_x2_y2_z1_7_quantity", + "description": "" + }, + "WH4_x2_y2_z2_5_materialName": { + "default": "", + "type": "string", + "title": "WH4_x2_y2_z2_5_materialName", + "description": "" + }, + "WH4_x2_y2_z2_5_materialType": { + "default": "", + "type": "string", + "title": "WH4_x2_y2_z2_5_materialType", + "description": "" + }, + "WH4_x2_y2_z2_5_quantity": { + "default": 0.0, + "type": "number", + "title": "WH4_x2_y2_z2_5_quantity", + "description": "" + }, + "WH4_x2_y2_z2_5_targetWH": { + "default": "", + "type": "string", + "title": "WH4_x2_y2_z2_5_targetWH", + "description": "" + }, + "WH4_x2_y3_z1_12_materialName": { + "default": "", + "type": "string", + "title": "WH4_x2_y3_z1_12_materialName", + "description": "" + }, + "WH4_x2_y3_z1_12_quantity": { + "default": 0.0, + "type": "number", + "title": "WH4_x2_y3_z1_12_quantity", + "description": "" + }, + "WH4_x2_y3_z2_8_materialName": { + "default": "", + "type": "string", + "title": "WH4_x2_y3_z2_8_materialName", + "description": "" + }, + "WH4_x2_y3_z2_8_materialType": { + "default": "", + "type": "string", + "title": "WH4_x2_y3_z2_8_materialType", + "description": "" + }, + "WH4_x2_y3_z2_8_quantity": { + "default": 0.0, + "type": "number", + "title": "WH4_x2_y3_z2_8_quantity", + "description": "" + }, + "WH4_x2_y3_z2_8_targetWH": { + "default": "", + "type": "string", + "title": "WH4_x2_y3_z2_8_targetWH", + "description": "" + }, + "WH4_x3_y1_z1_3_materialName": { + "default": "", + "type": "string", + "title": "WH4_x3_y1_z1_3_materialName", + "description": "" + }, + "WH4_x3_y1_z1_3_quantity": { + "default": 0.0, + "type": "number", + "title": "WH4_x3_y1_z1_3_quantity", + "description": "" + }, + "WH4_x3_y1_z2_3_materialName": { + "default": "", + "type": "string", + "title": "WH4_x3_y1_z2_3_materialName", + "description": "" + }, + "WH4_x3_y1_z2_3_materialType": { + "default": "", + "type": "string", + "title": "WH4_x3_y1_z2_3_materialType", + "description": "" + }, + "WH4_x3_y1_z2_3_quantity": { + "default": 0.0, + "type": "number", + "title": "WH4_x3_y1_z2_3_quantity", + "description": "" + }, + "WH4_x3_y1_z2_3_targetWH": { + "default": "", + "type": "string", + "title": "WH4_x3_y1_z2_3_targetWH", + "description": "" + }, + "WH4_x3_y2_z1_8_materialName": { + "default": "", + "type": "string", + "title": "WH4_x3_y2_z1_8_materialName", + "description": "" + }, + "WH4_x3_y2_z1_8_quantity": { + "default": 0.0, + "type": "number", + "title": "WH4_x3_y2_z1_8_quantity", + "description": "" + }, + "WH4_x3_y2_z2_6_materialName": { + "default": "", + "type": "string", + "title": "WH4_x3_y2_z2_6_materialName", + "description": "" + }, + "WH4_x3_y2_z2_6_materialType": { + "default": "", + "type": "string", + "title": "WH4_x3_y2_z2_6_materialType", + "description": "" + }, + "WH4_x3_y2_z2_6_quantity": { + "default": 0.0, + "type": "number", + "title": "WH4_x3_y2_z2_6_quantity", + "description": "" + }, + "WH4_x3_y2_z2_6_targetWH": { + "default": "", + "type": "string", + "title": "WH4_x3_y2_z2_6_targetWH", + "description": "" + }, + "WH4_x3_y3_z2_9_materialName": { + "default": "", + "type": "string", + "title": "WH4_x3_y3_z2_9_materialName", + "description": "" + }, + "WH4_x3_y3_z2_9_materialType": { + "default": "", + "type": "string", + "title": "WH4_x3_y3_z2_9_materialType", + "description": "" + }, + "WH4_x3_y3_z2_9_quantity": { + "default": 0.0, + "type": "number", + "title": "WH4_x3_y3_z2_9_quantity", + "description": "" + }, + "WH4_x3_y3_z2_9_targetWH": { + "default": "", + "type": "string", + "title": "WH4_x3_y3_z2_9_targetWH", + "description": "" + }, + "WH4_x4_y1_z1_4_materialName": { + "default": "", + "type": "string", + "title": "WH4_x4_y1_z1_4_materialName", + "description": "" + }, + "WH4_x4_y1_z1_4_quantity": { + "default": 0.0, + "type": "number", + "title": "WH4_x4_y1_z1_4_quantity", + "description": "" + }, + "WH4_x4_y2_z1_9_materialName": { + "default": "", + "type": "string", + "title": "WH4_x4_y2_z1_9_materialName", + "description": "" + }, + "WH4_x4_y2_z1_9_quantity": { + "default": 0.0, + "type": "number", + "title": "WH4_x4_y2_z1_9_quantity", + "description": "" + }, + "WH4_x5_y1_z1_5_materialName": { + "default": "", + "type": "string", + "title": "WH4_x5_y1_z1_5_materialName", + "description": "" + }, + "WH4_x5_y1_z1_5_quantity": { + "default": 0.0, + "type": "number", + "title": "WH4_x5_y1_z1_5_quantity", + "description": "" + }, + "WH4_x5_y2_z1_10_materialName": { + "default": "", + "type": "string", + "title": "WH4_x5_y2_z1_10_materialName", + "description": "" + }, + "WH4_x5_y2_z1_10_quantity": { + "default": 0.0, + "type": "number", + "title": "WH4_x5_y2_z1_10_quantity", + "description": "" + }, + "xlsx_path": { + "default": "D:\\UniLab\\Uni-Lab-OS\\unilabos\\devices\\workstation\\bioyond_studio\\bioyond_cell\\material_template.xlsx", + "type": "string", + "title": "xlsx_path", + "description": "" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "auto_feeding4to3参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-create_and_inbound_materials": { + "feedback": {}, + "goal": {}, + "goal_default": { + "material_names": null, + "type_id": "3a190ca0-b2f6-9aeb-8067-547e72c11469", + "warehouse_name": "粉末加样头堆栈" + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "material_names": { + "items": { + "type": "string" + }, + "type": "array", + "title": "material_names", + "description": "" + }, + "type_id": { + "default": "3a190ca0-b2f6-9aeb-8067-547e72c11469", + "type": "string", + "title": "type_id", + "description": "" + }, + "warehouse_name": { + "default": "粉末加样头堆栈", + "type": "string", + "title": "warehouse_name", + "description": "" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "create_and_inbound_materials参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-create_material": { + "feedback": {}, + "goal": {}, + "goal_default": { + "location_name_or_id": null, + "material_name": null, + "type_id": null, + "warehouse_name": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "location_name_or_id": { + "type": "string", + "title": "location_name_or_id", + "description": "" + }, + "material_name": { + "type": "string", + "title": "material_name", + "description": "" + }, + "type_id": { + "type": "string", + "title": "type_id", + "description": "" + }, + "warehouse_name": { + "type": "string", + "title": "warehouse_name", + "description": "" + } + }, + "required": [ + "material_name", + "type_id", + "warehouse_name" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "create_material参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-create_materials": { + "feedback": {}, + "goal": {}, + "goal_default": { + "mappings": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "mappings": { + "additionalProperties": { + "type": "object" + }, + "type": "object", + "title": "mappings", + "description": "" + } + }, + "required": [ + "mappings" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "items": { + "type": "object" + }, + "type": "array" + } + }, + "required": [ + "goal" + ], + "title": "create_materials参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-create_orders": { + "feedback": {}, + "goal": {}, + "goal_default": { + "xlsx_path": null + }, + "handles": { + "output": [ + { + "data_key": "total_orders", + "data_source": "executor", + "data_type": "integer", + "handler_key": "bottle_count", + "io_type": "sink", + "label": "配液瓶数" + } + ] + }, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "xlsx_path": { + "type": "string", + "title": "xlsx_path", + "description": "" + } + }, + "required": [ + "xlsx_path" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "create_orders参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-create_orders_v2": { + "feedback": {}, + "goal": {}, + "goal_default": { + "xlsx_path": null + }, + "handles": { + "output": [ + { + "data_key": "total_orders", + "data_source": "executor", + "data_type": "integer", + "handler_key": "bottle_count", + "io_type": "sink", + "label": "配液瓶数" + } + ] + }, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "从Excel解析并创建实验(V2版本)", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "xlsx_path": { + "type": "string", + "title": "xlsx_path", + "description": "" + } + }, + "required": [ + "xlsx_path" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "create_orders_v2参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-create_sample": { + "feedback": {}, + "goal": {}, + "goal_default": { + "board_type": null, + "bottle_type": null, + "location_code": null, + "name": null, + "warehouse_name": "手动堆栈" + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "board_type": { + "type": "string", + "title": "board_type", + "description": "" + }, + "bottle_type": { + "type": "string", + "title": "bottle_type", + "description": "" + }, + "location_code": { + "type": "string", + "title": "location_code", + "description": "" + }, + "name": { + "type": "string", + "title": "name", + "description": "" + }, + "warehouse_name": { + "default": "手动堆栈", + "type": "string", + "title": "warehouse_name", + "description": "" + } + }, + "required": [ + "name", + "board_type", + "bottle_type", + "location_code" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "create_sample参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-order_list_v2": { + "feedback": {}, + "goal": {}, + "goal_default": { + "beginTime": "", + "endTime": "", + "filter": "", + "pageCount": 1, + "skipCount": 0, + "sorting": "", + "status": "", + "timeType": "" + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "beginTime": { + "default": "", + "type": "string", + "title": "beginTime", + "description": "" + }, + "endTime": { + "default": "", + "type": "string", + "title": "endTime", + "description": "" + }, + "filter": { + "default": "", + "type": "string", + "title": "filter", + "description": "" + }, + "pageCount": { + "default": 1, + "type": "integer", + "title": "pageCount", + "description": "" + }, + "skipCount": { + "default": 0, + "type": "integer", + "title": "skipCount", + "description": "" + }, + "sorting": { + "default": "", + "type": "string", + "title": "sorting", + "description": "" + }, + "status": { + "default": "", + "type": "string", + "title": "status", + "description": "" + }, + "timeType": { + "default": "", + "type": "string", + "title": "timeType", + "description": "" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "order_list_v2参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-process_order_finish_report": { + "feedback": {}, + "goal": {}, + "goal_default": { + "report_request": null, + "used_materials": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "report_request": { + "type": "string", + "title": "report_request", + "description": "" + }, + "used_materials": { + "type": "string", + "title": "used_materials", + "description": "" + } + }, + "required": [ + "report_request" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "process_order_finish_report参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-process_sample_finish_report": { + "feedback": {}, + "goal": {}, + "goal_default": { + "report_request": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "report_request": { + "type": "string", + "title": "report_request", + "description": "" + } + }, + "required": [ + "report_request" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "process_sample_finish_report参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-process_step_finish_report": { + "feedback": {}, + "goal": {}, + "goal_default": { + "report_request": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "report_request": { + "type": "string", + "title": "report_request", + "description": "" + } + }, + "required": [ + "report_request" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "process_step_finish_report参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-report_material_change": { + "feedback": {}, + "goal": {}, + "goal_default": { + "material_obj": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "material_obj": { + "type": "object", + "title": "material_obj", + "description": "" + } + }, + "required": [ + "material_obj" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "report_material_change参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-resource_tree_transfer": { + "feedback": {}, + "goal": {}, + "goal_default": { + "old_parent": null, + "parent_resource": null, + "plr_resource": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "old_parent": { + "type": "object", + "title": "old_parent", + "description": "" + }, + "parent_resource": { + "type": "object", + "title": "parent_resource", + "description": "" + }, + "plr_resource": { + "type": "object", + "title": "plr_resource", + "description": "" + } + }, + "required": [ + "old_parent", + "plr_resource", + "parent_resource" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "resource_tree_transfer参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-scheduler_continue": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "scheduler_continue参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-scheduler_reset": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "scheduler_reset参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-scheduler_start": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "scheduler_start参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-scheduler_start_and_auto_feeding": { + "feedback": {}, + "goal": {}, + "goal_default": { + "WH3_x1_y1_z3_1_materialId": "", + "WH3_x1_y1_z3_1_materialType": "", + "WH3_x1_y1_z3_1_quantity": 0, + "WH3_x1_y2_z3_4_materialId": "", + "WH3_x1_y2_z3_4_materialType": "", + "WH3_x1_y2_z3_4_quantity": 0, + "WH3_x1_y3_z3_7_materialId": "", + "WH3_x1_y3_z3_7_materialType": "", + "WH3_x1_y3_z3_7_quantity": 0, + "WH3_x1_y4_z3_10_materialId": "", + "WH3_x1_y4_z3_10_materialType": "", + "WH3_x1_y4_z3_10_quantity": 0, + "WH3_x1_y5_z3_13_materialId": "", + "WH3_x1_y5_z3_13_materialType": "", + "WH3_x1_y5_z3_13_quantity": 0, + "WH3_x2_y1_z3_2_materialId": "", + "WH3_x2_y1_z3_2_materialType": "", + "WH3_x2_y1_z3_2_quantity": 0, + "WH3_x2_y2_z3_5_materialId": "", + "WH3_x2_y2_z3_5_materialType": "", + "WH3_x2_y2_z3_5_quantity": 0, + "WH3_x2_y3_z3_8_materialId": "", + "WH3_x2_y3_z3_8_materialType": "", + "WH3_x2_y3_z3_8_quantity": 0, + "WH3_x2_y4_z3_11_materialId": "", + "WH3_x2_y4_z3_11_materialType": "", + "WH3_x2_y4_z3_11_quantity": 0, + "WH3_x2_y5_z3_14_materialId": "", + "WH3_x2_y5_z3_14_materialType": "", + "WH3_x2_y5_z3_14_quantity": 0, + "WH3_x3_y1_z3_3_materialId": "", + "WH3_x3_y1_z3_3_materialType": "", + "WH3_x3_y1_z3_3_quantity": 0, + "WH3_x3_y2_z3_6_materialId": "", + "WH3_x3_y2_z3_6_materialType": "", + "WH3_x3_y2_z3_6_quantity": 0, + "WH3_x3_y3_z3_9_materialId": "", + "WH3_x3_y3_z3_9_materialType": "", + "WH3_x3_y3_z3_9_quantity": 0, + "WH3_x3_y4_z3_12_materialId": "", + "WH3_x3_y4_z3_12_materialType": "", + "WH3_x3_y4_z3_12_quantity": 0, + "WH3_x3_y5_z3_15_materialId": "", + "WH3_x3_y5_z3_15_materialType": "", + "WH3_x3_y5_z3_15_quantity": 0, + "WH4_x1_y1_z1_1_materialName": "", + "WH4_x1_y1_z1_1_quantity": 0.0, + "WH4_x1_y1_z2_1_materialName": "", + "WH4_x1_y1_z2_1_materialType": "", + "WH4_x1_y1_z2_1_quantity": 0.0, + "WH4_x1_y1_z2_1_targetWH": "", + "WH4_x1_y2_z1_6_materialName": "", + "WH4_x1_y2_z1_6_quantity": 0.0, + "WH4_x1_y2_z2_4_materialName": "", + "WH4_x1_y2_z2_4_materialType": "", + "WH4_x1_y2_z2_4_quantity": 0.0, + "WH4_x1_y2_z2_4_targetWH": "", + "WH4_x1_y3_z1_11_materialName": "", + "WH4_x1_y3_z1_11_quantity": 0.0, + "WH4_x1_y3_z2_7_materialName": "", + "WH4_x1_y3_z2_7_materialType": "", + "WH4_x1_y3_z2_7_quantity": 0.0, + "WH4_x1_y3_z2_7_targetWH": "", + "WH4_x2_y1_z1_2_materialName": "", + "WH4_x2_y1_z1_2_quantity": 0.0, + "WH4_x2_y1_z2_2_materialName": "", + "WH4_x2_y1_z2_2_materialType": "", + "WH4_x2_y1_z2_2_quantity": 0.0, + "WH4_x2_y1_z2_2_targetWH": "", + "WH4_x2_y2_z1_7_materialName": "", + "WH4_x2_y2_z1_7_quantity": 0.0, + "WH4_x2_y2_z2_5_materialName": "", + "WH4_x2_y2_z2_5_materialType": "", + "WH4_x2_y2_z2_5_quantity": 0.0, + "WH4_x2_y2_z2_5_targetWH": "", + "WH4_x2_y3_z1_12_materialName": "", + "WH4_x2_y3_z1_12_quantity": 0.0, + "WH4_x2_y3_z2_8_materialName": "", + "WH4_x2_y3_z2_8_materialType": "", + "WH4_x2_y3_z2_8_quantity": 0.0, + "WH4_x2_y3_z2_8_targetWH": "", + "WH4_x3_y1_z1_3_materialName": "", + "WH4_x3_y1_z1_3_quantity": 0.0, + "WH4_x3_y1_z2_3_materialName": "", + "WH4_x3_y1_z2_3_materialType": "", + "WH4_x3_y1_z2_3_quantity": 0.0, + "WH4_x3_y1_z2_3_targetWH": "", + "WH4_x3_y2_z1_8_materialName": "", + "WH4_x3_y2_z1_8_quantity": 0.0, + "WH4_x3_y2_z2_6_materialName": "", + "WH4_x3_y2_z2_6_materialType": "", + "WH4_x3_y2_z2_6_quantity": 0.0, + "WH4_x3_y2_z2_6_targetWH": "", + "WH4_x3_y3_z2_9_materialName": "", + "WH4_x3_y3_z2_9_materialType": "", + "WH4_x3_y3_z2_9_quantity": 0.0, + "WH4_x3_y3_z2_9_targetWH": "", + "WH4_x4_y1_z1_4_materialName": "", + "WH4_x4_y1_z1_4_quantity": 0.0, + "WH4_x4_y2_z1_9_materialName": "", + "WH4_x4_y2_z1_9_quantity": 0.0, + "WH4_x5_y1_z1_5_materialName": "", + "WH4_x5_y1_z1_5_quantity": 0.0, + "WH4_x5_y2_z1_10_materialName": "", + "WH4_x5_y2_z1_10_quantity": 0.0, + "xlsx_path": "D:\\UniLab\\Uni-Lab-OS\\unilabos\\devices\\workstation\\bioyond_studio\\bioyond_cell\\material_template.xlsx" + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "组合函数:先启动调度,然后执行自动化上料", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "WH3_x1_y1_z3_1_materialId": { + "default": "", + "type": "string", + "title": "WH3_x1_y1_z3_1_materialId", + "description": "" + }, + "WH3_x1_y1_z3_1_materialType": { + "default": "", + "type": "string", + "title": "WH3_x1_y1_z3_1_materialType", + "description": "" + }, + "WH3_x1_y1_z3_1_quantity": { + "default": 0, + "type": "number", + "title": "WH3_x1_y1_z3_1_quantity", + "description": "" + }, + "WH3_x1_y2_z3_4_materialId": { + "default": "", + "type": "string", + "title": "WH3_x1_y2_z3_4_materialId", + "description": "" + }, + "WH3_x1_y2_z3_4_materialType": { + "default": "", + "type": "string", + "title": "WH3_x1_y2_z3_4_materialType", + "description": "" + }, + "WH3_x1_y2_z3_4_quantity": { + "default": 0, + "type": "number", + "title": "WH3_x1_y2_z3_4_quantity", + "description": "" + }, + "WH3_x1_y3_z3_7_materialId": { + "default": "", + "type": "string", + "title": "WH3_x1_y3_z3_7_materialId", + "description": "" + }, + "WH3_x1_y3_z3_7_materialType": { + "default": "", + "type": "string", + "title": "WH3_x1_y3_z3_7_materialType", + "description": "" + }, + "WH3_x1_y3_z3_7_quantity": { + "default": 0, + "type": "number", + "title": "WH3_x1_y3_z3_7_quantity", + "description": "" + }, + "WH3_x1_y4_z3_10_materialId": { + "default": "", + "type": "string", + "title": "WH3_x1_y4_z3_10_materialId", + "description": "" + }, + "WH3_x1_y4_z3_10_materialType": { + "default": "", + "type": "string", + "title": "WH3_x1_y4_z3_10_materialType", + "description": "" + }, + "WH3_x1_y4_z3_10_quantity": { + "default": 0, + "type": "number", + "title": "WH3_x1_y4_z3_10_quantity", + "description": "" + }, + "WH3_x1_y5_z3_13_materialId": { + "default": "", + "type": "string", + "title": "WH3_x1_y5_z3_13_materialId", + "description": "" + }, + "WH3_x1_y5_z3_13_materialType": { + "default": "", + "type": "string", + "title": "WH3_x1_y5_z3_13_materialType", + "description": "" + }, + "WH3_x1_y5_z3_13_quantity": { + "default": 0, + "type": "number", + "title": "WH3_x1_y5_z3_13_quantity", + "description": "" + }, + "WH3_x2_y1_z3_2_materialId": { + "default": "", + "type": "string", + "title": "WH3_x2_y1_z3_2_materialId", + "description": "" + }, + "WH3_x2_y1_z3_2_materialType": { + "default": "", + "type": "string", + "title": "WH3_x2_y1_z3_2_materialType", + "description": "" + }, + "WH3_x2_y1_z3_2_quantity": { + "default": 0, + "type": "number", + "title": "WH3_x2_y1_z3_2_quantity", + "description": "" + }, + "WH3_x2_y2_z3_5_materialId": { + "default": "", + "type": "string", + "title": "WH3_x2_y2_z3_5_materialId", + "description": "" + }, + "WH3_x2_y2_z3_5_materialType": { + "default": "", + "type": "string", + "title": "WH3_x2_y2_z3_5_materialType", + "description": "" + }, + "WH3_x2_y2_z3_5_quantity": { + "default": 0, + "type": "number", + "title": "WH3_x2_y2_z3_5_quantity", + "description": "" + }, + "WH3_x2_y3_z3_8_materialId": { + "default": "", + "type": "string", + "title": "WH3_x2_y3_z3_8_materialId", + "description": "" + }, + "WH3_x2_y3_z3_8_materialType": { + "default": "", + "type": "string", + "title": "WH3_x2_y3_z3_8_materialType", + "description": "" + }, + "WH3_x2_y3_z3_8_quantity": { + "default": 0, + "type": "number", + "title": "WH3_x2_y3_z3_8_quantity", + "description": "" + }, + "WH3_x2_y4_z3_11_materialId": { + "default": "", + "type": "string", + "title": "WH3_x2_y4_z3_11_materialId", + "description": "" + }, + "WH3_x2_y4_z3_11_materialType": { + "default": "", + "type": "string", + "title": "WH3_x2_y4_z3_11_materialType", + "description": "" + }, + "WH3_x2_y4_z3_11_quantity": { + "default": 0, + "type": "number", + "title": "WH3_x2_y4_z3_11_quantity", + "description": "" + }, + "WH3_x2_y5_z3_14_materialId": { + "default": "", + "type": "string", + "title": "WH3_x2_y5_z3_14_materialId", + "description": "" + }, + "WH3_x2_y5_z3_14_materialType": { + "default": "", + "type": "string", + "title": "WH3_x2_y5_z3_14_materialType", + "description": "" + }, + "WH3_x2_y5_z3_14_quantity": { + "default": 0, + "type": "number", + "title": "WH3_x2_y5_z3_14_quantity", + "description": "" + }, + "WH3_x3_y1_z3_3_materialId": { + "default": "", + "type": "string", + "title": "WH3_x3_y1_z3_3_materialId", + "description": "" + }, + "WH3_x3_y1_z3_3_materialType": { + "default": "", + "type": "string", + "title": "WH3_x3_y1_z3_3_materialType", + "description": "" + }, + "WH3_x3_y1_z3_3_quantity": { + "default": 0, + "type": "number", + "title": "WH3_x3_y1_z3_3_quantity", + "description": "" + }, + "WH3_x3_y2_z3_6_materialId": { + "default": "", + "type": "string", + "title": "WH3_x3_y2_z3_6_materialId", + "description": "" + }, + "WH3_x3_y2_z3_6_materialType": { + "default": "", + "type": "string", + "title": "WH3_x3_y2_z3_6_materialType", + "description": "" + }, + "WH3_x3_y2_z3_6_quantity": { + "default": 0, + "type": "number", + "title": "WH3_x3_y2_z3_6_quantity", + "description": "" + }, + "WH3_x3_y3_z3_9_materialId": { + "default": "", + "type": "string", + "title": "WH3_x3_y3_z3_9_materialId", + "description": "" + }, + "WH3_x3_y3_z3_9_materialType": { + "default": "", + "type": "string", + "title": "WH3_x3_y3_z3_9_materialType", + "description": "" + }, + "WH3_x3_y3_z3_9_quantity": { + "default": 0, + "type": "number", + "title": "WH3_x3_y3_z3_9_quantity", + "description": "" + }, + "WH3_x3_y4_z3_12_materialId": { + "default": "", + "type": "string", + "title": "WH3_x3_y4_z3_12_materialId", + "description": "" + }, + "WH3_x3_y4_z3_12_materialType": { + "default": "", + "type": "string", + "title": "WH3_x3_y4_z3_12_materialType", + "description": "" + }, + "WH3_x3_y4_z3_12_quantity": { + "default": 0, + "type": "number", + "title": "WH3_x3_y4_z3_12_quantity", + "description": "" + }, + "WH3_x3_y5_z3_15_materialId": { + "default": "", + "type": "string", + "title": "WH3_x3_y5_z3_15_materialId", + "description": "" + }, + "WH3_x3_y5_z3_15_materialType": { + "default": "", + "type": "string", + "title": "WH3_x3_y5_z3_15_materialType", + "description": "" + }, + "WH3_x3_y5_z3_15_quantity": { + "default": 0, + "type": "number", + "title": "WH3_x3_y5_z3_15_quantity", + "description": "" + }, + "WH4_x1_y1_z1_1_materialName": { + "default": "", + "type": "string", + "title": "WH4_x1_y1_z1_1_materialName", + "description": "" + }, + "WH4_x1_y1_z1_1_quantity": { + "default": 0.0, + "type": "number", + "title": "WH4_x1_y1_z1_1_quantity", + "description": "" + }, + "WH4_x1_y1_z2_1_materialName": { + "default": "", + "type": "string", + "title": "WH4_x1_y1_z2_1_materialName", + "description": "" + }, + "WH4_x1_y1_z2_1_materialType": { + "default": "", + "type": "string", + "title": "WH4_x1_y1_z2_1_materialType", + "description": "" + }, + "WH4_x1_y1_z2_1_quantity": { + "default": 0.0, + "type": "number", + "title": "WH4_x1_y1_z2_1_quantity", + "description": "" + }, + "WH4_x1_y1_z2_1_targetWH": { + "default": "", + "type": "string", + "title": "WH4_x1_y1_z2_1_targetWH", + "description": "" + }, + "WH4_x1_y2_z1_6_materialName": { + "default": "", + "type": "string", + "title": "WH4_x1_y2_z1_6_materialName", + "description": "" + }, + "WH4_x1_y2_z1_6_quantity": { + "default": 0.0, + "type": "number", + "title": "WH4_x1_y2_z1_6_quantity", + "description": "" + }, + "WH4_x1_y2_z2_4_materialName": { + "default": "", + "type": "string", + "title": "WH4_x1_y2_z2_4_materialName", + "description": "" + }, + "WH4_x1_y2_z2_4_materialType": { + "default": "", + "type": "string", + "title": "WH4_x1_y2_z2_4_materialType", + "description": "" + }, + "WH4_x1_y2_z2_4_quantity": { + "default": 0.0, + "type": "number", + "title": "WH4_x1_y2_z2_4_quantity", + "description": "" + }, + "WH4_x1_y2_z2_4_targetWH": { + "default": "", + "type": "string", + "title": "WH4_x1_y2_z2_4_targetWH", + "description": "" + }, + "WH4_x1_y3_z1_11_materialName": { + "default": "", + "type": "string", + "title": "WH4_x1_y3_z1_11_materialName", + "description": "" + }, + "WH4_x1_y3_z1_11_quantity": { + "default": 0.0, + "type": "number", + "title": "WH4_x1_y3_z1_11_quantity", + "description": "" + }, + "WH4_x1_y3_z2_7_materialName": { + "default": "", + "type": "string", + "title": "WH4_x1_y3_z2_7_materialName", + "description": "" + }, + "WH4_x1_y3_z2_7_materialType": { + "default": "", + "type": "string", + "title": "WH4_x1_y3_z2_7_materialType", + "description": "" + }, + "WH4_x1_y3_z2_7_quantity": { + "default": 0.0, + "type": "number", + "title": "WH4_x1_y3_z2_7_quantity", + "description": "" + }, + "WH4_x1_y3_z2_7_targetWH": { + "default": "", + "type": "string", + "title": "WH4_x1_y3_z2_7_targetWH", + "description": "" + }, + "WH4_x2_y1_z1_2_materialName": { + "default": "", + "type": "string", + "title": "WH4_x2_y1_z1_2_materialName", + "description": "" + }, + "WH4_x2_y1_z1_2_quantity": { + "default": 0.0, + "type": "number", + "title": "WH4_x2_y1_z1_2_quantity", + "description": "" + }, + "WH4_x2_y1_z2_2_materialName": { + "default": "", + "type": "string", + "title": "WH4_x2_y1_z2_2_materialName", + "description": "" + }, + "WH4_x2_y1_z2_2_materialType": { + "default": "", + "type": "string", + "title": "WH4_x2_y1_z2_2_materialType", + "description": "" + }, + "WH4_x2_y1_z2_2_quantity": { + "default": 0.0, + "type": "number", + "title": "WH4_x2_y1_z2_2_quantity", + "description": "" + }, + "WH4_x2_y1_z2_2_targetWH": { + "default": "", + "type": "string", + "title": "WH4_x2_y1_z2_2_targetWH", + "description": "" + }, + "WH4_x2_y2_z1_7_materialName": { + "default": "", + "type": "string", + "title": "WH4_x2_y2_z1_7_materialName", + "description": "" + }, + "WH4_x2_y2_z1_7_quantity": { + "default": 0.0, + "type": "number", + "title": "WH4_x2_y2_z1_7_quantity", + "description": "" + }, + "WH4_x2_y2_z2_5_materialName": { + "default": "", + "type": "string", + "title": "WH4_x2_y2_z2_5_materialName", + "description": "" + }, + "WH4_x2_y2_z2_5_materialType": { + "default": "", + "type": "string", + "title": "WH4_x2_y2_z2_5_materialType", + "description": "" + }, + "WH4_x2_y2_z2_5_quantity": { + "default": 0.0, + "type": "number", + "title": "WH4_x2_y2_z2_5_quantity", + "description": "" + }, + "WH4_x2_y2_z2_5_targetWH": { + "default": "", + "type": "string", + "title": "WH4_x2_y2_z2_5_targetWH", + "description": "" + }, + "WH4_x2_y3_z1_12_materialName": { + "default": "", + "type": "string", + "title": "WH4_x2_y3_z1_12_materialName", + "description": "" + }, + "WH4_x2_y3_z1_12_quantity": { + "default": 0.0, + "type": "number", + "title": "WH4_x2_y3_z1_12_quantity", + "description": "" + }, + "WH4_x2_y3_z2_8_materialName": { + "default": "", + "type": "string", + "title": "WH4_x2_y3_z2_8_materialName", + "description": "" + }, + "WH4_x2_y3_z2_8_materialType": { + "default": "", + "type": "string", + "title": "WH4_x2_y3_z2_8_materialType", + "description": "" + }, + "WH4_x2_y3_z2_8_quantity": { + "default": 0.0, + "type": "number", + "title": "WH4_x2_y3_z2_8_quantity", + "description": "" + }, + "WH4_x2_y3_z2_8_targetWH": { + "default": "", + "type": "string", + "title": "WH4_x2_y3_z2_8_targetWH", + "description": "" + }, + "WH4_x3_y1_z1_3_materialName": { + "default": "", + "type": "string", + "title": "WH4_x3_y1_z1_3_materialName", + "description": "" + }, + "WH4_x3_y1_z1_3_quantity": { + "default": 0.0, + "type": "number", + "title": "WH4_x3_y1_z1_3_quantity", + "description": "" + }, + "WH4_x3_y1_z2_3_materialName": { + "default": "", + "type": "string", + "title": "WH4_x3_y1_z2_3_materialName", + "description": "" + }, + "WH4_x3_y1_z2_3_materialType": { + "default": "", + "type": "string", + "title": "WH4_x3_y1_z2_3_materialType", + "description": "" + }, + "WH4_x3_y1_z2_3_quantity": { + "default": 0.0, + "type": "number", + "title": "WH4_x3_y1_z2_3_quantity", + "description": "" + }, + "WH4_x3_y1_z2_3_targetWH": { + "default": "", + "type": "string", + "title": "WH4_x3_y1_z2_3_targetWH", + "description": "" + }, + "WH4_x3_y2_z1_8_materialName": { + "default": "", + "type": "string", + "title": "WH4_x3_y2_z1_8_materialName", + "description": "" + }, + "WH4_x3_y2_z1_8_quantity": { + "default": 0.0, + "type": "number", + "title": "WH4_x3_y2_z1_8_quantity", + "description": "" + }, + "WH4_x3_y2_z2_6_materialName": { + "default": "", + "type": "string", + "title": "WH4_x3_y2_z2_6_materialName", + "description": "" + }, + "WH4_x3_y2_z2_6_materialType": { + "default": "", + "type": "string", + "title": "WH4_x3_y2_z2_6_materialType", + "description": "" + }, + "WH4_x3_y2_z2_6_quantity": { + "default": 0.0, + "type": "number", + "title": "WH4_x3_y2_z2_6_quantity", + "description": "" + }, + "WH4_x3_y2_z2_6_targetWH": { + "default": "", + "type": "string", + "title": "WH4_x3_y2_z2_6_targetWH", + "description": "" + }, + "WH4_x3_y3_z2_9_materialName": { + "default": "", + "type": "string", + "title": "WH4_x3_y3_z2_9_materialName", + "description": "" + }, + "WH4_x3_y3_z2_9_materialType": { + "default": "", + "type": "string", + "title": "WH4_x3_y3_z2_9_materialType", + "description": "" + }, + "WH4_x3_y3_z2_9_quantity": { + "default": 0.0, + "type": "number", + "title": "WH4_x3_y3_z2_9_quantity", + "description": "" + }, + "WH4_x3_y3_z2_9_targetWH": { + "default": "", + "type": "string", + "title": "WH4_x3_y3_z2_9_targetWH", + "description": "" + }, + "WH4_x4_y1_z1_4_materialName": { + "default": "", + "type": "string", + "title": "WH4_x4_y1_z1_4_materialName", + "description": "" + }, + "WH4_x4_y1_z1_4_quantity": { + "default": 0.0, + "type": "number", + "title": "WH4_x4_y1_z1_4_quantity", + "description": "" + }, + "WH4_x4_y2_z1_9_materialName": { + "default": "", + "type": "string", + "title": "WH4_x4_y2_z1_9_materialName", + "description": "" + }, + "WH4_x4_y2_z1_9_quantity": { + "default": 0.0, + "type": "number", + "title": "WH4_x4_y2_z1_9_quantity", + "description": "" + }, + "WH4_x5_y1_z1_5_materialName": { + "default": "", + "type": "string", + "title": "WH4_x5_y1_z1_5_materialName", + "description": "" + }, + "WH4_x5_y1_z1_5_quantity": { + "default": 0.0, + "type": "number", + "title": "WH4_x5_y1_z1_5_quantity", + "description": "" + }, + "WH4_x5_y2_z1_10_materialName": { + "default": "", + "type": "string", + "title": "WH4_x5_y2_z1_10_materialName", + "description": "" + }, + "WH4_x5_y2_z1_10_quantity": { + "default": 0.0, + "type": "number", + "title": "WH4_x5_y2_z1_10_quantity", + "description": "" + }, + "xlsx_path": { + "default": "D:\\UniLab\\Uni-Lab-OS\\unilabos\\devices\\workstation\\bioyond_studio\\bioyond_cell\\material_template.xlsx", + "type": "string", + "title": "xlsx_path", + "description": "" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "scheduler_start_and_auto_feeding参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-scheduler_start_and_auto_feeding_v2": { + "feedback": {}, + "goal": {}, + "goal_default": { + "WH3_x1_y1_z3_1_materialId": "", + "WH3_x1_y1_z3_1_materialType": "", + "WH3_x1_y1_z3_1_quantity": 0, + "WH3_x1_y2_z3_4_materialId": "", + "WH3_x1_y2_z3_4_materialType": "", + "WH3_x1_y2_z3_4_quantity": 0, + "WH3_x1_y3_z3_7_materialId": "", + "WH3_x1_y3_z3_7_materialType": "", + "WH3_x1_y3_z3_7_quantity": 0, + "WH3_x1_y4_z3_10_materialId": "", + "WH3_x1_y4_z3_10_materialType": "", + "WH3_x1_y4_z3_10_quantity": 0, + "WH3_x1_y5_z3_13_materialId": "", + "WH3_x1_y5_z3_13_materialType": "", + "WH3_x1_y5_z3_13_quantity": 0, + "WH3_x2_y1_z3_2_materialId": "", + "WH3_x2_y1_z3_2_materialType": "", + "WH3_x2_y1_z3_2_quantity": 0, + "WH3_x2_y2_z3_5_materialId": "", + "WH3_x2_y2_z3_5_materialType": "", + "WH3_x2_y2_z3_5_quantity": 0, + "WH3_x2_y3_z3_8_materialId": "", + "WH3_x2_y3_z3_8_materialType": "", + "WH3_x2_y3_z3_8_quantity": 0, + "WH3_x2_y4_z3_11_materialId": "", + "WH3_x2_y4_z3_11_materialType": "", + "WH3_x2_y4_z3_11_quantity": 0, + "WH3_x2_y5_z3_14_materialId": "", + "WH3_x2_y5_z3_14_materialType": "", + "WH3_x2_y5_z3_14_quantity": 0, + "WH3_x3_y1_z3_3_materialId": "", + "WH3_x3_y1_z3_3_materialType": "", + "WH3_x3_y1_z3_3_quantity": 0, + "WH3_x3_y2_z3_6_materialId": "", + "WH3_x3_y2_z3_6_materialType": "", + "WH3_x3_y2_z3_6_quantity": 0, + "WH3_x3_y3_z3_9_materialId": "", + "WH3_x3_y3_z3_9_materialType": "", + "WH3_x3_y3_z3_9_quantity": 0, + "WH3_x3_y4_z3_12_materialId": "", + "WH3_x3_y4_z3_12_materialType": "", + "WH3_x3_y4_z3_12_quantity": 0, + "WH3_x3_y5_z3_15_materialId": "", + "WH3_x3_y5_z3_15_materialType": "", + "WH3_x3_y5_z3_15_quantity": 0, + "WH4_x1_y1_z1_1_materialName": "", + "WH4_x1_y1_z1_1_quantity": 0.0, + "WH4_x1_y1_z2_1_materialName": "", + "WH4_x1_y1_z2_1_materialType": "", + "WH4_x1_y1_z2_1_quantity": 0.0, + "WH4_x1_y1_z2_1_targetWH": "", + "WH4_x1_y2_z1_6_materialName": "", + "WH4_x1_y2_z1_6_quantity": 0.0, + "WH4_x1_y2_z2_4_materialName": "", + "WH4_x1_y2_z2_4_materialType": "", + "WH4_x1_y2_z2_4_quantity": 0.0, + "WH4_x1_y2_z2_4_targetWH": "", + "WH4_x1_y3_z1_11_materialName": "", + "WH4_x1_y3_z1_11_quantity": 0.0, + "WH4_x1_y3_z2_7_materialName": "", + "WH4_x1_y3_z2_7_materialType": "", + "WH4_x1_y3_z2_7_quantity": 0.0, + "WH4_x1_y3_z2_7_targetWH": "", + "WH4_x2_y1_z1_2_materialName": "", + "WH4_x2_y1_z1_2_quantity": 0.0, + "WH4_x2_y1_z2_2_materialName": "", + "WH4_x2_y1_z2_2_materialType": "", + "WH4_x2_y1_z2_2_quantity": 0.0, + "WH4_x2_y1_z2_2_targetWH": "", + "WH4_x2_y2_z1_7_materialName": "", + "WH4_x2_y2_z1_7_quantity": 0.0, + "WH4_x2_y2_z2_5_materialName": "", + "WH4_x2_y2_z2_5_materialType": "", + "WH4_x2_y2_z2_5_quantity": 0.0, + "WH4_x2_y2_z2_5_targetWH": "", + "WH4_x2_y3_z1_12_materialName": "", + "WH4_x2_y3_z1_12_quantity": 0.0, + "WH4_x2_y3_z2_8_materialName": "", + "WH4_x2_y3_z2_8_materialType": "", + "WH4_x2_y3_z2_8_quantity": 0.0, + "WH4_x2_y3_z2_8_targetWH": "", + "WH4_x3_y1_z1_3_materialName": "", + "WH4_x3_y1_z1_3_quantity": 0.0, + "WH4_x3_y1_z2_3_materialName": "", + "WH4_x3_y1_z2_3_materialType": "", + "WH4_x3_y1_z2_3_quantity": 0.0, + "WH4_x3_y1_z2_3_targetWH": "", + "WH4_x3_y2_z1_8_materialName": "", + "WH4_x3_y2_z1_8_quantity": 0.0, + "WH4_x3_y2_z2_6_materialName": "", + "WH4_x3_y2_z2_6_materialType": "", + "WH4_x3_y2_z2_6_quantity": 0.0, + "WH4_x3_y2_z2_6_targetWH": "", + "WH4_x3_y3_z2_9_materialName": "", + "WH4_x3_y3_z2_9_materialType": "", + "WH4_x3_y3_z2_9_quantity": 0.0, + "WH4_x3_y3_z2_9_targetWH": "", + "WH4_x4_y1_z1_4_materialName": "", + "WH4_x4_y1_z1_4_quantity": 0.0, + "WH4_x4_y2_z1_9_materialName": "", + "WH4_x4_y2_z1_9_quantity": 0.0, + "WH4_x5_y1_z1_5_materialName": "", + "WH4_x5_y1_z1_5_quantity": 0.0, + "WH4_x5_y2_z1_10_materialName": "", + "WH4_x5_y2_z1_10_quantity": 0.0, + "xlsx_path": "D:\\UniLab\\Uni-Lab-OS\\unilabos\\devices\\workstation\\bioyond_studio\\bioyond_cell\\material_template.xlsx" + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "组合函数V2版本(测试):先启动调度,然后执行自动化上料(使用非阻塞轮询等待)", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "WH3_x1_y1_z3_1_materialId": { + "default": "", + "type": "string", + "title": "WH3_x1_y1_z3_1_materialId", + "description": "" + }, + "WH3_x1_y1_z3_1_materialType": { + "default": "", + "type": "string", + "title": "WH3_x1_y1_z3_1_materialType", + "description": "" + }, + "WH3_x1_y1_z3_1_quantity": { + "default": 0, + "type": "number", + "title": "WH3_x1_y1_z3_1_quantity", + "description": "" + }, + "WH3_x1_y2_z3_4_materialId": { + "default": "", + "type": "string", + "title": "WH3_x1_y2_z3_4_materialId", + "description": "" + }, + "WH3_x1_y2_z3_4_materialType": { + "default": "", + "type": "string", + "title": "WH3_x1_y2_z3_4_materialType", + "description": "" + }, + "WH3_x1_y2_z3_4_quantity": { + "default": 0, + "type": "number", + "title": "WH3_x1_y2_z3_4_quantity", + "description": "" + }, + "WH3_x1_y3_z3_7_materialId": { + "default": "", + "type": "string", + "title": "WH3_x1_y3_z3_7_materialId", + "description": "" + }, + "WH3_x1_y3_z3_7_materialType": { + "default": "", + "type": "string", + "title": "WH3_x1_y3_z3_7_materialType", + "description": "" + }, + "WH3_x1_y3_z3_7_quantity": { + "default": 0, + "type": "number", + "title": "WH3_x1_y3_z3_7_quantity", + "description": "" + }, + "WH3_x1_y4_z3_10_materialId": { + "default": "", + "type": "string", + "title": "WH3_x1_y4_z3_10_materialId", + "description": "" + }, + "WH3_x1_y4_z3_10_materialType": { + "default": "", + "type": "string", + "title": "WH3_x1_y4_z3_10_materialType", + "description": "" + }, + "WH3_x1_y4_z3_10_quantity": { + "default": 0, + "type": "number", + "title": "WH3_x1_y4_z3_10_quantity", + "description": "" + }, + "WH3_x1_y5_z3_13_materialId": { + "default": "", + "type": "string", + "title": "WH3_x1_y5_z3_13_materialId", + "description": "" + }, + "WH3_x1_y5_z3_13_materialType": { + "default": "", + "type": "string", + "title": "WH3_x1_y5_z3_13_materialType", + "description": "" + }, + "WH3_x1_y5_z3_13_quantity": { + "default": 0, + "type": "number", + "title": "WH3_x1_y5_z3_13_quantity", + "description": "" + }, + "WH3_x2_y1_z3_2_materialId": { + "default": "", + "type": "string", + "title": "WH3_x2_y1_z3_2_materialId", + "description": "" + }, + "WH3_x2_y1_z3_2_materialType": { + "default": "", + "type": "string", + "title": "WH3_x2_y1_z3_2_materialType", + "description": "" + }, + "WH3_x2_y1_z3_2_quantity": { + "default": 0, + "type": "number", + "title": "WH3_x2_y1_z3_2_quantity", + "description": "" + }, + "WH3_x2_y2_z3_5_materialId": { + "default": "", + "type": "string", + "title": "WH3_x2_y2_z3_5_materialId", + "description": "" + }, + "WH3_x2_y2_z3_5_materialType": { + "default": "", + "type": "string", + "title": "WH3_x2_y2_z3_5_materialType", + "description": "" + }, + "WH3_x2_y2_z3_5_quantity": { + "default": 0, + "type": "number", + "title": "WH3_x2_y2_z3_5_quantity", + "description": "" + }, + "WH3_x2_y3_z3_8_materialId": { + "default": "", + "type": "string", + "title": "WH3_x2_y3_z3_8_materialId", + "description": "" + }, + "WH3_x2_y3_z3_8_materialType": { + "default": "", + "type": "string", + "title": "WH3_x2_y3_z3_8_materialType", + "description": "" + }, + "WH3_x2_y3_z3_8_quantity": { + "default": 0, + "type": "number", + "title": "WH3_x2_y3_z3_8_quantity", + "description": "" + }, + "WH3_x2_y4_z3_11_materialId": { + "default": "", + "type": "string", + "title": "WH3_x2_y4_z3_11_materialId", + "description": "" + }, + "WH3_x2_y4_z3_11_materialType": { + "default": "", + "type": "string", + "title": "WH3_x2_y4_z3_11_materialType", + "description": "" + }, + "WH3_x2_y4_z3_11_quantity": { + "default": 0, + "type": "number", + "title": "WH3_x2_y4_z3_11_quantity", + "description": "" + }, + "WH3_x2_y5_z3_14_materialId": { + "default": "", + "type": "string", + "title": "WH3_x2_y5_z3_14_materialId", + "description": "" + }, + "WH3_x2_y5_z3_14_materialType": { + "default": "", + "type": "string", + "title": "WH3_x2_y5_z3_14_materialType", + "description": "" + }, + "WH3_x2_y5_z3_14_quantity": { + "default": 0, + "type": "number", + "title": "WH3_x2_y5_z3_14_quantity", + "description": "" + }, + "WH3_x3_y1_z3_3_materialId": { + "default": "", + "type": "string", + "title": "WH3_x3_y1_z3_3_materialId", + "description": "" + }, + "WH3_x3_y1_z3_3_materialType": { + "default": "", + "type": "string", + "title": "WH3_x3_y1_z3_3_materialType", + "description": "" + }, + "WH3_x3_y1_z3_3_quantity": { + "default": 0, + "type": "number", + "title": "WH3_x3_y1_z3_3_quantity", + "description": "" + }, + "WH3_x3_y2_z3_6_materialId": { + "default": "", + "type": "string", + "title": "WH3_x3_y2_z3_6_materialId", + "description": "" + }, + "WH3_x3_y2_z3_6_materialType": { + "default": "", + "type": "string", + "title": "WH3_x3_y2_z3_6_materialType", + "description": "" + }, + "WH3_x3_y2_z3_6_quantity": { + "default": 0, + "type": "number", + "title": "WH3_x3_y2_z3_6_quantity", + "description": "" + }, + "WH3_x3_y3_z3_9_materialId": { + "default": "", + "type": "string", + "title": "WH3_x3_y3_z3_9_materialId", + "description": "" + }, + "WH3_x3_y3_z3_9_materialType": { + "default": "", + "type": "string", + "title": "WH3_x3_y3_z3_9_materialType", + "description": "" + }, + "WH3_x3_y3_z3_9_quantity": { + "default": 0, + "type": "number", + "title": "WH3_x3_y3_z3_9_quantity", + "description": "" + }, + "WH3_x3_y4_z3_12_materialId": { + "default": "", + "type": "string", + "title": "WH3_x3_y4_z3_12_materialId", + "description": "" + }, + "WH3_x3_y4_z3_12_materialType": { + "default": "", + "type": "string", + "title": "WH3_x3_y4_z3_12_materialType", + "description": "" + }, + "WH3_x3_y4_z3_12_quantity": { + "default": 0, + "type": "number", + "title": "WH3_x3_y4_z3_12_quantity", + "description": "" + }, + "WH3_x3_y5_z3_15_materialId": { + "default": "", + "type": "string", + "title": "WH3_x3_y5_z3_15_materialId", + "description": "" + }, + "WH3_x3_y5_z3_15_materialType": { + "default": "", + "type": "string", + "title": "WH3_x3_y5_z3_15_materialType", + "description": "" + }, + "WH3_x3_y5_z3_15_quantity": { + "default": 0, + "type": "number", + "title": "WH3_x3_y5_z3_15_quantity", + "description": "" + }, + "WH4_x1_y1_z1_1_materialName": { + "default": "", + "type": "string", + "title": "WH4_x1_y1_z1_1_materialName", + "description": "" + }, + "WH4_x1_y1_z1_1_quantity": { + "default": 0.0, + "type": "number", + "title": "WH4_x1_y1_z1_1_quantity", + "description": "" + }, + "WH4_x1_y1_z2_1_materialName": { + "default": "", + "type": "string", + "title": "WH4_x1_y1_z2_1_materialName", + "description": "" + }, + "WH4_x1_y1_z2_1_materialType": { + "default": "", + "type": "string", + "title": "WH4_x1_y1_z2_1_materialType", + "description": "" + }, + "WH4_x1_y1_z2_1_quantity": { + "default": 0.0, + "type": "number", + "title": "WH4_x1_y1_z2_1_quantity", + "description": "" + }, + "WH4_x1_y1_z2_1_targetWH": { + "default": "", + "type": "string", + "title": "WH4_x1_y1_z2_1_targetWH", + "description": "" + }, + "WH4_x1_y2_z1_6_materialName": { + "default": "", + "type": "string", + "title": "WH4_x1_y2_z1_6_materialName", + "description": "" + }, + "WH4_x1_y2_z1_6_quantity": { + "default": 0.0, + "type": "number", + "title": "WH4_x1_y2_z1_6_quantity", + "description": "" + }, + "WH4_x1_y2_z2_4_materialName": { + "default": "", + "type": "string", + "title": "WH4_x1_y2_z2_4_materialName", + "description": "" + }, + "WH4_x1_y2_z2_4_materialType": { + "default": "", + "type": "string", + "title": "WH4_x1_y2_z2_4_materialType", + "description": "" + }, + "WH4_x1_y2_z2_4_quantity": { + "default": 0.0, + "type": "number", + "title": "WH4_x1_y2_z2_4_quantity", + "description": "" + }, + "WH4_x1_y2_z2_4_targetWH": { + "default": "", + "type": "string", + "title": "WH4_x1_y2_z2_4_targetWH", + "description": "" + }, + "WH4_x1_y3_z1_11_materialName": { + "default": "", + "type": "string", + "title": "WH4_x1_y3_z1_11_materialName", + "description": "" + }, + "WH4_x1_y3_z1_11_quantity": { + "default": 0.0, + "type": "number", + "title": "WH4_x1_y3_z1_11_quantity", + "description": "" + }, + "WH4_x1_y3_z2_7_materialName": { + "default": "", + "type": "string", + "title": "WH4_x1_y3_z2_7_materialName", + "description": "" + }, + "WH4_x1_y3_z2_7_materialType": { + "default": "", + "type": "string", + "title": "WH4_x1_y3_z2_7_materialType", + "description": "" + }, + "WH4_x1_y3_z2_7_quantity": { + "default": 0.0, + "type": "number", + "title": "WH4_x1_y3_z2_7_quantity", + "description": "" + }, + "WH4_x1_y3_z2_7_targetWH": { + "default": "", + "type": "string", + "title": "WH4_x1_y3_z2_7_targetWH", + "description": "" + }, + "WH4_x2_y1_z1_2_materialName": { + "default": "", + "type": "string", + "title": "WH4_x2_y1_z1_2_materialName", + "description": "" + }, + "WH4_x2_y1_z1_2_quantity": { + "default": 0.0, + "type": "number", + "title": "WH4_x2_y1_z1_2_quantity", + "description": "" + }, + "WH4_x2_y1_z2_2_materialName": { + "default": "", + "type": "string", + "title": "WH4_x2_y1_z2_2_materialName", + "description": "" + }, + "WH4_x2_y1_z2_2_materialType": { + "default": "", + "type": "string", + "title": "WH4_x2_y1_z2_2_materialType", + "description": "" + }, + "WH4_x2_y1_z2_2_quantity": { + "default": 0.0, + "type": "number", + "title": "WH4_x2_y1_z2_2_quantity", + "description": "" + }, + "WH4_x2_y1_z2_2_targetWH": { + "default": "", + "type": "string", + "title": "WH4_x2_y1_z2_2_targetWH", + "description": "" + }, + "WH4_x2_y2_z1_7_materialName": { + "default": "", + "type": "string", + "title": "WH4_x2_y2_z1_7_materialName", + "description": "" + }, + "WH4_x2_y2_z1_7_quantity": { + "default": 0.0, + "type": "number", + "title": "WH4_x2_y2_z1_7_quantity", + "description": "" + }, + "WH4_x2_y2_z2_5_materialName": { + "default": "", + "type": "string", + "title": "WH4_x2_y2_z2_5_materialName", + "description": "" + }, + "WH4_x2_y2_z2_5_materialType": { + "default": "", + "type": "string", + "title": "WH4_x2_y2_z2_5_materialType", + "description": "" + }, + "WH4_x2_y2_z2_5_quantity": { + "default": 0.0, + "type": "number", + "title": "WH4_x2_y2_z2_5_quantity", + "description": "" + }, + "WH4_x2_y2_z2_5_targetWH": { + "default": "", + "type": "string", + "title": "WH4_x2_y2_z2_5_targetWH", + "description": "" + }, + "WH4_x2_y3_z1_12_materialName": { + "default": "", + "type": "string", + "title": "WH4_x2_y3_z1_12_materialName", + "description": "" + }, + "WH4_x2_y3_z1_12_quantity": { + "default": 0.0, + "type": "number", + "title": "WH4_x2_y3_z1_12_quantity", + "description": "" + }, + "WH4_x2_y3_z2_8_materialName": { + "default": "", + "type": "string", + "title": "WH4_x2_y3_z2_8_materialName", + "description": "" + }, + "WH4_x2_y3_z2_8_materialType": { + "default": "", + "type": "string", + "title": "WH4_x2_y3_z2_8_materialType", + "description": "" + }, + "WH4_x2_y3_z2_8_quantity": { + "default": 0.0, + "type": "number", + "title": "WH4_x2_y3_z2_8_quantity", + "description": "" + }, + "WH4_x2_y3_z2_8_targetWH": { + "default": "", + "type": "string", + "title": "WH4_x2_y3_z2_8_targetWH", + "description": "" + }, + "WH4_x3_y1_z1_3_materialName": { + "default": "", + "type": "string", + "title": "WH4_x3_y1_z1_3_materialName", + "description": "" + }, + "WH4_x3_y1_z1_3_quantity": { + "default": 0.0, + "type": "number", + "title": "WH4_x3_y1_z1_3_quantity", + "description": "" + }, + "WH4_x3_y1_z2_3_materialName": { + "default": "", + "type": "string", + "title": "WH4_x3_y1_z2_3_materialName", + "description": "" + }, + "WH4_x3_y1_z2_3_materialType": { + "default": "", + "type": "string", + "title": "WH4_x3_y1_z2_3_materialType", + "description": "" + }, + "WH4_x3_y1_z2_3_quantity": { + "default": 0.0, + "type": "number", + "title": "WH4_x3_y1_z2_3_quantity", + "description": "" + }, + "WH4_x3_y1_z2_3_targetWH": { + "default": "", + "type": "string", + "title": "WH4_x3_y1_z2_3_targetWH", + "description": "" + }, + "WH4_x3_y2_z1_8_materialName": { + "default": "", + "type": "string", + "title": "WH4_x3_y2_z1_8_materialName", + "description": "" + }, + "WH4_x3_y2_z1_8_quantity": { + "default": 0.0, + "type": "number", + "title": "WH4_x3_y2_z1_8_quantity", + "description": "" + }, + "WH4_x3_y2_z2_6_materialName": { + "default": "", + "type": "string", + "title": "WH4_x3_y2_z2_6_materialName", + "description": "" + }, + "WH4_x3_y2_z2_6_materialType": { + "default": "", + "type": "string", + "title": "WH4_x3_y2_z2_6_materialType", + "description": "" + }, + "WH4_x3_y2_z2_6_quantity": { + "default": 0.0, + "type": "number", + "title": "WH4_x3_y2_z2_6_quantity", + "description": "" + }, + "WH4_x3_y2_z2_6_targetWH": { + "default": "", + "type": "string", + "title": "WH4_x3_y2_z2_6_targetWH", + "description": "" + }, + "WH4_x3_y3_z2_9_materialName": { + "default": "", + "type": "string", + "title": "WH4_x3_y3_z2_9_materialName", + "description": "" + }, + "WH4_x3_y3_z2_9_materialType": { + "default": "", + "type": "string", + "title": "WH4_x3_y3_z2_9_materialType", + "description": "" + }, + "WH4_x3_y3_z2_9_quantity": { + "default": 0.0, + "type": "number", + "title": "WH4_x3_y3_z2_9_quantity", + "description": "" + }, + "WH4_x3_y3_z2_9_targetWH": { + "default": "", + "type": "string", + "title": "WH4_x3_y3_z2_9_targetWH", + "description": "" + }, + "WH4_x4_y1_z1_4_materialName": { + "default": "", + "type": "string", + "title": "WH4_x4_y1_z1_4_materialName", + "description": "" + }, + "WH4_x4_y1_z1_4_quantity": { + "default": 0.0, + "type": "number", + "title": "WH4_x4_y1_z1_4_quantity", + "description": "" + }, + "WH4_x4_y2_z1_9_materialName": { + "default": "", + "type": "string", + "title": "WH4_x4_y2_z1_9_materialName", + "description": "" + }, + "WH4_x4_y2_z1_9_quantity": { + "default": 0.0, + "type": "number", + "title": "WH4_x4_y2_z1_9_quantity", + "description": "" + }, + "WH4_x5_y1_z1_5_materialName": { + "default": "", + "type": "string", + "title": "WH4_x5_y1_z1_5_materialName", + "description": "" + }, + "WH4_x5_y1_z1_5_quantity": { + "default": 0.0, + "type": "number", + "title": "WH4_x5_y1_z1_5_quantity", + "description": "" + }, + "WH4_x5_y2_z1_10_materialName": { + "default": "", + "type": "string", + "title": "WH4_x5_y2_z1_10_materialName", + "description": "" + }, + "WH4_x5_y2_z1_10_quantity": { + "default": 0.0, + "type": "number", + "title": "WH4_x5_y2_z1_10_quantity", + "description": "" + }, + "xlsx_path": { + "default": "D:\\UniLab\\Uni-Lab-OS\\unilabos\\devices\\workstation\\bioyond_studio\\bioyond_cell\\material_template.xlsx", + "type": "string", + "title": "xlsx_path", + "description": "" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "scheduler_start_and_auto_feeding_v2参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-scheduler_stop": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "scheduler_stop参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-storage_batch_inbound": { + "feedback": {}, + "goal": {}, + "goal_default": { + "items": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "items": { + "items": { + "additionalProperties": { + "type": "string" + }, + "type": "object" + }, + "type": "array", + "title": "items", + "description": "" + } + }, + "required": [ + "items" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "storage_batch_inbound参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-storage_inbound": { + "feedback": {}, + "goal": {}, + "goal_default": { + "location_id": null, + "material_id": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "location_id": { + "type": "string", + "title": "location_id", + "description": "" + }, + "material_id": { + "type": "string", + "title": "material_id", + "description": "" + } + }, + "required": [ + "material_id", + "location_id" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "storage_inbound参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-transfer_1_to_2": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "transfer_1_to_2参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-transfer_3_to_2": { + "feedback": {}, + "goal": {}, + "goal_default": { + "source_wh_id": "3a19debc-84b4-0359-e2d4-b3beea49348b", + "source_x": 1, + "source_y": 1, + "source_z": 1 + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "3-2 物料转运,从3号位置转运到2号位置", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "source_wh_id": { + "default": "3a19debc-84b4-0359-e2d4-b3beea49348b", + "description": "来源仓库ID", + "type": "string", + "title": "source_wh_id" + }, + "source_x": { + "default": 1, + "description": "来源位置X坐标", + "type": "integer", + "title": "source_x" + }, + "source_y": { + "default": 1, + "description": "来源位置Y坐标", + "type": "integer", + "title": "source_y" + }, + "source_z": { + "default": 1, + "description": "来源位置Z坐标", + "type": "integer", + "title": "source_z" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "transfer_3_to_2参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-transfer_3_to_2_to_1": { + "feedback": {}, + "goal": {}, + "goal_default": { + "source_wh_id": "3a19debc-84b4-0359-e2d4-b3beea49348b", + "source_x": 1, + "source_y": 1, + "source_z": 1 + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "source_wh_id": { + "default": "3a19debc-84b4-0359-e2d4-b3beea49348b", + "type": "string", + "title": "source_wh_id", + "description": "" + }, + "source_x": { + "default": 1, + "type": "integer", + "title": "source_x", + "description": "" + }, + "source_y": { + "default": 1, + "type": "integer", + "title": "source_y", + "description": "" + }, + "source_z": { + "default": 1, + "type": "integer", + "title": "source_z", + "description": "" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "transfer_3_to_2_to_1参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-update_push_ip": { + "feedback": {}, + "goal": {}, + "goal_default": { + "ip": null, + "port": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "ip": { + "type": "string", + "title": "ip", + "description": "" + }, + "port": { + "type": "integer", + "title": "port", + "description": "" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "update_push_ip参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-wait_for_order_finish": { + "feedback": {}, + "goal": {}, + "goal_default": { + "order_code": null, + "timeout": 36000 + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "order_code": { + "type": "string", + "title": "order_code", + "description": "" + }, + "timeout": { + "default": 36000, + "type": "integer", + "title": "timeout", + "description": "" + } + }, + "required": [ + "order_code" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "wait_for_order_finish参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-wait_for_order_finish_polling": { + "feedback": {}, + "goal": {}, + "goal_default": { + "order_code": null, + "poll_interval": 0.5, + "timeout": 36000 + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "order_code": { + "type": "string", + "title": "order_code", + "description": "" + }, + "poll_interval": { + "default": 0.5, + "type": "number", + "title": "poll_interval", + "description": "" + }, + "timeout": { + "default": 36000, + "type": "integer", + "title": "timeout", + "description": "" + } + }, + "required": [ + "order_code" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "wait_for_order_finish_polling参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-wait_for_transfer_task": { + "feedback": {}, + "goal": {}, + "goal_default": { + "filter_text": null, + "interval": 5, + "timeout": 3000 + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "filter_text": { + "type": "string", + "title": "filter_text", + "description": "" + }, + "interval": { + "default": 5, + "type": "integer", + "title": "interval", + "description": "" + }, + "timeout": { + "default": 3000, + "type": "integer", + "title": "timeout", + "description": "" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "boolean" + } + }, + "required": [ + "goal" + ], + "title": "wait_for_transfer_task参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + } + }, + "module": "unilabos.devices.workstation.bioyond_studio.bioyond_cell.bioyond_cell_workstation:BioyondCellWorkstation", + "status_types": { + "device_id": "" + }, + "type": "python" + }, + "config_info": [], + "description": "", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/devices/bioyond_cell.yaml", + "handles": [], + "icon": "benyao2.webp", + "init_param_schema": { + "config": { + "properties": { + "bioyond_config": { + "type": "object" + }, + "deck": { + "type": "string" + }, + "protocol_type": { + "type": "string" + } + }, + "required": [], + "type": "object" + }, + "data": { + "properties": { + "device_id": { + "type": "string" + } + }, + "required": [ + "device_id" + ], + "type": "object" + } + }, + "registry_type": "device", + "version": "1.0.0" + }, + { + "id": "virtual_centrifuge", + "category": [ + "virtual_device" + ], + "class": { + "action_value_mappings": { + "auto-cleanup": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "cleanup的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "boolean" + } + }, + "required": [ + "goal" + ], + "title": "cleanup参数", + "type": "object" + }, + "type": "UniLabJsonCommandAsync" + }, + "auto-initialize": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "initialize的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "boolean" + } + }, + "required": [ + "goal" + ], + "title": "initialize参数", + "type": "object" + }, + "type": "UniLabJsonCommandAsync" + }, + "centrifuge": { + "feedback": { + "current_speed": "current_speed", + "current_status": "current_status", + "current_temp": "current_temp", + "progress": "progress" + }, + "goal": { + "speed": "speed", + "temp": "temp", + "time": "time", + "vessel": "vessel" + }, + "goal_default": { + "vessel": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + }, + "speed": 0.0, + "time": 0.0, + "temp": 0.0 + }, + "handles": {}, + "placeholder_keys": {}, + "result": { + "message": "message", + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "Centrifuge", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "vessel": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "vessel", + "additionalProperties": false, + "description": "" + }, + "speed": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "speed", + "description": "" + }, + "time": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "time", + "description": "" + }, + "temp": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "temp", + "description": "" + } + }, + "title": "Centrifuge_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": false, + "properties": { + "progress": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "current_speed": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "current_temp": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "current_status": { + "type": "string" + } + }, + "title": "Centrifuge_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "success": { + "type": "boolean" + }, + "message": { + "type": "string" + }, + "return_info": { + "type": "string" + } + }, + "title": "Centrifuge_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "Centrifuge" + } + }, + "module": "unilabos.devices.virtual.virtual_centrifuge:VirtualCentrifuge", + "status_types": { + "centrifuge_state": "String", + "current_speed": "Float64", + "current_temp": "Float64", + "max_speed": "Float64", + "max_temp": "Float64", + "message": "String", + "min_temp": "Float64", + "progress": "Float64", + "status": "String", + "target_speed": "Float64", + "target_temp": "Float64", + "time_remaining": "Float64" + }, + "type": "python" + }, + "config_info": [], + "description": "Virtual Centrifuge for CentrifugeProtocol Testing", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/devices/virtual_device.yaml", + "handles": [ + { + "data_key": "vessel", + "data_source": "handle", + "data_type": "transport", + "description": "需要离心的样品容器", + "handler_key": "centrifuge", + "io_type": "target", + "label": "centrifuge", + "side": "NORTH" + } + ], + "icon": "", + "init_param_schema": { + "config": { + "properties": { + "config": { + "type": "object" + }, + "device_id": { + "type": "string" + } + }, + "required": [], + "type": "object" + }, + "data": { + "properties": { + "centrifuge_state": { + "type": "string" + }, + "current_speed": { + "type": "number" + }, + "current_temp": { + "type": "number" + }, + "max_speed": { + "type": "number" + }, + "max_temp": { + "type": "number" + }, + "message": { + "type": "string" + }, + "min_temp": { + "type": "number" + }, + "progress": { + "type": "number" + }, + "status": { + "type": "string" + }, + "target_speed": { + "type": "number" + }, + "target_temp": { + "type": "number" + }, + "time_remaining": { + "type": "number" + } + }, + "required": [ + "centrifuge_state", + "current_speed", + "current_temp", + "max_speed", + "max_temp", + "message", + "min_temp", + "progress", + "status", + "target_speed", + "target_temp", + "time_remaining" + ], + "type": "object" + } + }, + "registry_type": "device", + "version": "1.0.0" + }, + { + "id": "virtual_column", + "category": [ + "virtual_device" + ], + "class": { + "action_value_mappings": { + "auto-cleanup": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "cleanup的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "boolean" + } + }, + "required": [ + "goal" + ], + "title": "cleanup参数", + "type": "object" + }, + "type": "UniLabJsonCommandAsync" + }, + "auto-initialize": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "initialize的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "boolean" + } + }, + "required": [ + "goal" + ], + "title": "initialize参数", + "type": "object" + }, + "type": "UniLabJsonCommandAsync" + }, + "run_column": { + "feedback": { + "progress": "progress", + "status": "status" + }, + "goal": { + "column": "column", + "from_vessel": "from_vessel", + "pct1": "pct1", + "pct2": "pct2", + "ratio": "ratio", + "rf": "rf", + "solvent1": "solvent1", + "solvent2": "solvent2", + "to_vessel": "to_vessel" + }, + "goal_default": { + "from_vessel": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + }, + "to_vessel": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + }, + "column": "", + "rf": "", + "pct1": "", + "pct2": "", + "solvent1": "", + "solvent2": "", + "ratio": "" + }, + "handles": {}, + "placeholder_keys": {}, + "result": { + "message": "message", + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "RunColumn", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "from_vessel": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "from_vessel", + "additionalProperties": false, + "description": "" + }, + "to_vessel": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "to_vessel", + "additionalProperties": false, + "description": "" + }, + "column": { + "type": "string", + "title": "column", + "description": "" + }, + "rf": { + "type": "string", + "title": "rf", + "description": "" + }, + "pct1": { + "type": "string", + "title": "pct1", + "description": "" + }, + "pct2": { + "type": "string", + "title": "pct2", + "description": "" + }, + "solvent1": { + "type": "string", + "title": "solvent1", + "description": "" + }, + "solvent2": { + "type": "string", + "title": "solvent2", + "description": "" + }, + "ratio": { + "type": "string", + "title": "ratio", + "description": "" + } + }, + "title": "RunColumn_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": false, + "properties": { + "status": { + "type": "string" + }, + "progress": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "title": "RunColumn_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "success": { + "type": "boolean" + }, + "message": { + "type": "string" + }, + "return_info": { + "type": "string" + } + }, + "title": "RunColumn_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "RunColumn" + } + }, + "module": "unilabos.devices.virtual.virtual_column:VirtualColumn", + "status_types": { + "column_diameter": "Float64", + "column_length": "Float64", + "column_state": "String", + "current_flow_rate": "Float64", + "current_phase": "String", + "current_status": "String", + "final_volume": "Float64", + "max_flow_rate": "Float64", + "processed_volume": "Float64", + "progress": "Float64", + "status": "String" + }, + "type": "python" + }, + "config_info": [], + "description": "Virtual Column Chromatography Device for RunColumn Protocol Testing", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/devices/virtual_device.yaml", + "handles": [ + { + "data_key": "from_vessel", + "data_source": "handle", + "data_type": "transport", + "description": "样品输入口", + "handler_key": "columnin", + "io_type": "target", + "label": "columnin", + "side": "WEST" + }, + { + "data_key": "to_vessel", + "data_source": "handle", + "data_type": "transport", + "description": "产物输出口", + "handler_key": "columnout", + "io_type": "source", + "label": "columnout", + "side": "EAST" + } + ], + "icon": "", + "init_param_schema": { + "config": { + "properties": { + "config": { + "type": "object" + }, + "device_id": { + "type": "string" + } + }, + "required": [], + "type": "object" + }, + "data": { + "properties": { + "column_diameter": { + "type": "number" + }, + "column_length": { + "type": "number" + }, + "column_state": { + "type": "string" + }, + "current_flow_rate": { + "type": "number" + }, + "current_phase": { + "type": "string" + }, + "current_status": { + "type": "string" + }, + "final_volume": { + "type": "number" + }, + "max_flow_rate": { + "type": "number" + }, + "processed_volume": { + "type": "number" + }, + "progress": { + "type": "number" + }, + "status": { + "type": "string" + } + }, + "required": [ + "column_diameter", + "column_length", + "column_state", + "current_flow_rate", + "current_phase", + "current_status", + "final_volume", + "max_flow_rate", + "processed_volume", + "progress", + "status" + ], + "type": "object" + } + }, + "registry_type": "device", + "version": "1.0.0" + }, + { + "id": "virtual_filter", + "category": [ + "virtual_device" + ], + "class": { + "action_value_mappings": { + "auto-cleanup": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "cleanup的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "boolean" + } + }, + "required": [ + "goal" + ], + "title": "cleanup参数", + "type": "object" + }, + "type": "UniLabJsonCommandAsync" + }, + "auto-initialize": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "initialize的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "boolean" + } + }, + "required": [ + "goal" + ], + "title": "initialize参数", + "type": "object" + }, + "type": "UniLabJsonCommandAsync" + }, + "filter": { + "feedback": { + "current_status": "current_status", + "current_temp": "current_temp", + "filtered_volume": "filtered_volume", + "progress": "progress" + }, + "goal": { + "continue_heatchill": "continue_heatchill", + "filtrate_vessel": "filtrate_vessel", + "stir": "stir", + "stir_speed": "stir_speed", + "temp": "temp", + "vessel": "vessel", + "volume": "volume" + }, + "goal_default": { + "vessel": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + }, + "filtrate_vessel": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + }, + "stir": false, + "stir_speed": 0.0, + "temp": 0.0, + "continue_heatchill": false, + "volume": 0.0 + }, + "handles": {}, + "placeholder_keys": {}, + "result": { + "message": "message", + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "Filter", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "vessel": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "vessel", + "additionalProperties": false, + "description": "" + }, + "filtrate_vessel": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "filtrate_vessel", + "additionalProperties": false, + "description": "" + }, + "stir": { + "type": "boolean", + "title": "stir", + "description": "" + }, + "stir_speed": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "stir_speed", + "description": "" + }, + "temp": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "temp", + "description": "" + }, + "continue_heatchill": { + "type": "boolean", + "title": "continue_heatchill", + "description": "" + }, + "volume": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "volume", + "description": "" + } + }, + "title": "Filter_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": false, + "properties": { + "progress": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "current_temp": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "filtered_volume": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "current_status": { + "type": "string" + } + }, + "title": "Filter_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "success": { + "type": "boolean" + }, + "message": { + "type": "string" + }, + "return_info": { + "type": "string" + } + }, + "title": "Filter_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "Filter" + } + }, + "module": "unilabos.devices.virtual.virtual_filter:VirtualFilter", + "status_types": { + "current_status": "String", + "current_temp": "Float64", + "filtered_volume": "Float64", + "max_stir_speed": "Float64", + "max_temp": "Float64", + "max_volume": "Float64", + "message": "String", + "progress": "Float64", + "status": "String" + }, + "type": "python" + }, + "config_info": [], + "description": "Virtual Filter for FilterProtocol Testing", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/devices/virtual_device.yaml", + "handles": [ + { + "data_key": "vessel_in", + "data_source": "handle", + "data_type": "transport", + "description": "需要过滤的样品容器", + "handler_key": "filterin", + "io_type": "target", + "label": "filter_in", + "side": "NORTH" + }, + { + "data_key": "filtrate_out", + "data_source": "handle", + "data_type": "transport", + "description": "滤液出口", + "handler_key": "filtrateout", + "io_type": "source", + "label": "filtrate_out", + "side": "SOUTH" + }, + { + "data_key": "retentate_out", + "data_source": "handle", + "data_type": "transport", + "description": "滤渣/固体出口", + "handler_key": "retentateout", + "io_type": "source", + "label": "retentate_out", + "side": "EAST" + } + ], + "icon": "", + "init_param_schema": { + "config": { + "properties": { + "config": { + "type": "object" + }, + "device_id": { + "type": "string" + } + }, + "required": [], + "type": "object" + }, + "data": { + "properties": { + "current_status": { + "type": "string" + }, + "current_temp": { + "type": "number" + }, + "filtered_volume": { + "type": "number" + }, + "max_stir_speed": { + "type": "number" + }, + "max_temp": { + "type": "number" + }, + "max_volume": { + "type": "number" + }, + "message": { + "type": "string" + }, + "progress": { + "type": "number" + }, + "status": { + "type": "string" + } + }, + "required": [ + "current_status", + "current_temp", + "filtered_volume", + "max_stir_speed", + "max_temp", + "max_volume", + "message", + "progress", + "status" + ], + "type": "object" + } + }, + "registry_type": "device", + "version": "1.0.0" + }, + { + "id": "virtual_gas_source", + "category": [ + "virtual_device" + ], + "class": { + "action_value_mappings": { + "auto-cleanup": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "cleanup的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "boolean" + } + }, + "required": [ + "goal" + ], + "title": "cleanup参数", + "type": "object" + }, + "type": "UniLabJsonCommandAsync" + }, + "auto-initialize": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "initialize的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "boolean" + } + }, + "required": [ + "goal" + ], + "title": "initialize参数", + "type": "object" + }, + "type": "UniLabJsonCommandAsync" + }, + "auto-is_closed": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "is_closed的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "is_closed参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-is_open": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "is_open的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "is_open参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "close": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": { + "return_info": "return_info" + }, + "schema": { + "title": "EmptyIn", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": true, + "title": "EmptyIn_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "EmptyIn_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + } + }, + "title": "EmptyIn_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "EmptyIn" + }, + "open": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": { + "return_info": "return_info" + }, + "schema": { + "title": "EmptyIn", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": true, + "title": "EmptyIn_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "EmptyIn_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + } + }, + "title": "EmptyIn_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "EmptyIn" + }, + "set_status": { + "feedback": {}, + "goal": { + "string": "string" + }, + "goal_default": { + "string": "" + }, + "handles": {}, + "placeholder_keys": {}, + "result": { + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "StrSingleInput", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "string": { + "type": "string", + "title": "string", + "description": "" + } + }, + "title": "StrSingleInput_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "StrSingleInput_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "StrSingleInput_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "StrSingleInput" + } + }, + "module": "unilabos.devices.virtual.virtual_gas_source:VirtualGasSource", + "status_types": { + "status": "String" + }, + "type": "python" + }, + "config_info": [], + "description": "Virtual gas source", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/devices/virtual_device.yaml", + "handles": [ + { + "data_key": "fluid_out", + "data_source": "executor", + "data_type": "fluid", + "description": "气源出气口", + "handler_key": "gassource", + "io_type": "source", + "label": "gassource", + "side": "SOUTH" + } + ], + "icon": "", + "init_param_schema": { + "config": { + "properties": { + "config": { + "type": "object" + }, + "device_id": { + "type": "string" + } + }, + "required": [], + "type": "object" + }, + "data": { + "properties": { + "status": { + "type": "string" + } + }, + "required": [ + "status" + ], + "type": "object" + } + }, + "registry_type": "device", + "version": "1.0.0" + }, + { + "id": "virtual_heatchill", + "category": [ + "virtual_device" + ], + "class": { + "action_value_mappings": { + "auto-cleanup": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "cleanup的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "boolean" + } + }, + "required": [ + "goal" + ], + "title": "cleanup参数", + "type": "object" + }, + "type": "UniLabJsonCommandAsync" + }, + "auto-initialize": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "initialize的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "boolean" + } + }, + "required": [ + "goal" + ], + "title": "initialize参数", + "type": "object" + }, + "type": "UniLabJsonCommandAsync" + }, + "heat_chill": { + "feedback": { + "status": "status" + }, + "goal": { + "pressure": "pressure", + "purpose": "purpose", + "reflux_solvent": "reflux_solvent", + "stir": "stir", + "stir_speed": "stir_speed", + "temp": "temp", + "temp_spec": "temp_spec", + "time": "time", + "time_spec": "time_spec", + "vessel": "vessel" + }, + "goal_default": { + "vessel": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + }, + "temp": 0.0, + "time": "", + "temp_spec": "", + "time_spec": "", + "pressure": "", + "reflux_solvent": "", + "stir": false, + "stir_speed": 0.0, + "purpose": "" + }, + "handles": {}, + "placeholder_keys": {}, + "result": { + "message": "message", + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "HeatChill", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "vessel": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "vessel", + "additionalProperties": false, + "description": "" + }, + "temp": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "temp", + "description": "" + }, + "time": { + "type": "string", + "title": "time", + "description": "" + }, + "temp_spec": { + "type": "string", + "title": "temp_spec", + "description": "" + }, + "time_spec": { + "type": "string", + "title": "time_spec", + "description": "" + }, + "pressure": { + "type": "string", + "title": "pressure", + "description": "" + }, + "reflux_solvent": { + "type": "string", + "title": "reflux_solvent", + "description": "" + }, + "stir": { + "type": "boolean", + "title": "stir", + "description": "" + }, + "stir_speed": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "stir_speed", + "description": "" + }, + "purpose": { + "type": "string", + "title": "purpose", + "description": "" + } + }, + "title": "HeatChill_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": false, + "properties": { + "status": { + "type": "string" + } + }, + "title": "HeatChill_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "success": { + "type": "boolean" + }, + "message": { + "type": "string" + }, + "return_info": { + "type": "string" + } + }, + "title": "HeatChill_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "HeatChill" + }, + "heat_chill_start": { + "feedback": { + "status": "status" + }, + "goal": { + "purpose": "purpose", + "temp": "temp", + "vessel": "vessel" + }, + "goal_default": { + "vessel": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + }, + "temp": 0.0, + "purpose": "" + }, + "handles": {}, + "placeholder_keys": {}, + "result": { + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "HeatChillStart", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "vessel": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "vessel", + "additionalProperties": false, + "description": "" + }, + "temp": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "temp", + "description": "" + }, + "purpose": { + "type": "string", + "title": "purpose", + "description": "" + } + }, + "title": "HeatChillStart_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": false, + "properties": { + "status": { + "type": "string" + } + }, + "title": "HeatChillStart_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "HeatChillStart_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "HeatChillStart" + }, + "heat_chill_stop": { + "feedback": { + "status": "status" + }, + "goal": { + "vessel": "vessel" + }, + "goal_default": { + "vessel": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + } + }, + "handles": {}, + "placeholder_keys": {}, + "result": { + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "HeatChillStop", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "vessel": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "vessel", + "additionalProperties": false, + "description": "" + } + }, + "title": "HeatChillStop_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": false, + "properties": { + "status": { + "type": "string" + } + }, + "title": "HeatChillStop_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "HeatChillStop_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "HeatChillStop" + } + }, + "module": "unilabos.devices.virtual.virtual_heatchill:VirtualHeatChill", + "status_types": { + "is_stirring": "Bool", + "max_stir_speed": "Float64", + "max_temp": "Float64", + "min_temp": "Float64", + "operation_mode": "String", + "progress": "Float64", + "remaining_time": "Float64", + "status": "String", + "stir_speed": "Float64" + }, + "type": "python" + }, + "config_info": [], + "description": "Virtual HeatChill for HeatChillProtocol Testing", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/devices/virtual_device.yaml", + "handles": [ + { + "data_key": "vessel", + "data_source": "handle", + "data_type": "mechanical", + "description": "加热/冷却器的物理连接口", + "handler_key": "heatchill", + "io_type": "source", + "label": "heatchill", + "side": "NORTH" + } + ], + "icon": "Heater.webp", + "init_param_schema": { + "config": { + "properties": { + "config": { + "type": "object" + }, + "device_id": { + "type": "string" + } + }, + "required": [], + "type": "object" + }, + "data": { + "properties": { + "is_stirring": { + "type": "boolean" + }, + "max_stir_speed": { + "type": "number" + }, + "max_temp": { + "type": "number" + }, + "min_temp": { + "type": "number" + }, + "operation_mode": { + "type": "string" + }, + "progress": { + "type": "number" + }, + "remaining_time": { + "type": "number" + }, + "status": { + "type": "string" + }, + "stir_speed": { + "type": "number" + } + }, + "required": [ + "is_stirring", + "max_stir_speed", + "max_temp", + "min_temp", + "operation_mode", + "progress", + "remaining_time", + "status", + "stir_speed" + ], + "type": "object" + } + }, + "registry_type": "device", + "version": "1.0.0" + }, + { + "id": "virtual_multiway_valve", + "category": [ + "virtual_device" + ], + "class": { + "action_value_mappings": { + "auto-close": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "close的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "close参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-is_at_port": { + "feedback": {}, + "goal": {}, + "goal_default": { + "port_number": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "is_at_port的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "port_number": { + "type": "integer", + "title": "port_number", + "description": "" + } + }, + "required": [ + "port_number" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "boolean" + } + }, + "required": [ + "goal" + ], + "title": "is_at_port参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-is_at_position": { + "feedback": {}, + "goal": {}, + "goal_default": { + "position": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "is_at_position的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "position": { + "type": "integer", + "title": "position", + "description": "" + } + }, + "required": [ + "position" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "boolean" + } + }, + "required": [ + "goal" + ], + "title": "is_at_position参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-is_at_pump_position": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "is_at_pump_position的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "boolean" + } + }, + "required": [ + "goal" + ], + "title": "is_at_pump_position参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-open": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "open参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-reset": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "reset的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "reset参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-set_to_port": { + "feedback": {}, + "goal": {}, + "goal_default": { + "port_number": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "set_to_port的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "port_number": { + "type": "integer", + "title": "port_number", + "description": "" + } + }, + "required": [ + "port_number" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "set_to_port参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-set_to_pump_position": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "set_to_pump_position的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "set_to_pump_position参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-switch_between_pump_and_port": { + "feedback": {}, + "goal": {}, + "goal_default": { + "port_number": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "switch_between_pump_and_port的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "port_number": { + "type": "integer", + "title": "port_number", + "description": "" + } + }, + "required": [ + "port_number" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "switch_between_pump_and_port参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "set_position": { + "feedback": { + "status": "status" + }, + "goal": { + "command": "command" + }, + "goal_default": { + "command": "" + }, + "handles": {}, + "placeholder_keys": {}, + "result": { + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "SendCmd", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "command": { + "type": "string", + "title": "command", + "description": "" + } + }, + "title": "SendCmd_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": false, + "properties": { + "status": { + "type": "string" + } + }, + "title": "SendCmd_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "SendCmd_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "SendCmd" + }, + "set_valve_position": { + "feedback": { + "status": "status" + }, + "goal": { + "command": "command" + }, + "goal_default": { + "command": "" + }, + "handles": {}, + "placeholder_keys": {}, + "result": { + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "SendCmd", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "command": { + "type": "string", + "title": "command", + "description": "" + } + }, + "title": "SendCmd_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": false, + "properties": { + "status": { + "type": "string" + } + }, + "title": "SendCmd_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "SendCmd_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "SendCmd" + } + }, + "module": "unilabos.devices.virtual.virtual_multiway_valve:VirtualMultiwayValve", + "status_types": { + "current_port": "String", + "current_position": "Int64", + "flow_path": "String", + "status": "String", + "target_position": "Int64", + "valve_position": "Int64", + "valve_state": "String" + }, + "type": "python" + }, + "config_info": [], + "description": "Virtual 8-Way Valve for flow direction control", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/devices/virtual_device.yaml", + "handles": [ + { + "data_key": "fluid_in", + "data_source": "handle", + "data_type": "fluid", + "description": "八通阀门进液口", + "handler_key": "transferpump", + "io_type": "target", + "label": "transferpump", + "side": "NORTH" + }, + { + "data_key": "fluid_port_1", + "data_source": "executor", + "data_type": "fluid", + "description": "八通阀门端口1", + "handler_key": "1", + "io_type": "source", + "label": "1", + "side": "NORTH" + }, + { + "data_key": "fluid_port_2", + "data_source": "executor", + "data_type": "fluid", + "description": "八通阀门端口2", + "handler_key": "2", + "io_type": "source", + "label": "2", + "side": "EAST" + }, + { + "data_key": "fluid_port_3", + "data_source": "executor", + "data_type": "fluid", + "description": "八通阀门端口3", + "handler_key": "3", + "io_type": "source", + "label": "3", + "side": "EAST" + }, + { + "data_key": "fluid_port_4", + "data_source": "executor", + "data_type": "fluid", + "description": "八通阀门端口4", + "handler_key": "4", + "io_type": "source", + "label": "4", + "side": "SOUTH" + }, + { + "data_key": "fluid_port_5", + "data_source": "executor", + "data_type": "fluid", + "description": "八通阀门端口5", + "handler_key": "5", + "io_type": "source", + "label": "5", + "side": "SOUTH" + }, + { + "data_key": "fluid_port_6", + "data_source": "executor", + "data_type": "fluid", + "description": "八通阀门端口6", + "handler_key": "6", + "io_type": "source", + "label": "6", + "side": "WEST" + }, + { + "data_key": "fluid_port_7", + "data_source": "executor", + "data_type": "fluid", + "description": "八通阀门端口7", + "handler_key": "7", + "io_type": "source", + "label": "7", + "side": "WEST" + }, + { + "data_key": "fluid_port_8", + "data_source": "executor", + "data_type": "fluid", + "description": "八通阀门端口8-特殊输入", + "handler_key": "8", + "io_type": "target", + "label": "8", + "side": "WEST" + }, + { + "data_key": "fluid_port_8", + "data_source": "executor", + "data_type": "fluid", + "description": "八通阀门端口8", + "handler_key": "8", + "io_type": "source", + "label": "8", + "side": "NORTH" + } + ], + "icon": "EightPipeline.webp", + "init_param_schema": { + "config": { + "properties": { + "port": { + "default": "VIRTUAL", + "type": "string" + }, + "positions": { + "default": 8, + "type": "integer" + } + }, + "required": [], + "type": "object" + }, + "data": { + "properties": { + "current_port": { + "type": "string" + }, + "current_position": { + "type": "integer" + }, + "flow_path": { + "type": "string" + }, + "status": { + "type": "string" + }, + "target_position": { + "type": "integer" + }, + "valve_position": { + "type": "integer" + }, + "valve_state": { + "type": "string" + } + }, + "required": [ + "current_port", + "current_position", + "flow_path", + "status", + "target_position", + "valve_position", + "valve_state" + ], + "type": "object" + } + }, + "registry_type": "device", + "version": "1.0.0" + }, + { + "id": "virtual_rotavap", + "category": [ + "virtual_device" + ], + "class": { + "action_value_mappings": { + "auto-cleanup": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "cleanup的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "boolean" + } + }, + "required": [ + "goal" + ], + "title": "cleanup参数", + "type": "object" + }, + "type": "UniLabJsonCommandAsync" + }, + "auto-initialize": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "initialize的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "boolean" + } + }, + "required": [ + "goal" + ], + "title": "initialize参数", + "type": "object" + }, + "type": "UniLabJsonCommandAsync" + }, + "evaporate": { + "feedback": { + "current_device": "current_device", + "status": "status", + "time_remaining": "time_remaining", + "time_spent": "time_spent" + }, + "goal": { + "pressure": "pressure", + "solvent": "solvent", + "stir_speed": "stir_speed", + "temp": "temp", + "time": "time", + "vessel": "vessel" + }, + "goal_default": { + "vessel": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + }, + "pressure": 0.0, + "temp": 0.0, + "time": "", + "stir_speed": 0.0, + "solvent": "" + }, + "handles": {}, + "placeholder_keys": {}, + "result": { + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "Evaporate", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "vessel": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "vessel", + "additionalProperties": false, + "description": "" + }, + "pressure": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "pressure", + "description": "" + }, + "temp": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "temp", + "description": "" + }, + "time": { + "type": "string", + "title": "time", + "description": "" + }, + "stir_speed": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "stir_speed", + "description": "" + }, + "solvent": { + "type": "string", + "title": "solvent", + "description": "" + } + }, + "title": "Evaporate_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": false, + "properties": { + "status": { + "type": "string" + }, + "current_device": { + "type": "string" + }, + "time_spent": { + "type": "object", + "properties": { + "sec": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647 + }, + "nanosec": { + "type": "integer", + "minimum": 0, + "maximum": 4294967295 + } + }, + "required": [ + "sec", + "nanosec" + ], + "title": "time_spent", + "additionalProperties": false + }, + "time_remaining": { + "type": "object", + "properties": { + "sec": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647 + }, + "nanosec": { + "type": "integer", + "minimum": 0, + "maximum": 4294967295 + } + }, + "required": [ + "sec", + "nanosec" + ], + "title": "time_remaining", + "additionalProperties": false + } + }, + "title": "Evaporate_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "Evaporate_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "Evaporate" + } + }, + "module": "unilabos.devices.virtual.virtual_rotavap:VirtualRotavap", + "status_types": { + "current_temp": "Float64", + "evaporated_volume": "Float64", + "max_rotation_speed": "Float64", + "max_temp": "Float64", + "message": "String", + "progress": "Float64", + "remaining_time": "Float64", + "rotation_speed": "Float64", + "rotavap_state": "String", + "status": "String", + "vacuum_pressure": "Float64" + }, + "type": "python" + }, + "config_info": [], + "description": "Virtual Rotary Evaporator for EvaporateProtocol Testing", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/devices/virtual_device.yaml", + "handles": [ + { + "data_key": "vessel_in", + "data_source": "handle", + "data_type": "fluid", + "description": "样品连接口", + "handler_key": "samplein", + "io_type": "target", + "label": "sample_in", + "side": "NORTH" + }, + { + "data_key": "product_out", + "data_source": "handle", + "data_type": "fluid", + "description": "浓缩产物出口", + "handler_key": "productout", + "io_type": "source", + "label": "product_out", + "side": "SOUTH" + }, + { + "data_key": "solvent_out", + "data_source": "handle", + "data_type": "fluid", + "description": "冷凝溶剂出口", + "handler_key": "solventout", + "io_type": "source", + "label": "solvent_out", + "side": "EAST" + } + ], + "icon": "Rotaryevaporator.webp", + "init_param_schema": { + "config": { + "properties": { + "config": { + "type": "object" + }, + "device_id": { + "type": "string" + } + }, + "required": [], + "type": "object" + }, + "data": { + "properties": { + "current_temp": { + "type": "number" + }, + "evaporated_volume": { + "type": "number" + }, + "max_rotation_speed": { + "type": "number" + }, + "max_temp": { + "type": "number" + }, + "message": { + "type": "string" + }, + "progress": { + "type": "number" + }, + "remaining_time": { + "type": "number" + }, + "rotation_speed": { + "type": "number" + }, + "rotavap_state": { + "type": "string" + }, + "status": { + "type": "string" + }, + "vacuum_pressure": { + "type": "number" + } + }, + "required": [ + "current_temp", + "evaporated_volume", + "max_rotation_speed", + "max_temp", + "message", + "progress", + "remaining_time", + "rotation_speed", + "rotavap_state", + "status", + "vacuum_pressure" + ], + "type": "object" + } + }, + "registry_type": "device", + "version": "1.0.0" + }, + { + "id": "virtual_sample_demo", + "category": [ + "virtual_device" + ], + "class": { + "action_value_mappings": { + "analyze_readings": { + "feedback": {}, + "goal": { + "readings": "readings", + "samples": "samples" + }, + "goal_default": { + "readings": null, + "samples": null + }, + "handles": { + "input": [ + { + "data_key": "readings", + "data_source": "handle", + "data_type": "sample_list", + "handler_key": "readings_in", + "label": "测量读数" + }, + { + "data_key": "samples", + "data_source": "handle", + "data_type": "sample_index", + "handler_key": "samples_in", + "label": "样品索引" + } + ], + "output": [ + { + "data_key": "scores", + "data_source": "executor", + "data_type": "sample_list", + "handler_key": "scores_out", + "label": "分析得分" + }, + { + "data_key": "passed", + "data_source": "executor", + "data_type": "sample_list", + "handler_key": "passed_out", + "label": "是否通过" + }, + { + "data_key": "samples", + "data_source": "executor", + "data_type": "sample_index", + "handler_key": "samples_result_out", + "label": "样品索引" + } + ] + }, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "对 split_and_measure 输出做二次分析,入参和出参都带 samples 列", + "properties": { + "feedback": { + "title": "AnalyzeReadings_Feedback" + }, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "readings": { + "description": "测量读数(来自 split_and_measure)", + "items": { + "type": "number" + }, + "type": "array", + "title": "readings" + }, + "samples": { + "description": "每行归属的输入样品 index (0-based)", + "items": { + "type": "integer" + }, + "type": "array", + "title": "samples" + } + }, + "required": [ + "readings", + "samples" + ], + "title": "AnalyzeReadings_Goal", + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "title": "AnalyzeReadings_Result", + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "analyze_readings参数", + "type": "object" + }, + "type": "UniLabJsonCommandAsync" + }, + "measure_samples": { + "feedback": {}, + "goal": { + "concentrations": "concentrations" + }, + "goal_default": { + "concentrations": null + }, + "handles": { + "output": [ + { + "data_key": "concentrations", + "data_source": "executor", + "data_type": "sample_list", + "handler_key": "concentrations_out", + "label": "浓度列表" + }, + { + "data_key": "absorbance", + "data_source": "executor", + "data_type": "sample_list", + "handler_key": "absorbance_out", + "label": "吸光度列表" + } + ] + }, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "模拟光度测量,入参出参等长", + "properties": { + "feedback": { + "title": "MeasureSamples_Feedback" + }, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "concentrations": { + "description": "样品浓度列表", + "items": { + "type": "number" + }, + "type": "array", + "title": "concentrations" + } + }, + "required": [ + "concentrations" + ], + "title": "MeasureSamples_Goal", + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "title": "MeasureSamples_Result", + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "measure_samples参数", + "type": "object" + }, + "type": "UniLabJsonCommandAsync" + }, + "split_and_measure": { + "feedback": {}, + "goal": { + "split_count": "split_count", + "volumes": "volumes" + }, + "goal_default": { + "split_count": 3, + "volumes": null + }, + "handles": { + "output": [ + { + "data_key": "readings", + "data_source": "executor", + "data_type": "sample_list", + "handler_key": "readings_out", + "label": "测量读数" + }, + { + "data_key": "samples", + "data_source": "executor", + "data_type": "sample_index", + "handler_key": "samples_out", + "label": "样品索引" + }, + { + "data_key": "volumes", + "data_source": "executor", + "data_type": "sample_list", + "handler_key": "volumes_out", + "label": "均分体积" + } + ] + }, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "均分样品后逐份测量,输出带 samples 列标注归属", + "properties": { + "feedback": { + "title": "SplitAndMeasure_Feedback" + }, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "split_count": { + "default": 3, + "description": "每个样品均分的份数", + "type": "integer", + "title": "split_count" + }, + "volumes": { + "description": "样品体积列表", + "items": { + "type": "number" + }, + "type": "array", + "title": "volumes" + } + }, + "required": [ + "volumes" + ], + "title": "SplitAndMeasure_Goal", + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "title": "SplitAndMeasure_Result", + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "split_and_measure参数", + "type": "object" + }, + "type": "UniLabJsonCommandAsync" + } + }, + "module": "unilabos.devices.virtual.virtual_sample_demo:VirtualSampleDemo", + "status_types": { + "status": "String" + }, + "type": "python" + }, + "config_info": [], + "description": "Virtual sample tracking demo device", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/devices/virtual_device.yaml", + "handles": [], + "icon": "", + "init_param_schema": { + "config": { + "properties": { + "config": { + "type": "object" + }, + "device_id": { + "type": "string" + } + }, + "required": [], + "type": "object" + }, + "data": { + "properties": { + "status": { + "type": "string" + } + }, + "required": [ + "status" + ], + "type": "object" + } + }, + "registry_type": "device", + "version": "1.0.0" + }, + { + "id": "virtual_separator", + "category": [ + "virtual_device" + ], + "class": { + "action_value_mappings": { + "auto-cleanup": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "cleanup的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "boolean" + } + }, + "required": [ + "goal" + ], + "title": "cleanup参数", + "type": "object" + }, + "type": "UniLabJsonCommandAsync" + }, + "auto-initialize": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "initialize的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "boolean" + } + }, + "required": [ + "goal" + ], + "title": "initialize参数", + "type": "object" + }, + "type": "UniLabJsonCommandAsync" + }, + "separate": { + "feedback": { + "progress": "progress", + "status": "status" + }, + "goal": { + "from_vessel": "from_vessel", + "product_phase": "product_phase", + "product_vessel": "product_vessel", + "purpose": "purpose", + "repeats": "repeats", + "separation_vessel": "separation_vessel", + "settling_time": "settling_time", + "solvent": "solvent", + "solvent_volume": "solvent_volume", + "stir_speed": "stir_speed", + "stir_time": "stir_time", + "through": "through", + "to_vessel": "to_vessel", + "vessel": "vessel", + "volume": "volume", + "waste_phase_to_vessel": "waste_phase_to_vessel", + "waste_vessel": "waste_vessel" + }, + "goal_default": { + "vessel": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + }, + "purpose": "", + "product_phase": "", + "from_vessel": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + }, + "separation_vessel": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + }, + "to_vessel": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + }, + "waste_phase_to_vessel": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + }, + "product_vessel": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + }, + "waste_vessel": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + }, + "solvent": "", + "solvent_volume": "", + "volume": "", + "through": "", + "repeats": 0, + "stir_time": 0.0, + "stir_speed": 0.0, + "settling_time": 0.0 + }, + "handles": {}, + "placeholder_keys": {}, + "result": { + "message": "message", + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "Separate", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "vessel": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "vessel", + "additionalProperties": false, + "description": "" + }, + "purpose": { + "type": "string", + "title": "purpose", + "description": "" + }, + "product_phase": { + "type": "string", + "title": "product_phase", + "description": "" + }, + "from_vessel": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "from_vessel", + "additionalProperties": false, + "description": "" + }, + "separation_vessel": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "separation_vessel", + "additionalProperties": false, + "description": "" + }, + "to_vessel": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "to_vessel", + "additionalProperties": false, + "description": "" + }, + "waste_phase_to_vessel": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "waste_phase_to_vessel", + "additionalProperties": false, + "description": "" + }, + "product_vessel": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "product_vessel", + "additionalProperties": false, + "description": "" + }, + "waste_vessel": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "waste_vessel", + "additionalProperties": false, + "description": "" + }, + "solvent": { + "type": "string", + "title": "solvent", + "description": "" + }, + "solvent_volume": { + "type": "string", + "title": "solvent_volume", + "description": "" + }, + "volume": { + "type": "string", + "title": "volume", + "description": "" + }, + "through": { + "type": "string", + "title": "through", + "description": "" + }, + "repeats": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "repeats", + "description": "" + }, + "stir_time": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "stir_time", + "description": "" + }, + "stir_speed": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "stir_speed", + "description": "" + }, + "settling_time": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "settling_time", + "description": "" + } + }, + "title": "Separate_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": false, + "properties": { + "status": { + "type": "string" + }, + "progress": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "title": "Separate_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "success": { + "type": "boolean" + }, + "message": { + "type": "string" + }, + "return_info": { + "type": "string" + } + }, + "title": "Separate_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "Separate" + } + }, + "module": "unilabos.devices.virtual.virtual_separator:VirtualSeparator", + "status_types": { + "has_phases": "Bool", + "message": "String", + "phase_separation": "Bool", + "progress": "Float64", + "separator_state": "String", + "settling_time": "Float64", + "status": "String", + "stir_speed": "Float64", + "volume": "Float64" + }, + "type": "python" + }, + "config_info": [], + "description": "Virtual Separator for SeparateProtocol Testing", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/devices/virtual_device.yaml", + "handles": [ + { + "data_key": "from_vessel", + "data_source": "handle", + "data_type": "fluid", + "description": "需要分离的混合液体输入口", + "handler_key": "separatorin", + "io_type": "target", + "label": "separator_in", + "side": "NORTH" + }, + { + "data_key": "bottom_outlet", + "data_source": "executor", + "data_type": "fluid", + "description": "下相(重相)液体输出口", + "handler_key": "bottomphaseout", + "io_type": "source", + "label": "bottom_phase_out", + "side": "SOUTH" + }, + { + "data_key": "top_outlet", + "data_source": "executor", + "data_type": "fluid", + "description": "上相(轻相)液体输出口", + "handler_key": "topphaseout", + "io_type": "source", + "label": "top_phase_out", + "side": "NORTH" + }, + { + "data_key": "mechanical_port", + "data_source": "handle", + "data_type": "mechanical", + "description": "用于连接搅拌器等机械设备的接口", + "handler_key": "bind", + "io_type": "target", + "label": "bind", + "side": "WEST" + } + ], + "icon": "Separator.webp", + "init_param_schema": { + "config": { + "properties": { + "config": { + "type": "object" + }, + "device_id": { + "type": "string" + } + }, + "required": [], + "type": "object" + }, + "data": { + "properties": { + "has_phases": { + "type": "boolean" + }, + "message": { + "type": "string" + }, + "phase_separation": { + "type": "boolean" + }, + "progress": { + "type": "number" + }, + "separator_state": { + "type": "string" + }, + "settling_time": { + "type": "number" + }, + "status": { + "type": "string" + }, + "stir_speed": { + "type": "number" + }, + "volume": { + "type": "number" + } + }, + "required": [ + "has_phases", + "message", + "phase_separation", + "progress", + "separator_state", + "settling_time", + "status", + "stir_speed", + "volume" + ], + "type": "object" + } + }, + "registry_type": "device", + "version": "1.0.0" + }, + { + "id": "virtual_solenoid_valve", + "category": [ + "virtual_device" + ], + "class": { + "action_value_mappings": { + "auto-cleanup": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "cleanup的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "boolean" + } + }, + "required": [ + "goal" + ], + "title": "cleanup参数", + "type": "object" + }, + "type": "UniLabJsonCommandAsync" + }, + "auto-initialize": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "initialize的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "boolean" + } + }, + "required": [ + "goal" + ], + "title": "initialize参数", + "type": "object" + }, + "type": "UniLabJsonCommandAsync" + }, + "auto-is_closed": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "is_closed的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "boolean" + } + }, + "required": [ + "goal" + ], + "title": "is_closed参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-reset": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "reset的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "reset参数", + "type": "object" + }, + "type": "UniLabJsonCommandAsync" + }, + "auto-toggle": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "toggle的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "toggle参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "close": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": { + "return_info": "return_info" + }, + "schema": { + "title": "EmptyIn", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": true, + "title": "EmptyIn_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "EmptyIn_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + } + }, + "title": "EmptyIn_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "EmptyIn" + }, + "open": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": { + "return_info": "return_info" + }, + "schema": { + "title": "EmptyIn", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": true, + "title": "EmptyIn_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "EmptyIn_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + } + }, + "title": "EmptyIn_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "EmptyIn" + }, + "set_status": { + "feedback": {}, + "goal": { + "string": "string" + }, + "goal_default": { + "string": "" + }, + "handles": {}, + "placeholder_keys": {}, + "result": { + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "StrSingleInput", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "string": { + "type": "string", + "title": "string", + "description": "" + } + }, + "title": "StrSingleInput_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "StrSingleInput_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "StrSingleInput_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "StrSingleInput" + }, + "set_valve_position": { + "feedback": { + "status": "status" + }, + "goal": { + "command": "command" + }, + "goal_default": { + "command": "" + }, + "handles": {}, + "placeholder_keys": {}, + "result": { + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "SendCmd", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "command": { + "type": "string", + "title": "command", + "description": "" + } + }, + "title": "SendCmd_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": false, + "properties": { + "status": { + "type": "string" + } + }, + "title": "SendCmd_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "SendCmd_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "SendCmd" + } + }, + "module": "unilabos.devices.virtual.virtual_solenoid_valve:VirtualSolenoidValve", + "status_types": { + "is_open": "Bool", + "status": "String", + "valve_position": "String", + "valve_state": "String" + }, + "type": "python" + }, + "config_info": [], + "description": "Virtual Solenoid Valve for simple on/off flow control", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/devices/virtual_device.yaml", + "handles": [ + { + "data_key": "fluid_port_in", + "data_source": "handle", + "data_type": "fluid", + "description": "电磁阀的进液口", + "handler_key": "in", + "io_type": "target", + "label": "in", + "side": "NORTH" + }, + { + "data_key": "fluid_port_out", + "data_source": "handle", + "data_type": "fluid", + "description": "电磁阀的出液口", + "handler_key": "out", + "io_type": "source", + "label": "out", + "side": "SOUTH" + } + ], + "icon": "", + "init_param_schema": { + "config": { + "properties": { + "config": { + "type": "object" + }, + "device_id": { + "type": "string" + } + }, + "required": [], + "type": "object" + }, + "data": { + "properties": { + "is_open": { + "type": "boolean" + }, + "status": { + "type": "string" + }, + "valve_position": { + "type": "string" + }, + "valve_state": { + "type": "string" + } + }, + "required": [ + "is_open", + "status", + "valve_position", + "valve_state" + ], + "type": "object" + } + }, + "registry_type": "device", + "version": "1.0.0" + }, + { + "id": "virtual_solid_dispenser", + "category": [ + "virtual_device" + ], + "class": { + "action_value_mappings": { + "add_solid": { + "feedback": { + "current_status": "current_status", + "progress": "progress" + }, + "goal": { + "amount": "amount", + "equiv": "equiv", + "event": "event", + "mass": "mass", + "mol": "mol", + "purpose": "purpose", + "rate_spec": "rate_spec", + "ratio": "ratio", + "reagent": "reagent", + "stir": "stir", + "stir_speed": "stir_speed", + "time": "time", + "vessel": "vessel", + "viscous": "viscous", + "volume": "volume" + }, + "goal_default": { + "vessel": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + }, + "reagent": "", + "volume": "", + "mass": "", + "amount": "", + "time": "", + "stir": false, + "stir_speed": 0.0, + "viscous": false, + "purpose": "", + "event": "", + "mol": "", + "rate_spec": "", + "equiv": "", + "ratio": "" + }, + "handles": {}, + "placeholder_keys": {}, + "result": { + "message": "message", + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "Add", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "vessel": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "vessel", + "additionalProperties": false, + "description": "" + }, + "reagent": { + "type": "string", + "title": "reagent", + "description": "" + }, + "volume": { + "type": "string", + "title": "volume", + "description": "" + }, + "mass": { + "type": "string", + "title": "mass", + "description": "" + }, + "amount": { + "type": "string", + "title": "amount", + "description": "" + }, + "time": { + "type": "string", + "title": "time", + "description": "" + }, + "stir": { + "type": "boolean", + "title": "stir", + "description": "" + }, + "stir_speed": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "stir_speed", + "description": "" + }, + "viscous": { + "type": "boolean", + "title": "viscous", + "description": "" + }, + "purpose": { + "type": "string", + "title": "purpose", + "description": "" + }, + "event": { + "type": "string", + "title": "event", + "description": "" + }, + "mol": { + "type": "string", + "title": "mol", + "description": "" + }, + "rate_spec": { + "type": "string", + "title": "rate_spec", + "description": "" + }, + "equiv": { + "type": "string", + "title": "equiv", + "description": "" + }, + "ratio": { + "type": "string", + "title": "ratio", + "description": "" + } + }, + "title": "Add_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": false, + "properties": { + "progress": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "current_status": { + "type": "string" + } + }, + "title": "Add_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "success": { + "type": "boolean" + }, + "message": { + "type": "string" + }, + "return_info": { + "type": "string" + } + }, + "title": "Add_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "Add" + }, + "auto-cleanup": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "cleanup的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "boolean" + } + }, + "required": [ + "goal" + ], + "title": "cleanup参数", + "type": "object" + }, + "type": "UniLabJsonCommandAsync" + }, + "auto-find_solid_reagent_bottle": { + "feedback": {}, + "goal": {}, + "goal_default": { + "reagent_name": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "reagent_name": { + "type": "string", + "title": "reagent_name", + "description": "" + } + }, + "required": [ + "reagent_name" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "string" + } + }, + "required": [ + "goal" + ], + "title": "find_solid_reagent_bottle参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-initialize": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "initialize的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "boolean" + } + }, + "required": [ + "goal" + ], + "title": "initialize参数", + "type": "object" + }, + "type": "UniLabJsonCommandAsync" + }, + "auto-parse_mass_string": { + "feedback": {}, + "goal": {}, + "goal_default": { + "mass_str": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "mass_str": { + "type": "string", + "title": "mass_str", + "description": "" + } + }, + "required": [ + "mass_str" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "number" + } + }, + "required": [ + "goal" + ], + "title": "parse_mass_string参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-parse_mol_string": { + "feedback": {}, + "goal": {}, + "goal_default": { + "mol_str": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "mol_str": { + "type": "string", + "title": "mol_str", + "description": "" + } + }, + "required": [ + "mol_str" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "number" + } + }, + "required": [ + "goal" + ], + "title": "parse_mol_string参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + } + }, + "module": "unilabos.devices.virtual.virtual_solid_dispenser:VirtualSolidDispenser", + "status_types": { + "current_reagent": "String", + "dispensed_amount": "Float64", + "status": "String", + "total_operations": "Int64" + }, + "type": "python" + }, + "config_info": [], + "description": "Virtual Solid Dispenser for Add Protocol Testing - supports mass and molar additions", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/devices/virtual_device.yaml", + "handles": [ + { + "data_key": "solid_out", + "data_source": "executor", + "data_type": "resource", + "description": "固体试剂输出口", + "handler_key": "SolidOut", + "io_type": "source", + "label": "SolidOut", + "side": "SOUTH" + }, + { + "data_key": "solid_in", + "data_source": "handle", + "data_type": "resource", + "description": "固体试剂输入口(连接试剂瓶)", + "handler_key": "SolidIn", + "io_type": "target", + "label": "SolidIn", + "side": "NORTH" + } + ], + "icon": "", + "init_param_schema": { + "config": { + "properties": { + "config": { + "type": "object" + }, + "device_id": { + "type": "string" + } + }, + "required": [], + "type": "object" + }, + "data": { + "properties": { + "current_reagent": { + "type": "string" + }, + "dispensed_amount": { + "type": "number" + }, + "status": { + "type": "string" + }, + "total_operations": { + "type": "integer" + } + }, + "required": [ + "current_reagent", + "dispensed_amount", + "status", + "total_operations" + ], + "type": "object" + } + }, + "registry_type": "device", + "version": "1.0.0" + }, + { + "id": "virtual_stirrer", + "category": [ + "virtual_device" + ], + "class": { + "action_value_mappings": { + "auto-cleanup": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "cleanup的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "boolean" + } + }, + "required": [ + "goal" + ], + "title": "cleanup参数", + "type": "object" + }, + "type": "UniLabJsonCommandAsync" + }, + "auto-initialize": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "initialize的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "boolean" + } + }, + "required": [ + "goal" + ], + "title": "initialize参数", + "type": "object" + }, + "type": "UniLabJsonCommandAsync" + }, + "start_stir": { + "feedback": { + "current_speed": "current_speed", + "current_status": "current_status", + "progress": "progress" + }, + "goal": { + "purpose": "purpose", + "stir_speed": "stir_speed", + "vessel": "vessel" + }, + "goal_default": { + "vessel": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + }, + "stir_speed": 0.0, + "purpose": "" + }, + "handles": {}, + "placeholder_keys": {}, + "result": { + "message": "message", + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "StartStir", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "vessel": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "vessel", + "additionalProperties": false, + "description": "" + }, + "stir_speed": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "stir_speed", + "description": "" + }, + "purpose": { + "type": "string", + "title": "purpose", + "description": "" + } + }, + "title": "StartStir_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": false, + "properties": { + "progress": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "current_speed": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "current_status": { + "type": "string" + } + }, + "title": "StartStir_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "success": { + "type": "boolean" + }, + "message": { + "type": "string" + }, + "return_info": { + "type": "string" + } + }, + "title": "StartStir_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "StartStir" + }, + "stir": { + "feedback": { + "status": "status" + }, + "goal": { + "event": "event", + "settling_time": "settling_time", + "stir_speed": "stir_speed", + "stir_time": "stir_time", + "time": "time", + "time_spec": "time_spec", + "vessel": "vessel" + }, + "goal_default": { + "vessel": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + }, + "time": "", + "event": "", + "time_spec": "", + "stir_time": 0.0, + "stir_speed": 0.0, + "settling_time": "" + }, + "handles": {}, + "placeholder_keys": {}, + "result": { + "message": "message", + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "Stir", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "vessel": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "vessel", + "additionalProperties": false, + "description": "" + }, + "time": { + "type": "string", + "title": "time", + "description": "" + }, + "event": { + "type": "string", + "title": "event", + "description": "" + }, + "time_spec": { + "type": "string", + "title": "time_spec", + "description": "" + }, + "stir_time": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "stir_time", + "description": "" + }, + "stir_speed": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "stir_speed", + "description": "" + }, + "settling_time": { + "type": "string", + "title": "settling_time", + "description": "" + } + }, + "title": "Stir_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": false, + "properties": { + "status": { + "type": "string" + } + }, + "title": "Stir_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "success": { + "type": "boolean" + }, + "message": { + "type": "string" + }, + "return_info": { + "type": "string" + } + }, + "title": "Stir_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "Stir" + }, + "stop_stir": { + "feedback": { + "current_status": "current_status", + "progress": "progress" + }, + "goal": { + "vessel": "vessel" + }, + "goal_default": { + "vessel": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + } + }, + "handles": {}, + "placeholder_keys": {}, + "result": { + "message": "message", + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "StopStir", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "vessel": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "vessel", + "additionalProperties": false, + "description": "" + } + }, + "title": "StopStir_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": false, + "properties": { + "progress": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "current_status": { + "type": "string" + } + }, + "title": "StopStir_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "success": { + "type": "boolean" + }, + "message": { + "type": "string" + }, + "return_info": { + "type": "string" + } + }, + "title": "StopStir_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "StopStir" + } + }, + "module": "unilabos.devices.virtual.virtual_stirrer:VirtualStirrer", + "status_types": { + "current_speed": "Float64", + "current_vessel": "String", + "device_info": "String", + "is_stirring": "Bool", + "max_speed": "Float64", + "min_speed": "Float64", + "operation_mode": "String", + "remaining_time": "Float64", + "status": "String" + }, + "type": "python" + }, + "config_info": [], + "description": "Virtual Stirrer for StirProtocol Testing", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/devices/virtual_device.yaml", + "handles": [ + { + "data_key": "vessel", + "data_source": "handle", + "data_type": "mechanical", + "description": "搅拌器的机械连接口", + "handler_key": "stirrer", + "io_type": "source", + "label": "stirrer", + "side": "NORTH" + } + ], + "icon": "Stirrer.webp", + "init_param_schema": { + "config": { + "properties": { + "config": { + "type": "object" + }, + "device_id": { + "type": "string" + } + }, + "required": [], + "type": "object" + }, + "data": { + "properties": { + "current_speed": { + "type": "number" + }, + "current_vessel": { + "type": "string" + }, + "device_info": { + "type": "object" + }, + "is_stirring": { + "type": "boolean" + }, + "max_speed": { + "type": "number" + }, + "min_speed": { + "type": "number" + }, + "operation_mode": { + "type": "string" + }, + "remaining_time": { + "type": "number" + }, + "status": { + "type": "string" + } + }, + "required": [ + "current_speed", + "current_vessel", + "device_info", + "is_stirring", + "max_speed", + "min_speed", + "operation_mode", + "remaining_time", + "status" + ], + "type": "object" + } + }, + "registry_type": "device", + "version": "1.0.0" + }, + { + "id": "virtual_transfer_pump", + "category": [ + "virtual_device" + ], + "class": { + "action_value_mappings": { + "auto-aspirate": { + "feedback": {}, + "goal": {}, + "goal_default": { + "velocity": null, + "volume": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "aspirate的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "velocity": { + "type": "number", + "title": "velocity", + "description": "" + }, + "volume": { + "type": "number", + "title": "volume", + "description": "" + } + }, + "required": [ + "volume" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "aspirate参数", + "type": "object" + }, + "type": "UniLabJsonCommandAsync" + }, + "auto-cleanup": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "cleanup的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "boolean" + } + }, + "required": [ + "goal" + ], + "title": "cleanup参数", + "type": "object" + }, + "type": "UniLabJsonCommandAsync" + }, + "auto-dispense": { + "feedback": {}, + "goal": {}, + "goal_default": { + "velocity": null, + "volume": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "dispense的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "velocity": { + "type": "number", + "title": "velocity", + "description": "" + }, + "volume": { + "type": "number", + "title": "volume", + "description": "" + } + }, + "required": [ + "volume" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "dispense参数", + "type": "object" + }, + "type": "UniLabJsonCommandAsync" + }, + "auto-empty_syringe": { + "feedback": {}, + "goal": {}, + "goal_default": { + "velocity": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "empty_syringe的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "velocity": { + "type": "number", + "title": "velocity", + "description": "" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "empty_syringe参数", + "type": "object" + }, + "type": "UniLabJsonCommandAsync" + }, + "auto-fill_syringe": { + "feedback": {}, + "goal": {}, + "goal_default": { + "velocity": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "fill_syringe的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "velocity": { + "type": "number", + "title": "velocity", + "description": "" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "fill_syringe参数", + "type": "object" + }, + "type": "UniLabJsonCommandAsync" + }, + "auto-initialize": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "initialize的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "boolean" + } + }, + "required": [ + "goal" + ], + "title": "initialize参数", + "type": "object" + }, + "type": "UniLabJsonCommandAsync" + }, + "auto-is_empty": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "is_empty的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "boolean" + } + }, + "required": [ + "goal" + ], + "title": "is_empty参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-is_full": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "is_full的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "boolean" + } + }, + "required": [ + "goal" + ], + "title": "is_full参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-pull_plunger": { + "feedback": {}, + "goal": {}, + "goal_default": { + "velocity": null, + "volume": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "pull_plunger的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "velocity": { + "type": "number", + "title": "velocity", + "description": "" + }, + "volume": { + "type": "number", + "title": "volume", + "description": "" + } + }, + "required": [ + "volume" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "pull_plunger参数", + "type": "object" + }, + "type": "UniLabJsonCommandAsync" + }, + "auto-push_plunger": { + "feedback": {}, + "goal": {}, + "goal_default": { + "velocity": null, + "volume": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "push_plunger的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "velocity": { + "type": "number", + "title": "velocity", + "description": "" + }, + "volume": { + "type": "number", + "title": "volume", + "description": "" + } + }, + "required": [ + "volume" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "push_plunger参数", + "type": "object" + }, + "type": "UniLabJsonCommandAsync" + }, + "auto-set_max_velocity": { + "feedback": {}, + "goal": {}, + "goal_default": { + "velocity": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "set_max_velocity的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "velocity": { + "type": "number", + "title": "velocity", + "description": "" + } + }, + "required": [ + "velocity" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "set_max_velocity参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-stop_operation": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "stop_operation的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "stop_operation参数", + "type": "object" + }, + "type": "UniLabJsonCommandAsync" + }, + "set_position": { + "feedback": { + "current_position": "current_position", + "progress": "progress", + "status": "status" + }, + "goal": { + "max_velocity": "max_velocity", + "position": "position" + }, + "goal_default": { + "position": 0.0, + "max_velocity": 0.0 + }, + "handles": {}, + "placeholder_keys": {}, + "result": { + "message": "message", + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "SetPumpPosition", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "position": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "position", + "description": "" + }, + "max_velocity": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "max_velocity", + "description": "" + } + }, + "title": "SetPumpPosition_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": false, + "properties": { + "status": { + "type": "string" + }, + "current_position": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "progress": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "title": "SetPumpPosition_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + }, + "message": { + "type": "string" + } + }, + "title": "SetPumpPosition_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "SetPumpPosition" + }, + "transfer": { + "feedback": { + "current_status": "current_status", + "progress": "progress", + "transferred_volume": "transferred_volume" + }, + "goal": { + "amount": "amount", + "aspirate_velocity": "aspirate_velocity", + "dispense_velocity": "dispense_velocity", + "from_vessel": "from_vessel", + "rinsing_repeats": "rinsing_repeats", + "rinsing_solvent": "rinsing_solvent", + "rinsing_volume": "rinsing_volume", + "solid": "solid", + "time": "time", + "to_vessel": "to_vessel", + "viscous": "viscous", + "volume": "volume" + }, + "goal_default": { + "from_vessel": "", + "to_vessel": "", + "volume": 0.0, + "amount": "", + "time": 0.0, + "viscous": false, + "rinsing_solvent": "", + "rinsing_volume": 0.0, + "rinsing_repeats": 0, + "solid": false + }, + "handles": {}, + "placeholder_keys": {}, + "result": { + "message": "message", + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "Transfer", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "from_vessel": { + "type": "string", + "title": "from_vessel", + "description": "" + }, + "to_vessel": { + "type": "string", + "title": "to_vessel", + "description": "" + }, + "volume": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "volume", + "description": "" + }, + "amount": { + "type": "string", + "title": "amount", + "description": "" + }, + "time": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "time", + "description": "" + }, + "viscous": { + "type": "boolean", + "title": "viscous", + "description": "" + }, + "rinsing_solvent": { + "type": "string", + "title": "rinsing_solvent", + "description": "" + }, + "rinsing_volume": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "rinsing_volume", + "description": "" + }, + "rinsing_repeats": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "rinsing_repeats", + "description": "" + }, + "solid": { + "type": "boolean", + "title": "solid", + "description": "" + } + }, + "title": "Transfer_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": false, + "properties": { + "progress": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "transferred_volume": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "current_status": { + "type": "string" + } + }, + "title": "Transfer_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "success": { + "type": "boolean" + }, + "message": { + "type": "string" + }, + "return_info": { + "type": "string" + } + }, + "title": "Transfer_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "Transfer" + } + }, + "module": "unilabos.devices.virtual.virtual_transferpump:VirtualTransferPump", + "status_types": { + "current_volume": "Float64", + "max_velocity": "Float64", + "position": "Float64", + "remaining_capacity": "Float64", + "status": "String", + "transfer_rate": "Float64" + }, + "type": "python" + }, + "config_info": [], + "description": "Virtual Transfer Pump for TransferProtocol Testing (Syringe-style)", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/devices/virtual_device.yaml", + "handles": [ + { + "data_key": "fluid_port", + "data_source": "handle", + "data_type": "fluid", + "description": "注射器式转移泵的连接口", + "handler_key": "transferpump", + "io_type": "source", + "label": "transferpump", + "side": "SOUTH" + } + ], + "icon": "Pump.webp", + "init_param_schema": { + "config": { + "properties": { + "config": { + "type": "object" + }, + "device_id": { + "type": "string" + } + }, + "required": [], + "type": "object" + }, + "data": { + "properties": { + "current_volume": { + "type": "number" + }, + "max_velocity": { + "type": "number" + }, + "position": { + "type": "number" + }, + "remaining_capacity": { + "type": "number" + }, + "status": { + "type": "string" + }, + "transfer_rate": { + "type": "number" + } + }, + "required": [ + "current_volume", + "max_velocity", + "position", + "remaining_capacity", + "status", + "transfer_rate" + ], + "type": "object" + } + }, + "registry_type": "device", + "version": "1.0.0" + }, + { + "id": "virtual_vacuum_pump", + "category": [ + "virtual_device" + ], + "class": { + "action_value_mappings": { + "auto-cleanup": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "cleanup的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "boolean" + } + }, + "required": [ + "goal" + ], + "title": "cleanup参数", + "type": "object" + }, + "type": "UniLabJsonCommandAsync" + }, + "auto-initialize": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "initialize的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "boolean" + } + }, + "required": [ + "goal" + ], + "title": "initialize参数", + "type": "object" + }, + "type": "UniLabJsonCommandAsync" + }, + "auto-is_closed": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "is_closed的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "is_closed参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-is_open": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "is_open的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "is_open参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "close": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": { + "return_info": "return_info" + }, + "schema": { + "title": "EmptyIn", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": true, + "title": "EmptyIn_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "EmptyIn_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + } + }, + "title": "EmptyIn_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "EmptyIn" + }, + "open": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": { + "return_info": "return_info" + }, + "schema": { + "title": "EmptyIn", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": true, + "title": "EmptyIn_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "EmptyIn_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + } + }, + "title": "EmptyIn_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "EmptyIn" + }, + "set_status": { + "feedback": {}, + "goal": { + "string": "string" + }, + "goal_default": { + "string": "" + }, + "handles": {}, + "placeholder_keys": {}, + "result": { + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "StrSingleInput", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "string": { + "type": "string", + "title": "string", + "description": "" + } + }, + "title": "StrSingleInput_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "StrSingleInput_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "StrSingleInput_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "StrSingleInput" + } + }, + "module": "unilabos.devices.virtual.virtual_vacuum_pump:VirtualVacuumPump", + "status_types": { + "status": "String" + }, + "type": "python" + }, + "config_info": [], + "description": "Virtual vacuum pump", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/devices/virtual_device.yaml", + "handles": [ + { + "data_key": "fluid_in", + "data_source": "handle", + "data_type": "fluid", + "description": "真空泵进气口", + "handler_key": "vacuumpump", + "io_type": "source", + "label": "vacuumpump", + "side": "SOUTH" + } + ], + "icon": "Vacuum.webp", + "init_param_schema": { + "config": { + "properties": { + "config": { + "type": "object" + }, + "device_id": { + "type": "string" + } + }, + "required": [], + "type": "object" + }, + "data": { + "properties": { + "status": { + "type": "string" + } + }, + "required": [ + "status" + ], + "type": "object" + } + }, + "registry_type": "device", + "version": "1.0.0" + }, + { + "id": "chiller", + "category": [ + "temperature" + ], + "class": { + "action_value_mappings": { + "auto-build_modbus_frame": { + "feedback": {}, + "goal": {}, + "goal_default": { + "device_address": null, + "function_code": null, + "register_address": null, + "value": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "build_modbus_frame的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "device_address": { + "type": "integer", + "title": "device_address", + "description": "" + }, + "function_code": { + "type": "integer", + "title": "function_code", + "description": "" + }, + "register_address": { + "type": "integer", + "title": "register_address", + "description": "" + }, + "value": { + "type": "integer", + "title": "value", + "description": "" + } + }, + "required": [ + "device_address", + "function_code", + "register_address", + "value" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "build_modbus_frame参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-convert_temperature_to_modbus_value": { + "feedback": {}, + "goal": {}, + "goal_default": { + "decimal_points": 1, + "temperature": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "convert_temperature_to_modbus_value的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "decimal_points": { + "default": 1, + "type": "integer", + "title": "decimal_points", + "description": "" + }, + "temperature": { + "type": "number", + "title": "temperature", + "description": "" + } + }, + "required": [ + "temperature" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "integer" + } + }, + "required": [ + "goal" + ], + "title": "convert_temperature_to_modbus_value参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-modbus_crc": { + "feedback": {}, + "goal": {}, + "goal_default": { + "data": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "modbus_crc的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "data": { + "type": "object", + "title": "data", + "description": "" + } + }, + "required": [ + "data" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "modbus_crc参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-stop": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "stop的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "stop参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "set_temperature": { + "feedback": { + "status": "status" + }, + "goal": { + "command": "command" + }, + "goal_default": { + "command": "" + }, + "handles": {}, + "placeholder_keys": {}, + "result": { + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "SendCmd", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "command": { + "type": "string", + "title": "command", + "description": "" + } + }, + "title": "SendCmd_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": false, + "properties": { + "status": { + "type": "string" + } + }, + "title": "SendCmd_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "SendCmd_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "SendCmd" + } + }, + "module": "unilabos.devices.temperature.chiller:Chiller", + "status_types": {}, + "type": "python" + }, + "config_info": [], + "description": "实验室制冷设备,用于精确的温度控制和冷却操作。该设备通过Modbus RTU协议与控制系统通信,支持精确的温度设定和监控。具备快速降温、恒温控制和温度保持功能,广泛应用于需要低温环境的化学反应、样品保存、结晶操作等实验场景。提供稳定可靠的冷却性能,确保实验过程的温度精度。", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/devices/temperature.yaml", + "handles": [], + "icon": "", + "init_param_schema": { + "config": { + "properties": { + "port": { + "type": "string" + }, + "rate": { + "default": 9600, + "type": "string" + } + }, + "required": [ + "port" + ], + "type": "object" + }, + "data": { + "properties": {}, + "required": [], + "type": "object" + } + }, + "registry_type": "device", + "version": "1.0.0" + }, + { + "id": "heaterstirrer.dalong", + "category": [ + "temperature" + ], + "class": { + "action_value_mappings": { + "auto-close": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "close的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "close参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-set_stir_speed": { + "feedback": {}, + "goal": {}, + "goal_default": { + "speed": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "set_stir_speed的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "speed": { + "type": "number", + "title": "speed", + "description": "" + } + }, + "required": [ + "speed" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "set_stir_speed参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-set_temp_inner": { + "feedback": {}, + "goal": {}, + "goal_default": { + "temp": null, + "type": "warning" + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "set_temp_inner的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "temp": { + "type": "number", + "title": "temp", + "description": "" + }, + "type": { + "default": "warning", + "type": "string", + "title": "type", + "description": "" + } + }, + "required": [ + "temp" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "set_temp_inner参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "heatchill": { + "feedback": { + "status": "status" + }, + "goal": { + "pressure": "pressure", + "purpose": "purpose", + "reflux_solvent": "reflux_solvent", + "stir": "stir", + "stir_speed": "stir_speed", + "temp": "temp", + "temp_spec": "temp_spec", + "time": "time", + "time_spec": "time_spec", + "vessel": "vessel" + }, + "goal_default": { + "vessel": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + }, + "temp": 0.0, + "time": "", + "temp_spec": "", + "time_spec": "", + "pressure": "", + "reflux_solvent": "", + "stir": false, + "stir_speed": 0.0, + "purpose": "" + }, + "handles": {}, + "placeholder_keys": {}, + "result": { + "message": "message", + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "HeatChill", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "vessel": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "vessel", + "additionalProperties": false, + "description": "" + }, + "temp": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "temp", + "description": "" + }, + "time": { + "type": "string", + "title": "time", + "description": "" + }, + "temp_spec": { + "type": "string", + "title": "temp_spec", + "description": "" + }, + "time_spec": { + "type": "string", + "title": "time_spec", + "description": "" + }, + "pressure": { + "type": "string", + "title": "pressure", + "description": "" + }, + "reflux_solvent": { + "type": "string", + "title": "reflux_solvent", + "description": "" + }, + "stir": { + "type": "boolean", + "title": "stir", + "description": "" + }, + "stir_speed": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "stir_speed", + "description": "" + }, + "purpose": { + "type": "string", + "title": "purpose", + "description": "" + } + }, + "title": "HeatChill_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": false, + "properties": { + "status": { + "type": "string" + } + }, + "title": "HeatChill_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "success": { + "type": "boolean" + }, + "message": { + "type": "string" + }, + "return_info": { + "type": "string" + } + }, + "title": "HeatChill_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "HeatChill" + }, + "set_temp_target": { + "feedback": { + "status": "status" + }, + "goal": { + "command": "command", + "temp": "temp" + }, + "goal_default": { + "command": "" + }, + "handles": {}, + "placeholder_keys": {}, + "result": { + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "SendCmd", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "command": { + "type": "string", + "title": "command", + "description": "" + } + }, + "title": "SendCmd_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": false, + "properties": { + "status": { + "type": "string" + } + }, + "title": "SendCmd_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "SendCmd_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "SendCmd" + }, + "set_temp_warning": { + "feedback": { + "status": "status" + }, + "goal": { + "command": "command", + "temp": "temp" + }, + "goal_default": { + "command": "" + }, + "handles": {}, + "placeholder_keys": {}, + "result": { + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "SendCmd", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "command": { + "type": "string", + "title": "command", + "description": "" + } + }, + "title": "SendCmd_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": false, + "properties": { + "status": { + "type": "string" + } + }, + "title": "SendCmd_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "SendCmd_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "SendCmd" + } + }, + "module": "unilabos.devices.heaterstirrer.dalong:HeaterStirrer_DaLong", + "status_types": { + "status": "String", + "stir_speed": "Float64", + "temp": "Float64", + "temp_target": "Float64", + "temp_warning": "Float64" + }, + "type": "python" + }, + "config_info": [], + "description": "大龙加热搅拌器,集成加热和搅拌双重功能的实验室设备。该设备通过串口通信控制,支持精确的温度调节、搅拌速度控制和安全保护功能。具备实时温度监测、目标温度设定、安全温度报警等特性。适用于化学合成、样品制备、反应控制等需要同时进行加热和搅拌的实验操作,提供稳定均匀的反应环境。", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/devices/temperature.yaml", + "handles": [], + "icon": "", + "init_param_schema": { + "config": { + "properties": { + "baudrate": { + "default": 9600, + "type": "integer" + }, + "port": { + "default": "COM6", + "type": "string" + }, + "temp_warning": { + "default": 50.0, + "type": "string" + } + }, + "required": [], + "type": "object" + }, + "data": { + "properties": { + "status": { + "type": "string" + }, + "stir_speed": { + "type": "number" + }, + "temp": { + "type": "number" + }, + "temp_target": { + "type": "number" + }, + "temp_warning": { + "type": "number" + } + }, + "required": [ + "status", + "stir_speed", + "temp", + "temp_target", + "temp_warning" + ], + "type": "object" + } + }, + "registry_type": "device", + "version": "1.0.0" + }, + { + "id": "tempsensor", + "category": [ + "temperature" + ], + "class": { + "action_value_mappings": { + "auto-build_modbus_request": { + "feedback": {}, + "goal": {}, + "goal_default": { + "device_id": null, + "function_code": null, + "register_address": null, + "register_count": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "build_modbus_request的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "device_id": { + "type": "string", + "title": "device_id", + "description": "" + }, + "function_code": { + "type": "string", + "title": "function_code", + "description": "" + }, + "register_address": { + "type": "string", + "title": "register_address", + "description": "" + }, + "register_count": { + "type": "string", + "title": "register_count", + "description": "" + } + }, + "required": [ + "device_id", + "function_code", + "register_address", + "register_count" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "build_modbus_request参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-calculate_crc": { + "feedback": {}, + "goal": {}, + "goal_default": { + "data": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "calculate_crc的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "data": { + "type": "string", + "title": "data", + "description": "" + } + }, + "required": [ + "data" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "calculate_crc参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-read_modbus_response": { + "feedback": {}, + "goal": {}, + "goal_default": { + "response": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "read_modbus_response的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "response": { + "type": "string", + "title": "response", + "description": "" + } + }, + "required": [ + "response" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "read_modbus_response参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-send_prototype_command": { + "feedback": {}, + "goal": {}, + "goal_default": { + "command": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "send_prototype_command的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "command": { + "type": "string", + "title": "command", + "description": "" + } + }, + "required": [ + "command" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "send_prototype_command参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "set_warning": { + "feedback": { + "status": "status" + }, + "goal": { + "command": "command" + }, + "goal_default": { + "command": "" + }, + "handles": {}, + "placeholder_keys": {}, + "result": { + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "SendCmd", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "command": { + "type": "string", + "title": "command", + "description": "" + } + }, + "title": "SendCmd_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": false, + "properties": { + "status": { + "type": "string" + } + }, + "title": "SendCmd_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "SendCmd_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "SendCmd" + } + }, + "module": "unilabos.devices.temperature.sensor_node:TempSensorNode", + "status_types": { + "value": "Float64" + }, + "type": "python" + }, + "config_info": [], + "description": "高精度温度传感器设备,用于实验室环境和设备的温度监测。该传感器通过Modbus RTU协议与控制系统通信,提供实时准确的温度数据。具备高精度测量、报警温度设定、数据稳定性好等特点。适用于反应器监控、环境温度监测、设备保护等需要精确温度测量的实验场景,为实验安全和数据可靠性提供保障。", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/devices/temperature.yaml", + "handles": [], + "icon": "", + "init_param_schema": { + "config": { + "properties": { + "address": { + "type": "string" + }, + "baudrate": { + "default": 9600, + "type": "string" + }, + "port": { + "type": "string" + }, + "warning": { + "type": "string" + } + }, + "required": [ + "port", + "warning", + "address" + ], + "type": "object" + }, + "data": { + "properties": { + "value": { + "type": "number" + } + }, + "required": [ + "value" + ], + "type": "object" + } + }, + "registry_type": "device", + "version": "1.0.0" + }, + { + "id": "Qone_nmr", + "category": [ + "Qone_nmr" + ], + "class": { + "action_value_mappings": { + "abort": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "result": {}, + "schema": { + "title": "EmptyIn", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": true, + "title": "EmptyIn_Goal" + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "EmptyIn_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + } + }, + "title": "EmptyIn_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "EmptyIn" + }, + "auto-monitor_folder_for_new_content": { + "feedback": {}, + "goal": {}, + "goal_default": { + "check_interval": 60, + "expected_count": 1, + "monitor_dir": null, + "stability_checks": 3 + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "check_interval": { + "default": 60, + "type": "string", + "title": "check_interval", + "description": "" + }, + "expected_count": { + "default": 1, + "type": "string", + "title": "expected_count", + "description": "" + }, + "monitor_dir": { + "type": "string", + "title": "monitor_dir", + "description": "" + }, + "stability_checks": { + "default": 3, + "type": "string", + "title": "stability_checks", + "description": "" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "monitor_folder_for_new_content参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-strings_to_txt": { + "feedback": {}, + "goal": {}, + "goal_default": { + "output_dir": null, + "string_list": null, + "txt_encoding": "utf-8" + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "output_dir": { + "type": "string", + "title": "output_dir", + "description": "" + }, + "string_list": { + "type": "string", + "title": "string_list", + "description": "" + }, + "txt_encoding": { + "default": "utf-8", + "type": "string", + "title": "txt_encoding", + "description": "" + } + }, + "required": [ + "string_list" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "strings_to_txt参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "get_status": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "result": {}, + "schema": { + "title": "EmptyIn", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": true, + "title": "EmptyIn_Goal" + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "EmptyIn_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + } + }, + "title": "EmptyIn_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "EmptyIn" + }, + "start": { + "feedback": {}, + "goal": { + "string": "string" + }, + "goal_default": { + "string": "" + }, + "handles": {}, + "placeholder_keys": {}, + "result": { + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "StrSingleInput", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "string": { + "type": "string", + "title": "string", + "description": "" + } + }, + "title": "StrSingleInput_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "StrSingleInput_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "StrSingleInput_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "StrSingleInput" + } + }, + "module": "unilabos.devices.Qone_nmr.Qone_nmr:Qone_nmr", + "status_types": { + "status": "String" + }, + "type": "python" + }, + "config_info": [], + "description": "Oxford NMR设备驱动,支持CSV字符串到TXT文件的批量转换功能,并监测对应.nmr文件的大小变化以确认结果生成完成", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/devices/Qone_nmr.yaml", + "handles": [], + "icon": "", + "init_param_schema": { + "config": { + "properties": {}, + "required": [], + "type": "object" + }, + "data": { + "properties": { + "status": { + "type": "string" + } + }, + "required": [ + "status" + ], + "type": "object" + } + }, + "registry_type": "device", + "version": "1.0.0" + }, + { + "id": "raman.home_made", + "category": [ + "characterization_optic" + ], + "class": { + "action_value_mappings": { + "auto-ccd_time": { + "feedback": {}, + "goal": {}, + "goal_default": { + "int_time": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "设置CCD检测器积分时间的函数。用于配置拉曼光谱仪的信号采集时间,控制光谱数据的质量和信噪比。较长的积分时间可获得更高的信号强度和更好的光谱质量,但会增加测量时间。该函数允许根据样品特性和测量要求动态调整检测参数,优化测量效果。", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "int_time": { + "type": "string", + "title": "int_time", + "description": "" + } + }, + "required": [ + "int_time" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "ccd_time参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-laser_on_power": { + "feedback": {}, + "goal": {}, + "goal_default": { + "output_voltage_laser": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "设置激光器输出功率的函数。用于控制拉曼光谱仪激光器的功率输出,调节激光强度以适应不同样品的测量需求。适当的激光功率能够获得良好的拉曼信号同时避免样品损伤。该函数支持精确的功率控制,确保测量结果的稳定性和重现性。", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "output_voltage_laser": { + "type": "string", + "title": "output_voltage_laser", + "description": "" + } + }, + "required": [ + "output_voltage_laser" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "laser_on_power参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-raman_without_background": { + "feedback": {}, + "goal": {}, + "goal_default": { + "int_time": null, + "laser_power": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "执行无背景扣除的拉曼光谱测量函数。用于直接采集样品的拉曼光谱信号,不进行背景校正处理。该函数配置积分时间和激光功率参数,获取原始光谱数据用于后续的数据处理分析。适用于对光谱数据质量要求较高或需要自定义背景处理流程的测量场景。", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "int_time": { + "type": "string", + "title": "int_time", + "description": "" + }, + "laser_power": { + "type": "string", + "title": "laser_power", + "description": "" + } + }, + "required": [ + "int_time", + "laser_power" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "raman_without_background参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-raman_without_background_average": { + "feedback": {}, + "goal": {}, + "goal_default": { + "average": null, + "int_time": null, + "laser_power": null, + "sample_name": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "执行多次平均的无背景拉曼光谱测量函数。通过多次测量取平均值来提高光谱数据的信噪比和测量精度,减少随机噪声影响。该函数支持自定义平均次数、积分时间、激光功率等参数,并可为样品指定名称便于数据管理。适用于对测量精度要求较高的定量分析和研究应用。", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "average": { + "type": "string", + "title": "average", + "description": "" + }, + "int_time": { + "type": "string", + "title": "int_time", + "description": "" + }, + "laser_power": { + "type": "string", + "title": "laser_power", + "description": "" + }, + "sample_name": { + "type": "string", + "title": "sample_name", + "description": "" + } + }, + "required": [ + "sample_name", + "int_time", + "laser_power", + "average" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "raman_without_background_average参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "raman_cmd": { + "feedback": { + "status": "status" + }, + "goal": { + "command": "command" + }, + "goal_default": { + "command": "" + }, + "handles": {}, + "placeholder_keys": {}, + "result": { + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "SendCmd", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "command": { + "type": "string", + "title": "command", + "description": "" + } + }, + "title": "SendCmd_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": false, + "properties": { + "status": { + "type": "string" + } + }, + "title": "SendCmd_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "SendCmd_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "SendCmd" + } + }, + "module": "unilabos.devices.raman_uv.home_made_raman:RamanObj", + "status_types": {}, + "type": "python" + }, + "config_info": [], + "description": "拉曼光谱分析设备,用于物质的分子结构和化学成分表征。该设备集成激光器和CCD检测器,通过串口通信控制激光功率和光谱采集。具备背景扣除、多次平均、自动数据处理等功能,支持高精度的拉曼光谱测量。适用于材料表征、化学分析、质量控制、研究开发等需要分子指纹识别和结构分析的实验应用。", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/devices/characterization_optic.yaml", + "handles": [], + "icon": "", + "init_param_schema": { + "config": { + "properties": { + "baudrate_ccd": { + "default": 921600, + "type": "string" + }, + "baudrate_laser": { + "default": 9600, + "type": "string" + }, + "port_ccd": { + "type": "string" + }, + "port_laser": { + "type": "string" + } + }, + "required": [ + "port_laser", + "port_ccd" + ], + "type": "object" + }, + "data": { + "properties": {}, + "required": [], + "type": "object" + } + }, + "registry_type": "device", + "version": "1.0.0" + }, + { + "id": "hotel.thermo_orbitor_rs2_hotel", + "category": [ + "hotel" + ], + "class": { + "action_value_mappings": {}, + "module": "unilabos.devices.resource_container.container:HotelContainer", + "status_types": { + "rotation": "" + }, + "type": "python" + }, + "config_info": [], + "description": "Thermo Orbitor RS2 Hotel容器设备,用于实验室样品的存储和管理。该设备通过HotelContainer类实现容器的旋转控制和状态监控,主要用于存储实验样品、试剂瓶或其他实验器具,支持旋转功能以便于样品的自动化存取。适用于需要有序存储和快速访问大量样品的实验室自动化场景。", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/devices/hotel.yaml", + "handles": [], + "icon": "", + "init_param_schema": { + "config": { + "properties": { + "device_config": { + "type": "object" + }, + "rotation": { + "type": "object" + } + }, + "required": [ + "rotation", + "device_config" + ], + "type": "object" + }, + "data": { + "properties": { + "rotation": { + "type": "string" + } + }, + "required": [ + "rotation" + ], + "type": "object" + } + }, + "model": { + "mesh": "thermo_orbitor_rs2_hotel", + "path": "https://leap-lab.oss-cn-zhangjiakou.aliyuncs.com/uni-lab/devices/thermo_orbitor_rs2_hotel/macro_device.xacro", + "type": "device" + }, + "registry_type": "device", + "version": "1.0.0" + }, + { + "id": "reaction_station.bioyond", + "category": [ + "work_station", + "reaction_station_bioyond" + ], + "class": { + "action_value_mappings": { + "add_time_constraint": { + "feedback": {}, + "goal": { + "duration": "duration", + "end_point": "end_point", + "end_step_key": "end_step_key", + "start_point": "start_point", + "start_step_key": "start_step_key" + }, + "goal_default": { + "duration": null, + "end_point": 0, + "end_step_key": "", + "start_point": 0, + "start_step_key": "" + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "添加时间约束 - 在两个工作流之间添加时间约束", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "duration": { + "description": "时间(秒)", + "type": "integer", + "title": "duration" + }, + "end_point": { + "default": 0, + "description": "终点计时点 (Start=开始前, End=结束后)", + "type": "integer", + "title": "end_point" + }, + "end_step_key": { + "default": "", + "description": "终点步骤Key (可选, 默认为空则自动选择)", + "type": "string", + "title": "end_step_key" + }, + "start_point": { + "default": 0, + "description": "起点计时点 (Start=开始前, End=结束后)", + "type": "integer", + "title": "start_point" + }, + "start_step_key": { + "default": "", + "description": "起点步骤Key (例如 \"feeding\", \"liquid\", 可选, 默认为空则自动选择)", + "type": "string", + "title": "start_step_key" + } + }, + "required": [ + "duration" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "add_time_constraint参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-clear_workflows": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "clear_workflows参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-create_order": { + "feedback": {}, + "goal": {}, + "goal_default": { + "json_str": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "json_str": { + "type": "string", + "title": "json_str", + "description": "" + } + }, + "required": [ + "json_str" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "create_order参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-hard_delete_merged_workflows": { + "feedback": {}, + "goal": {}, + "goal_default": { + "workflow_ids": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "workflow_ids": { + "items": { + "type": "string" + }, + "type": "array", + "title": "workflow_ids", + "description": "" + } + }, + "required": [ + "workflow_ids" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "hard_delete_merged_workflows参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-merge_workflow_with_parameters": { + "feedback": {}, + "goal": {}, + "goal_default": { + "json_str": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "json_str": { + "type": "string", + "title": "json_str", + "description": "" + } + }, + "required": [ + "json_str" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "merge_workflow_with_parameters参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-process_temperature_cutoff_report": { + "feedback": {}, + "goal": {}, + "goal_default": { + "report_request": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "report_request": { + "type": "string", + "title": "report_request", + "description": "" + } + }, + "required": [ + "report_request" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "process_temperature_cutoff_report参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-process_web_workflows": { + "feedback": {}, + "goal": {}, + "goal_default": { + "web_workflow_json": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "web_workflow_json": { + "type": "string", + "title": "web_workflow_json", + "description": "" + } + }, + "required": [ + "web_workflow_json" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "items": { + "additionalProperties": { + "type": "string" + }, + "type": "object" + }, + "type": "array" + } + }, + "required": [ + "goal" + ], + "title": "process_web_workflows参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-set_reactor_temperature": { + "feedback": {}, + "goal": {}, + "goal_default": { + "reactor_id": null, + "temperature": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "reactor_id": { + "type": "integer", + "title": "reactor_id", + "description": "" + }, + "temperature": { + "type": "number", + "title": "temperature", + "description": "" + } + }, + "required": [ + "reactor_id", + "temperature" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "string" + } + }, + "required": [ + "goal" + ], + "title": "set_reactor_temperature参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-skip_titration_steps": { + "feedback": {}, + "goal": {}, + "goal_default": { + "preintake_id": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "preintake_id": { + "type": "string", + "title": "preintake_id", + "description": "" + } + }, + "required": [ + "preintake_id" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "skip_titration_steps参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-sync_workflow_sequence_from_bioyond": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "sync_workflow_sequence_from_bioyond参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-wait_for_multiple_orders_and_get_reports": { + "feedback": {}, + "goal": {}, + "goal_default": { + "batch_create_result": null, + "check_interval": 10, + "timeout": 7200 + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "batch_create_result": { + "type": "string", + "title": "batch_create_result", + "description": "" + }, + "check_interval": { + "default": 10, + "type": "integer", + "title": "check_interval", + "description": "" + }, + "timeout": { + "default": 7200, + "type": "integer", + "title": "timeout", + "description": "" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "wait_for_multiple_orders_and_get_reports参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-workflow_sequence": { + "feedback": {}, + "goal": {}, + "goal_default": { + "value": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "value": { + "items": { + "type": "string" + }, + "type": "array", + "title": "value", + "description": "" + } + }, + "required": [ + "value" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "workflow_sequence参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-workflow_step_query": { + "feedback": {}, + "goal": {}, + "goal_default": { + "workflow_id": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "workflow_id": { + "type": "string", + "title": "workflow_id", + "description": "" + } + }, + "required": [ + "workflow_id" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "workflow_step_query参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "clean_all_server_workflows": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "清空服务端所有非核心工作流 (保留核心流程)", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "clean_all_server_workflows参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "drip_back": { + "feedback": {}, + "goal": { + "assign_material_name": "assign_material_name", + "temperature": "temperature", + "time": "time", + "titration_type": "titration_type", + "torque_variation": "torque_variation", + "volume": "volume" + }, + "goal_default": { + "assign_material_name": null, + "temperature": 25.0, + "time": "90", + "titration_type": "1", + "torque_variation": 2, + "volume": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "滴回去", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "assign_material_name": { + "description": "物料名称(不能为空)", + "type": "string", + "title": "assign_material_name" + }, + "temperature": { + "default": 25.0, + "description": "温度设定(°C)", + "type": "number", + "title": "temperature" + }, + "time": { + "default": "90", + "description": "观察时间(分钟)", + "type": "string", + "title": "time" + }, + "titration_type": { + "default": "1", + "description": "是否滴定(NO=否, YES=是)", + "type": "string", + "title": "titration_type" + }, + "torque_variation": { + "default": 2, + "description": "是否观察 (NO=否, YES=是)", + "type": "integer", + "title": "torque_variation" + }, + "volume": { + "description": "分液公式(mL)", + "type": "string", + "title": "volume" + } + }, + "required": [ + "assign_material_name", + "volume" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "drip_back参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "extract_actuals_from_batch_reports": { + "feedback": {}, + "goal": { + "batch_reports_result": "batch_reports_result" + }, + "goal_default": { + "batch_reports_result": null + }, + "handles": { + "input": [ + { + "data_key": "batch_reports_result", + "data_source": "handle", + "data_type": "string", + "handler_key": "BATCH_REPORTS_RESULT", + "io_type": "source", + "label": "Batch Order Completion Reports" + } + ], + "output": [ + { + "data_key": "return_info", + "data_source": "executor", + "data_type": "string", + "handler_key": "ACTUALS_EXTRACTED", + "io_type": "sink", + "label": "Extracted Actuals" + } + ] + }, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "从批量任务完成报告中提取每个订单的实际加料量,输出extracted列表。", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "batch_reports_result": { + "description": "批量任务完成信息JSON字符串或对象,包含reports数组", + "type": "string", + "title": "batch_reports_result" + } + }, + "required": [ + "batch_reports_result" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "title": "extract_actuals_from_batch_reports结果", + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "extract_actuals_from_batch_reports参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "liquid_feeding_beaker": { + "feedback": {}, + "goal": { + "assign_material_name": "assign_material_name", + "temperature": "temperature", + "time": "time", + "titration_type": "titration_type", + "torque_variation": "torque_variation", + "volume": "volume" + }, + "goal_default": { + "assign_material_name": "BAPP", + "temperature": 25.0, + "time": "0", + "titration_type": "1", + "torque_variation": 1, + "volume": "350" + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "液体进料烧杯", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "assign_material_name": { + "default": "BAPP", + "description": "物料名称", + "type": "string", + "title": "assign_material_name" + }, + "temperature": { + "default": 25.0, + "description": "温度设定(°C)", + "type": "number", + "title": "temperature" + }, + "time": { + "default": "0", + "description": "观察时间(分钟)", + "type": "string", + "title": "time" + }, + "titration_type": { + "default": "1", + "description": "是否滴定(NO=否, YES=是)", + "type": "string", + "title": "titration_type" + }, + "torque_variation": { + "default": 1, + "description": "是否观察 (NO=否, YES=是)", + "type": "integer", + "title": "torque_variation" + }, + "volume": { + "default": "350", + "description": "分液公式(mL)", + "type": "string", + "title": "volume" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "liquid_feeding_beaker参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "liquid_feeding_solvents": { + "feedback": {}, + "goal": { + "assign_material_name": "assign_material_name", + "solvents": "solvents", + "temperature": "temperature", + "time": "time", + "titration_type": "titration_type", + "torque_variation": "torque_variation", + "volume": "volume" + }, + "goal_default": { + "assign_material_name": null, + "solvents": null, + "temperature": 25.0, + "time": "360", + "titration_type": "1", + "torque_variation": 2, + "volume": null + }, + "handles": { + "input": [ + { + "data_key": "solvents", + "data_source": "handle", + "data_type": "object", + "handler_key": "solvents", + "io_type": "source", + "label": "Solvents Data From Calculation Node" + } + ] + }, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "液体投料-溶剂。可以直接提供volume(mL),或通过solvents对象自动从additional_solvent(mL)计算volume。", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "assign_material_name": { + "description": "物料名称", + "type": "string", + "title": "assign_material_name" + }, + "solvents": { + "description": "溶剂信息对象(可选),包含: additional_solvent(溶剂体积mL), total_liquid_volume(总液体体积mL)。如果提供,将自动计算volume", + "type": "string", + "title": "solvents" + }, + "temperature": { + "default": 25.0, + "description": "温度设定(°C),默认25.00", + "type": "number", + "title": "temperature" + }, + "time": { + "default": "360", + "description": "观察时间(分钟),默认360", + "type": "string", + "title": "time" + }, + "titration_type": { + "default": "1", + "description": "是否滴定(NO=否, YES=是),默认NO", + "type": "string", + "title": "titration_type" + }, + "torque_variation": { + "default": 2, + "description": "是否观察 (NO=否, YES=是),默认YES", + "type": "integer", + "title": "torque_variation" + }, + "volume": { + "description": "分液量(mL)。可直接提供,或通过solvents参数自动计算", + "type": "string", + "title": "volume" + } + }, + "required": [ + "assign_material_name" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "liquid_feeding_solvents参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "liquid_feeding_titration": { + "feedback": {}, + "goal": { + "assign_material_name": "assign_material_name", + "extracted_actuals": "extracted_actuals", + "feeding_order_data": "feeding_order_data", + "temperature": "temperature", + "time": "time", + "titration_type": "titration_type", + "torque_variation": "torque_variation", + "volume_formula": "volume_formula", + "x_value": "x_value" + }, + "goal_default": { + "assign_material_name": null, + "extracted_actuals": null, + "feeding_order_data": null, + "temperature": 25.0, + "time": "90", + "titration_type": "2", + "torque_variation": 2, + "volume_formula": null, + "x_value": null + }, + "handles": { + "input": [ + { + "data_key": "extracted_actuals", + "data_source": "handle", + "data_type": "string", + "handler_key": "ACTUALS_EXTRACTED", + "io_type": "source", + "label": "Extracted Actuals From Reports" + }, + { + "data_key": "feeding_order_data", + "data_source": "handle", + "data_type": "object", + "handler_key": "feeding_order", + "io_type": "source", + "label": "Feeding Order Data From Calculation Node" + } + ] + }, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "液体进料(滴定)。支持两种模式:1)直接提供volume_formula;2)自动计算-提供x_value+feeding_order_data+extracted_actuals,系统自动生成公式\"1000*(m二酐-x)*V二酐滴定/m二酐滴定\"", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "assign_material_name": { + "description": "物料名称", + "type": "string", + "title": "assign_material_name" + }, + "extracted_actuals": { + "description": "从报告提取的实际加料量JSON字符串,包含actualTargetWeigh(m二酐滴定)和actualVolume(V二酐滴定)", + "type": "string", + "title": "extracted_actuals" + }, + "feeding_order_data": { + "description": "feeding_order JSON对象,用于获取m二酐值(type为main_anhydride的amount)。示例: {\"feeding_order\": [{\"type\": \"main_anhydride\", \"amount\": 1.915}]}", + "type": "string", + "title": "feeding_order_data" + }, + "temperature": { + "default": 25.0, + "description": "温度设定(°C),默认25.00", + "type": "number", + "title": "temperature" + }, + "time": { + "default": "90", + "description": "观察时间(分钟),默认90", + "type": "string", + "title": "time" + }, + "titration_type": { + "default": "2", + "description": "是否滴定(NO=否, YES=是),默认YES", + "type": "string", + "title": "titration_type" + }, + "torque_variation": { + "default": 2, + "description": "是否观察 (NO=否, YES=是),默认YES", + "type": "integer", + "title": "torque_variation" + }, + "volume_formula": { + "description": "分液公式(mL)。可直接提供固定公式,或留空由系统根据x_value、feeding_order_data、extracted_actuals自动生成", + "type": "string", + "title": "volume_formula" + }, + "x_value": { + "description": "公式中的x值,手工输入,格式为\"{{1-2-3}}\"(包含双花括号)。用于自动公式计算", + "type": "string", + "title": "x_value" + } + }, + "required": [ + "assign_material_name" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "liquid_feeding_titration参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "liquid_feeding_vials_non_titration": { + "feedback": {}, + "goal": { + "assign_material_name": "assign_material_name", + "temperature": "temperature", + "time": "time", + "titration_type": "titration_type", + "torque_variation": "torque_variation", + "volume_formula": "volume_formula" + }, + "goal_default": { + "assign_material_name": null, + "temperature": 25.0, + "time": "0", + "titration_type": "1", + "torque_variation": 1, + "volume_formula": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "液体进料小瓶(非滴定)", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "assign_material_name": { + "description": "物料名称", + "type": "string", + "title": "assign_material_name" + }, + "temperature": { + "default": 25.0, + "description": "温度设定(°C)", + "type": "number", + "title": "temperature" + }, + "time": { + "default": "0", + "description": "观察时间(分钟)", + "type": "string", + "title": "time" + }, + "titration_type": { + "default": "1", + "description": "是否滴定(NO=否, YES=是)", + "type": "string", + "title": "titration_type" + }, + "torque_variation": { + "default": 1, + "description": "是否观察 (NO=否, YES=是)", + "type": "integer", + "title": "torque_variation" + }, + "volume_formula": { + "description": "分液公式(mL)", + "type": "string", + "title": "volume_formula" + } + }, + "required": [ + "volume_formula", + "assign_material_name" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "liquid_feeding_vials_non_titration参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "process_and_execute_workflow": { + "feedback": {}, + "goal": { + "task_name": "task_name", + "workflow_name": "workflow_name" + }, + "goal_default": { + "task_name": null, + "workflow_name": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "处理并执行工作流", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "task_name": { + "description": "任务名称", + "type": "string", + "title": "task_name" + }, + "workflow_name": { + "description": "工作流名称", + "type": "string", + "title": "workflow_name" + } + }, + "required": [ + "workflow_name", + "task_name" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "process_and_execute_workflow参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "reactor_taken_in": { + "feedback": {}, + "goal": { + "assign_material_name": "assign_material_name", + "cutoff": "cutoff", + "temperature": "temperature" + }, + "goal_default": { + "assign_material_name": null, + "cutoff": "900000", + "temperature": -10.0 + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "反应器放入 - 将反应器放入工作站,配置物料名称、粘度上限和温度参数", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "assign_material_name": { + "description": "物料名称", + "type": "string", + "title": "assign_material_name" + }, + "cutoff": { + "default": "900000", + "description": "粘度上限", + "type": "string", + "title": "cutoff" + }, + "temperature": { + "default": -10.0, + "description": "温度设定(°C)", + "type": "number", + "title": "temperature" + } + }, + "required": [ + "assign_material_name" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "reactor_taken_in参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "reactor_taken_out": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "反应器取出 - 从工作站中取出反应器,无需参数的简单操作", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "reactor_taken_out参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "scheduler_start": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "启动调度器 - 启动Bioyond工作站的任务调度器,开始执行队列中的任务", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "title": "scheduler_start结果", + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "scheduler_start参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "solid_feeding_vials": { + "feedback": {}, + "goal": { + "assign_material_name": "assign_material_name", + "material_id": "material_id", + "temperature": "temperature", + "time": "time", + "torque_variation": "torque_variation" + }, + "goal_default": { + "assign_material_name": null, + "material_id": null, + "temperature": 25.0, + "time": "0", + "torque_variation": 1 + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "固体进料小瓶 - 通过小瓶向反应器中添加固体物料,支持多种粉末类型(盐、面粉、BTDA)", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "assign_material_name": { + "description": "物料名称(用于获取试剂瓶位ID)", + "type": "string", + "title": "assign_material_name" + }, + "material_id": { + "description": "粉末类型ID,Salt=盐(21分钟),Flour=面粉(27分钟),BTDA=BTDA(38分钟)", + "type": "string", + "title": "material_id" + }, + "temperature": { + "default": 25.0, + "description": "温度设定(°C)", + "type": "number", + "title": "temperature" + }, + "time": { + "default": "0", + "description": "观察时间(分钟)", + "type": "string", + "title": "time" + }, + "torque_variation": { + "default": 1, + "description": "是否观察 (NO=否, YES=是)", + "type": "integer", + "title": "torque_variation" + } + }, + "required": [ + "material_id" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "solid_feeding_vials参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + } + }, + "module": "unilabos.devices.workstation.bioyond_studio.reaction_station.reaction_station:BioyondReactionStation", + "protocol_type": [], + "status_types": { + "workflow_sequence": "String" + }, + "type": "python" + }, + "config_info": [], + "description": "Bioyond反应站", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/devices/reaction_station_bioyond.yaml", + "handles": [], + "icon": "reaction_station.webp", + "init_param_schema": { + "config": { + "properties": { + "config": { + "type": "object" + }, + "deck": { + "type": "string" + }, + "protocol_type": { + "type": "string" + } + }, + "required": [], + "type": "object" + }, + "data": { + "properties": { + "workflow_sequence": { + "type": "string" + } + }, + "required": [ + "workflow_sequence" + ], + "type": "object" + } + }, + "registry_type": "device", + "version": "1.0.0" + }, + { + "id": "reaction_station.reactor", + "category": [ + "reactor", + "reaction_station_bioyond" + ], + "class": { + "action_value_mappings": { + "auto-update_metrics": { + "feedback": {}, + "goal": {}, + "goal_default": { + "payload": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "payload": { + "type": "object", + "title": "payload", + "description": "" + } + }, + "required": [ + "payload" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "update_metrics参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + } + }, + "module": "unilabos.devices.workstation.bioyond_studio.reaction_station.reaction_station:BioyondReactor", + "status_types": {}, + "type": "python" + }, + "config_info": [], + "description": "反应站子设备-反应器", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/devices/reaction_station_bioyond.yaml", + "handles": [], + "icon": "reaction_station.webp", + "init_param_schema": { + "config": { + "properties": { + "config": { + "type": "object" + }, + "deck": { + "type": "string" + }, + "protocol_type": { + "type": "string" + } + }, + "required": [], + "type": "object" + }, + "data": { + "properties": {}, + "required": [], + "type": "object" + } + }, + "registry_type": "device", + "version": "1.0.0" + }, + { + "id": "cameracontroller_device", + "category": [ + "cameraSII" + ], + "class": { + "action_value_mappings": { + "auto-start": { + "feedback": {}, + "goal": {}, + "goal_default": { + "config": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "config": { + "type": "object", + "title": "config", + "description": "" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "start参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-stop": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "stop参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + } + }, + "module": "unilabos.devices.cameraSII.cameraUSB:CameraController", + "status_types": { + "status": "String" + }, + "type": "python" + }, + "config_info": [], + "description": "Uni-Lab-OS 摄像头驱动(Linux USB 摄像头版,无 PTZ)", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/devices/cameraSII.yaml", + "handles": [], + "icon": "", + "init_param_schema": { + "config": { + "properties": { + "audio_bitrate": { + "default": "64k", + "type": "string" + }, + "audio_device": { + "type": "string" + }, + "fps": { + "default": 30, + "type": "integer" + }, + "height": { + "default": 720, + "type": "integer" + }, + "host_id": { + "default": "demo-host", + "type": "string" + }, + "rtmp_url": { + "default": "rtmp://srs.sciol.ac.cn:4499/live/camera-01", + "type": "string" + }, + "signal_backend_url": { + "default": "wss://sciol.ac.cn/api/realtime/signal/host", + "type": "string" + }, + "video_bitrate": { + "default": "1500k", + "type": "string" + }, + "video_device": { + "default": "/dev/video0", + "type": "string" + }, + "webrtc_api": { + "default": "https://srs.sciol.ac.cn/rtc/v1/play/", + "type": "string" + }, + "webrtc_stream_url": { + "default": "webrtc://srs.sciol.ac.cn:4500/live/camera-01", + "type": "string" + }, + "width": { + "default": 1280, + "type": "integer" + } + }, + "required": [], + "type": "object" + }, + "data": { + "properties": { + "status": { + "type": "object" + } + }, + "required": [ + "status" + ], + "type": "object" + } + }, + "registry_type": "device", + "version": "1.0.0" + }, + { + "id": "linear_motion.grbl", + "category": [ + "robot_linear_motion" + ], + "class": { + "action_value_mappings": { + "auto-initialize": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "CNC设备初始化函数。执行Grbl CNC的完整初始化流程,包括归零操作、轴校准和状态复位。该函数将所有轴移动到原点位置(0,0,0),确保设备处于已知的参考状态。初始化完成后设备进入空闲状态,可接收后续的运动指令。", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "initialize参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-list": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "list的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "list参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-set_position": { + "feedback": {}, + "goal": {}, + "goal_default": { + "position": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "CNC绝对位置设定函数。控制CNC设备移动到指定的三维坐标位置(x,y,z)。该函数支持安全限位检查,防止超出设备工作范围。移动过程中会监控设备状态,确保安全到达目标位置。适用于精确定位和轨迹控制操作。", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "position": { + "type": "object", + "title": "position", + "description": "" + } + }, + "required": [ + "position" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "set_position参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-stop_operation": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "CNC操作停止函数。立即停止当前正在执行的所有CNC运动,包括轴移动和主轴旋转。该函数用于紧急停止或任务中断,确保设备和工件的安全。停止后设备将保持当前位置,等待新的指令。", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "stop_operation参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-wait_error": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "wait_error的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "wait_error参数", + "type": "object" + }, + "type": "UniLabJsonCommandAsync" + }, + "move_through_points": { + "feedback": { + "current_pose": "current_pose", + "distance_remaining": "distance_remaining", + "estimated_time_remaining": "estimated_time_remaining", + "navigation_time": "navigation_time", + "number_of_poses_remaining": "number_of_poses_remaining", + "number_of_recoveries": "number_of_recoveries" + }, + "goal": { + "behavior_tree": "behavior_tree", + "poses": "poses", + "positions": "positions" + }, + "goal_default": { + "poses": [], + "behavior_tree": "" + }, + "handles": {}, + "placeholder_keys": {}, + "result": { + "result": "result" + }, + "schema": { + "title": "NavigateThroughPoses", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "poses": { + "type": "array", + "items": { + "type": "object", + "properties": { + "header": { + "type": "object", + "properties": { + "stamp": { + "type": "object", + "properties": { + "sec": { + "type": "integer" + }, + "nanosec": { + "type": "integer" + } + }, + "required": [ + "sec", + "nanosec" + ], + "title": "stamp" + }, + "frame_id": { + "type": "string" + } + }, + "required": [ + "stamp", + "frame_id" + ], + "title": "header" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position" + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + }, + "w": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation" + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose" + } + }, + "required": [ + "header", + "pose" + ] + }, + "title": "poses", + "description": "" + }, + "behavior_tree": { + "type": "string", + "title": "behavior_tree", + "description": "" + } + }, + "title": "NavigateThroughPoses_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": false, + "properties": { + "current_pose": { + "type": "object", + "properties": { + "header": { + "type": "object", + "properties": { + "stamp": { + "type": "object", + "properties": { + "sec": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647 + }, + "nanosec": { + "type": "integer", + "minimum": 0, + "maximum": 4294967295 + } + }, + "required": [ + "sec", + "nanosec" + ], + "title": "stamp", + "additionalProperties": false + }, + "frame_id": { + "type": "string" + } + }, + "required": [ + "stamp", + "frame_id" + ], + "title": "header", + "additionalProperties": false + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + } + }, + "required": [ + "header", + "pose" + ], + "title": "current_pose", + "additionalProperties": false + }, + "navigation_time": { + "type": "object", + "properties": { + "sec": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647 + }, + "nanosec": { + "type": "integer", + "minimum": 0, + "maximum": 4294967295 + } + }, + "required": [ + "sec", + "nanosec" + ], + "title": "navigation_time", + "additionalProperties": false + }, + "estimated_time_remaining": { + "type": "object", + "properties": { + "sec": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647 + }, + "nanosec": { + "type": "integer", + "minimum": 0, + "maximum": 4294967295 + } + }, + "required": [ + "sec", + "nanosec" + ], + "title": "estimated_time_remaining", + "additionalProperties": false + }, + "number_of_recoveries": { + "type": "integer", + "minimum": -32768, + "maximum": 32767 + }, + "distance_remaining": { + "type": "number", + "minimum": -3.4028235e+38, + "maximum": 3.4028235e+38 + }, + "number_of_poses_remaining": { + "type": "integer", + "minimum": -32768, + "maximum": 32767 + } + }, + "title": "NavigateThroughPoses_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "result": { + "type": "object", + "additionalProperties": true, + "title": "result" + } + }, + "title": "NavigateThroughPoses_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "NavigateThroughPoses" + }, + "set_spindle_speed": { + "feedback": { + "error": "error", + "header": "header", + "position": "position", + "velocity": "velocity" + }, + "goal": { + "max_velocity": "max_velocity", + "min_duration": "min_duration", + "position": "position", + "spindle_speed": "spindle_speed" + }, + "goal_default": { + "position": 0.0, + "min_duration": { + "sec": 0, + "nanosec": 0 + }, + "max_velocity": 0.0 + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "title": "SingleJointPosition", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "position": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "position", + "description": "" + }, + "min_duration": { + "type": "object", + "properties": { + "sec": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647 + }, + "nanosec": { + "type": "integer", + "minimum": 0, + "maximum": 4294967295 + } + }, + "required": [ + "sec", + "nanosec" + ], + "title": "min_duration", + "additionalProperties": false, + "description": "" + }, + "max_velocity": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "max_velocity", + "description": "" + } + }, + "title": "SingleJointPosition_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": false, + "properties": { + "header": { + "type": "object", + "properties": { + "stamp": { + "type": "object", + "properties": { + "sec": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647 + }, + "nanosec": { + "type": "integer", + "minimum": 0, + "maximum": 4294967295 + } + }, + "required": [ + "sec", + "nanosec" + ], + "title": "stamp", + "additionalProperties": false + }, + "frame_id": { + "type": "string" + } + }, + "required": [ + "stamp", + "frame_id" + ], + "title": "header", + "additionalProperties": false + }, + "position": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "velocity": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "error": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "title": "SingleJointPosition_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": true, + "title": "SingleJointPosition_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "SingleJointPosition" + } + }, + "module": "unilabos.devices.cnc.grbl_sync:GrblCNC", + "status_types": { + "position": "Point3D", + "spindle_speed": "Float64", + "status": "String" + }, + "type": "python" + }, + "config_info": [], + "description": "Grbl数控机床(CNC)设备,用于实验室精密加工和三轴定位操作。该设备基于Grbl固件,通过串口通信控制步进电机实现X、Y、Z三轴的精确运动。支持绝对定位、轨迹规划、主轴控制和实时状态监控。具备安全限位保护和运动平滑控制功能。适用于精密钻孔、铣削、雕刻、样品制备等需要高精度定位和加工的实验室应用场景。", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/devices/robot_linear_motion.yaml", + "handles": [], + "icon": "", + "init_param_schema": { + "config": { + "properties": { + "address": { + "default": "1", + "type": "string" + }, + "limits": { + "default": [ + -150, + 150, + -200, + 0, + -80, + 0 + ], + "items": { + "type": "integer" + }, + "type": "array" + }, + "port": { + "type": "string" + } + }, + "required": [ + "port" + ], + "type": "object" + }, + "data": { + "properties": { + "position": { + "type": "object" + }, + "spindle_speed": { + "type": "number" + }, + "status": { + "type": "string" + } + }, + "required": [ + "position", + "spindle_speed", + "status" + ], + "type": "object" + } + }, + "registry_type": "device", + "version": "1.0.0" + }, + { + "id": "linear_motion.toyo_xyz.sim", + "category": [ + "robot_linear_motion" + ], + "class": { + "action_value_mappings": { + "auto-check_tf_update_actions": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "check_tf_update_actions的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "check_tf_update_actions参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-moveit_joint_task": { + "feedback": {}, + "goal": {}, + "goal_default": { + "joint_names": null, + "joint_positions": null, + "move_group": null, + "retry": 10, + "speed": 1 + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "moveit_joint_task的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "joint_names": { + "type": "string", + "title": "joint_names", + "description": "" + }, + "joint_positions": { + "type": "string", + "title": "joint_positions", + "description": "" + }, + "move_group": { + "type": "string", + "title": "move_group", + "description": "" + }, + "retry": { + "default": 10, + "type": "string", + "title": "retry", + "description": "" + }, + "speed": { + "default": 1, + "type": "string", + "title": "speed", + "description": "" + } + }, + "required": [ + "move_group", + "joint_positions" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "moveit_joint_task参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-moveit_task": { + "feedback": {}, + "goal": {}, + "goal_default": { + "cartesian": false, + "move_group": null, + "offsets": [ + 0, + 0, + 0 + ], + "position": null, + "quaternion": null, + "retry": 10, + "speed": 1, + "target_link": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "moveit_task的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "cartesian": { + "default": false, + "type": "string", + "title": "cartesian", + "description": "" + }, + "move_group": { + "type": "string", + "title": "move_group", + "description": "" + }, + "offsets": { + "default": [ + 0, + 0, + 0 + ], + "type": "string", + "title": "offsets", + "description": "" + }, + "position": { + "type": "string", + "title": "position", + "description": "" + }, + "quaternion": { + "type": "string", + "title": "quaternion", + "description": "" + }, + "retry": { + "default": 10, + "type": "string", + "title": "retry", + "description": "" + }, + "speed": { + "default": 1, + "type": "string", + "title": "speed", + "description": "" + }, + "target_link": { + "type": "string", + "title": "target_link", + "description": "" + } + }, + "required": [ + "move_group", + "position", + "quaternion" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "moveit_task参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-resource_manager": { + "feedback": {}, + "goal": {}, + "goal_default": { + "parent_link": null, + "resource": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "resource_manager的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "parent_link": { + "type": "string", + "title": "parent_link", + "description": "" + }, + "resource": { + "type": "string", + "title": "resource", + "description": "" + } + }, + "required": [ + "resource", + "parent_link" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "resource_manager参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-wait_for_resource_action": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "wait_for_resource_action的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "wait_for_resource_action参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "pick_and_place": { + "feedback": { + "status": "status" + }, + "goal": { + "command": "command" + }, + "goal_default": { + "command": "" + }, + "handles": {}, + "placeholder_keys": {}, + "result": { + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "SendCmd", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "command": { + "type": "string", + "title": "command", + "description": "" + } + }, + "title": "SendCmd_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": false, + "properties": { + "status": { + "type": "string" + } + }, + "title": "SendCmd_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "SendCmd_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "SendCmd" + }, + "set_position": { + "feedback": { + "status": "status" + }, + "goal": { + "command": "command" + }, + "goal_default": { + "command": "" + }, + "handles": {}, + "placeholder_keys": {}, + "result": { + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "SendCmd", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "command": { + "type": "string", + "title": "command", + "description": "" + } + }, + "title": "SendCmd_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": false, + "properties": { + "status": { + "type": "string" + } + }, + "title": "SendCmd_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "SendCmd_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "SendCmd" + }, + "set_status": { + "feedback": { + "status": "status" + }, + "goal": { + "command": "command" + }, + "goal_default": { + "command": "" + }, + "handles": {}, + "placeholder_keys": {}, + "result": { + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "SendCmd", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "command": { + "type": "string", + "title": "command", + "description": "" + } + }, + "title": "SendCmd_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": false, + "properties": { + "status": { + "type": "string" + } + }, + "title": "SendCmd_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "SendCmd_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "SendCmd" + } + }, + "module": "unilabos.devices.ros_dev.moveit_interface:MoveitInterface", + "status_types": {}, + "type": "python" + }, + "config_info": [], + "description": "东洋XYZ三轴运动平台,基于MoveIt2运动规划框架的精密定位设备。该设备通过ROS2和MoveIt2实现三维空间的精确运动控制,支持复杂轨迹规划、多点定位、速度控制等功能。具备高精度定位、平稳运动、实时轨迹监控等特性。适用于精密加工、样品定位、检测扫描、自动化装配等需要高精度三维运动控制的实验室和工业应用场景。", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/devices/robot_linear_motion.yaml", + "handles": [], + "icon": "", + "init_param_schema": { + "config": { + "properties": { + "device_config": { + "type": "string" + }, + "joint_poses": { + "type": "string" + }, + "moveit_type": { + "type": "string" + }, + "rotation": { + "type": "string" + } + }, + "required": [ + "moveit_type", + "joint_poses" + ], + "type": "object" + }, + "data": { + "properties": {}, + "required": [], + "type": "object" + } + }, + "model": { + "mesh": "toyo_xyz", + "type": "device" + }, + "registry_type": "device", + "version": "1.0.0" + }, + { + "id": "motor.iCL42", + "category": [ + "robot_linear_motion" + ], + "class": { + "action_value_mappings": { + "auto-execute_run_motor": { + "feedback": {}, + "goal": {}, + "goal_default": { + "mode": null, + "position": null, + "velocity": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "步进电机执行运动函数。直接执行电机运动命令,包括位置设定、速度控制和路径规划。该函数处理底层的电机控制协议,消除警告信息,设置运动参数并启动电机运行。适用于需要直接控制电机运动的应用场景。", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "mode": { + "type": "string", + "title": "mode", + "description": "" + }, + "position": { + "type": "number", + "title": "position", + "description": "" + }, + "velocity": { + "type": "integer", + "title": "velocity", + "description": "" + } + }, + "required": [ + "mode", + "position", + "velocity" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "execute_run_motor参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-init_device": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "iCL42电机设备初始化函数。建立与iCL42步进电机驱动器的串口通信连接,配置通信参数包括波特率、数据位、校验位等。该函数是电机使用前的必要步骤,确保驱动器处于可控状态并准备接收运动指令。", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "init_device参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-run_motor": { + "feedback": {}, + "goal": {}, + "goal_default": { + "mode": null, + "position": null, + "velocity": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "步进电机运动控制函数。根据指定的运动模式、目标位置和速度参数控制电机运动。支持多种运动模式和精确的位置控制,自动处理运动轨迹规划和执行。该函数提供异步执行和状态反馈,确保运动的准确性和可靠性。", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "mode": { + "type": "string", + "title": "mode", + "description": "" + }, + "position": { + "type": "number", + "title": "position", + "description": "" + }, + "velocity": { + "type": "integer", + "title": "velocity", + "description": "" + } + }, + "required": [ + "mode", + "position", + "velocity" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "run_motor参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "execute_command_from_outer": { + "feedback": {}, + "goal": { + "command": "command" + }, + "goal_default": { + "command": "" + }, + "handles": {}, + "result": { + "success": "success" + }, + "schema": { + "title": "SendCmd", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "command": { + "type": "string", + "title": "command", + "description": "" + } + }, + "title": "SendCmd_Goal" + }, + "feedback": { + "type": "object", + "additionalProperties": false, + "properties": { + "status": { + "type": "string" + } + }, + "title": "SendCmd_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "SendCmd_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "SendCmd" + } + }, + "module": "unilabos.devices.motor.iCL42:iCL42Driver", + "status_types": { + "is_executing_run": "Bool", + "motor_position": "Int64", + "success": "Bool" + }, + "type": "python" + }, + "config_info": [], + "description": "iCL42步进电机驱动器,用于实验室设备的精密线性运动控制。该设备通过串口通信控制iCL42型步进电机驱动器,支持多种运动模式和精确的位置、速度控制。具备位置反馈、运行状态监控和故障检测功能。适用于自动进样器、样品传送、精密定位平台等需要准确线性运动控制的实验室自动化设备。", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/devices/robot_linear_motion.yaml", + "handles": [], + "icon": "", + "init_param_schema": { + "config": { + "properties": { + "device_address": { + "default": 1, + "type": "integer" + }, + "device_com": { + "default": "COM9", + "type": "string" + } + }, + "required": [], + "type": "object" + }, + "data": { + "properties": { + "is_executing_run": { + "type": "boolean" + }, + "motor_position": { + "type": "integer" + }, + "success": { + "type": "boolean" + } + }, + "required": [ + "is_executing_run", + "motor_position", + "success" + ], + "type": "object" + } + }, + "registry_type": "device", + "version": "1.0.0" + }, + { + "id": "agv.SEER", + "category": [ + "robot_agv" + ], + "class": { + "action_value_mappings": { + "auto-send": { + "feedback": {}, + "goal": {}, + "goal_default": { + "cmd": null, + "ex_data": "", + "obj": "receive_socket" + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "AGV底层通信命令发送函数。通过TCP socket连接向AGV发送底层控制命令,支持pose(位置)、status(状态)、nav(导航)等命令类型。用于获取AGV当前位置坐标、运行状态或发送导航指令。该函数封装了AGV的通信协议,将命令转换为十六进制数据包并处理响应解析。", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "cmd": { + "type": "string", + "title": "cmd", + "description": "" + }, + "ex_data": { + "default": "", + "type": "string", + "title": "ex_data", + "description": "" + }, + "obj": { + "default": "receive_socket", + "type": "string", + "title": "obj", + "description": "" + } + }, + "required": [ + "cmd" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "send参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "send_nav_task": { + "feedback": { + "status": "status" + }, + "goal": { + "command": "command" + }, + "goal_default": { + "command": "" + }, + "handles": {}, + "placeholder_keys": {}, + "result": { + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "SendCmd", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "command": { + "type": "string", + "title": "command", + "description": "" + } + }, + "title": "SendCmd_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": false, + "properties": { + "status": { + "type": "string" + } + }, + "title": "SendCmd_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "SendCmd_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "SendCmd" + } + }, + "module": "unilabos.devices.agv.agv_navigator:AgvNavigator", + "status_types": { + "pose": "list", + "status": "String" + }, + "type": "python" + }, + "config_info": [], + "description": "SEER AGV自动导引车设备,用于实验室内物料和设备的自主移动运输。该AGV通过TCP socket与导航系统通信,具备精确的定位和路径规划能力。支持实时位置监控、状态查询和导航任务执行,可在预设的实验室环境中自主移动至指定位置。适用于样品运输、设备转移、多工位协作等实验室自动化物流场景。", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/devices/robot_agv.yaml", + "handles": [], + "icon": "", + "init_param_schema": { + "config": { + "properties": { + "host": { + "type": "string" + } + }, + "required": [ + "host" + ], + "type": "object" + }, + "data": { + "properties": { + "pose": { + "type": "array" + }, + "status": { + "type": "string" + } + }, + "required": [ + "pose", + "status" + ], + "type": "object" + } + }, + "registry_type": "device", + "version": "1.0.0" + }, + { + "id": "opsky_ATR30007", + "category": [ + "characterization_optic", + "opsky_ATR30007" + ], + "class": { + "action_value_mappings": { + "auto-ensure_connected": { + "feedback": {}, + "goal": {}, + "goal_default": { + "client": null, + "ip": null, + "name": null, + "port": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "client": { + "type": "string", + "title": "client", + "description": "" + }, + "ip": { + "type": "string", + "title": "ip", + "description": "" + }, + "name": { + "type": "string", + "title": "name", + "description": "" + }, + "port": { + "type": "string", + "title": "port", + "description": "" + } + }, + "required": [ + "client", + "name", + "ip", + "port" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "ensure_connected参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-run_once": { + "feedback": {}, + "goal": {}, + "goal_default": { + "integration_time": "5000", + "laser_power": "200", + "norm_max": "1.0", + "normalize": "true", + "save_csv": "true", + "save_plot": "true" + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "执行一次站控-扫码-拉曼流程的大函数入口,参数以字符串形式传入。", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "integration_time": { + "default": "5000", + "type": "string", + "title": "integration_time", + "description": "" + }, + "laser_power": { + "default": "200", + "type": "string", + "title": "laser_power", + "description": "" + }, + "norm_max": { + "default": "1.0", + "type": "string", + "title": "norm_max", + "description": "" + }, + "normalize": { + "default": "true", + "type": "string", + "title": "normalize", + "description": "" + }, + "save_csv": { + "default": "true", + "type": "string", + "title": "save_csv", + "description": "" + }, + "save_plot": { + "default": "true", + "type": "string", + "title": "save_plot", + "description": "" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "run_once参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-safe_read": { + "feedback": {}, + "goal": {}, + "goal_default": { + "client": null, + "delay": 0.3, + "func": null, + "name": null, + "retries": 3 + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "client": { + "type": "string", + "title": "client", + "description": "" + }, + "delay": { + "default": 0.3, + "type": "string", + "title": "delay", + "description": "" + }, + "func": { + "type": "string", + "title": "func", + "description": "" + }, + "name": { + "type": "string", + "title": "name", + "description": "" + }, + "retries": { + "default": 3, + "type": "string", + "title": "retries", + "description": "" + } + }, + "required": [ + "client", + "name", + "func" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "safe_read参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-safe_write": { + "feedback": {}, + "goal": {}, + "goal_default": { + "client": null, + "delay": 0.3, + "func": null, + "name": null, + "retries": 3 + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "client": { + "type": "string", + "title": "client", + "description": "" + }, + "delay": { + "default": 0.3, + "type": "string", + "title": "delay", + "description": "" + }, + "func": { + "type": "string", + "title": "func", + "description": "" + }, + "name": { + "type": "string", + "title": "name", + "description": "" + }, + "retries": { + "default": 3, + "type": "string", + "title": "retries", + "description": "" + } + }, + "required": [ + "client", + "name", + "func" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "safe_write参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-wait_with_quit_check": { + "feedback": {}, + "goal": {}, + "goal_default": { + "addr_quit": 270, + "robot": null, + "seconds": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "addr_quit": { + "default": 270, + "type": "string", + "title": "addr_quit", + "description": "" + }, + "robot": { + "type": "string", + "title": "robot", + "description": "" + }, + "seconds": { + "type": "string", + "title": "seconds", + "description": "" + } + }, + "required": [ + "robot", + "seconds" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "wait_with_quit_check参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + } + }, + "module": "unilabos.devices.opsky_Raman.opsky_ATR30007:opsky_ATR30007", + "status_types": {}, + "type": "python" + }, + "config_info": [], + "description": "OPSKY ATR30007 光纤拉曼模块,提供单一入口大函数以执行一次完整流程。", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/devices/opsky_ATR30007.yaml", + "handles": [], + "icon": "", + "init_param_schema": { + "config": { + "properties": { + "plc_ip": { + "default": "192.168.1.88", + "type": "string" + }, + "plc_port": { + "default": 502, + "type": "integer" + }, + "robot_ip": { + "default": "192.168.1.200", + "type": "string" + }, + "robot_port": { + "default": 502, + "type": "integer" + }, + "scan_csv_file": { + "default": "scan_results.csv", + "type": "string" + } + }, + "required": [], + "type": "object" + }, + "data": { + "properties": {}, + "required": [], + "type": "object" + } + }, + "registry_type": "device", + "version": "1.0.0" + }, + { + "id": "neware_battery_test_system", + "category": [ + "neware_battery_test_system", + "neware", + "battery_test" + ], + "class": { + "action_value_mappings": { + "auto-print_status_summary": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "print_status_summary参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-test_connection": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "boolean" + } + }, + "required": [ + "goal" + ], + "title": "test_connection参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "debug_resource_names": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "调试方法:显示所有资源的实际名称", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "debug_resource_names参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "export_status_json": { + "feedback": {}, + "goal": { + "filepath": "filepath" + }, + "goal_default": { + "filepath": "bts_status.json" + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "导出当前状态数据到JSON文件", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "filepath": { + "default": "bts_status.json", + "description": "输出JSON文件路径", + "type": "string", + "title": "filepath" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "export_status_json参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "get_device_summary": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "result": { + "return_info": "return_info", + "success": "success" + }, + "schema": { + "description": "获取设备级别的摘要统计信息", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object" + }, + "result": { + "properties": { + "return_info": { + "description": "设备摘要信息JSON格式", + "type": "string" + }, + "success": { + "description": "查询是否成功", + "type": "boolean" + } + }, + "required": [ + "return_info", + "success" + ], + "type": "object" + } + }, + "required": [ + "goal" + ], + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "get_plate_status": { + "feedback": {}, + "goal": { + "plate_num": "plate_num" + }, + "goal_default": { + "plate_num": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "获取指定盘或所有盘的状态信息", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "plate_num": { + "description": "盘号 (1 或 2),如果为null则返回所有盘的状态", + "type": "integer", + "title": "plate_num" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "get_plate_status参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "print_status_summary_action": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "打印通道状态摘要信息到控制台", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "print_status_summary_action参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "query_plate_action": { + "feedback": {}, + "goal": { + "plate_id": "plate_id", + "string": "string" + }, + "goal_default": { + "string": "" + }, + "handles": {}, + "placeholder_keys": {}, + "result": { + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "StrSingleInput", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "string": { + "type": "string", + "title": "string", + "description": "" + } + }, + "title": "StrSingleInput_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": true, + "title": "StrSingleInput_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "StrSingleInput_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "StrSingleInput" + }, + "submit_from_csv": { + "feedback": {}, + "goal": { + "csv_path": "string", + "output_dir": "string" + }, + "goal_default": { + "csv_path": null, + "output_dir": "." + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "从CSV文件批量提交Neware测试任务", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "csv_path": { + "description": "输入CSV文件的绝对路径", + "type": "string", + "title": "csv_path" + }, + "output_dir": { + "default": ".", + "description": "输出目录(用于存储XML和备份文件),默认当前目录", + "type": "string", + "title": "output_dir" + } + }, + "required": [ + "csv_path" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "submit_from_csv参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "test_connection_action": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "测试与电池测试系统的TCP连接", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "test_connection_action参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "upload_backup_to_oss": { + "feedback": {}, + "goal": { + "backup_dir": "backup_dir", + "file_pattern": "file_pattern", + "oss_prefix": "oss_prefix" + }, + "goal_default": { + "backup_dir": null, + "file_pattern": "*", + "oss_prefix": null + }, + "handles": { + "output": [ + { + "data_key": "uploaded_files", + "data_source": "executor", + "data_type": "array", + "handler_key": "uploaded_files", + "io_type": "sink", + "label": "Uploaded Files (with standard flow info)" + } + ] + }, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "上传备份文件到阿里云OSS", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "backup_dir": { + "description": "备份目录路径(默认使用最近一次submit_from_csv的backup_dir)", + "type": "string", + "title": "backup_dir" + }, + "file_pattern": { + "default": "*", + "description": "文件通配符模式,例如 *.csv 或 Battery_*.nda", + "type": "string", + "title": "file_pattern" + }, + "oss_prefix": { + "description": "OSS对象路径前缀(默认使用self.oss_prefix)", + "type": "string", + "title": "oss_prefix" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": { + "type": "object" + } + }, + "required": [ + "goal" + ], + "title": "upload_backup_to_oss参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + } + }, + "module": "unilabos.devices.neware_battery_test_system.neware_battery_test_system:NewareBatteryTestSystem", + "status_types": { + "channel_status": "String", + "connection_info": "String", + "device_summary": "dict", + "status": "String", + "total_channels": "Int64" + }, + "type": "python" + }, + "config_info": [], + "description": "新威电池测试系统驱动,提供720个通道的电池测试状态监控、物料管理和CSV批量提交功能。支持TCP通信实现远程控制,包含完整的物料管理系统(2盘电池状态映射),以及从CSV文件批量提交测试任务的能力。", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/devices/neware_battery_test_system.yaml", + "handles": [], + "icon": "", + "init_param_schema": { + "config": { + "properties": { + "devtype": { + "type": "string" + }, + "ip": { + "type": "string" + }, + "machine_id": { + "default": 1, + "type": "integer" + }, + "oss_prefix": { + "default": "neware_backup", + "type": "string" + }, + "oss_upload_enabled": { + "default": false, + "type": "boolean" + }, + "port": { + "type": "integer" + }, + "size_x": { + "default": 50, + "type": "number" + }, + "size_y": { + "default": 50, + "type": "number" + }, + "size_z": { + "default": 20, + "type": "number" + }, + "timeout": { + "type": "integer" + } + }, + "required": [], + "type": "object" + }, + "data": { + "properties": { + "channel_status": { + "additionalProperties": { + "type": "object" + }, + "type": "object" + }, + "connection_info": { + "additionalProperties": { + "type": "string" + }, + "type": "object" + }, + "device_summary": { + "type": "object" + }, + "status": { + "type": "string" + }, + "total_channels": { + "type": "integer" + } + }, + "required": [ + "channel_status", + "connection_info", + "device_summary", + "status", + "total_channels" + ], + "type": "object" + } + }, + "registry_type": "device", + "version": "1.0.0" + }, + { + "id": "workstation", + "category": [ + "work_station" + ], + "class": { + "action_value_mappings": { + "AGVTransferProtocol": { + "feedback": {}, + "goal": { + "from_repo": "from_repo", + "from_repo_position": "from_repo_position", + "to_repo": "to_repo", + "to_repo_position": "to_repo_position" + }, + "goal_default": { + "from_repo": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + }, + "from_repo_position": "", + "to_repo": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + }, + "to_repo_position": "" + }, + "handles": {}, + "result": {}, + "schema": { + "title": "AGVTransfer", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "from_repo": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "from_repo", + "additionalProperties": false, + "description": "" + }, + "from_repo_position": { + "type": "string", + "title": "from_repo_position", + "description": "" + }, + "to_repo": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "to_repo", + "additionalProperties": false, + "description": "" + }, + "to_repo_position": { + "type": "string", + "title": "to_repo_position", + "description": "" + } + }, + "title": "AGVTransfer_Goal" + }, + "feedback": { + "type": "object", + "additionalProperties": false, + "properties": { + "status": { + "type": "string" + } + }, + "title": "AGVTransfer_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "AGVTransfer_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "AGVTransfer" + }, + "AddProtocol": { + "feedback": {}, + "goal": { + "amount": "amount", + "equiv": "equiv", + "event": "event", + "mass": "mass", + "mol": "mol", + "purpose": "purpose", + "rate_spec": "rate_spec", + "ratio": "ratio", + "reagent": "reagent", + "stir": "stir", + "stir_speed": "stir_speed", + "time": "time", + "vessel": "vessel", + "viscous": "viscous", + "volume": "volume" + }, + "goal_default": { + "vessel": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + }, + "reagent": "", + "volume": "", + "mass": "", + "amount": "", + "time": "", + "stir": false, + "stir_speed": 0.0, + "viscous": false, + "purpose": "", + "event": "", + "mol": "", + "rate_spec": "", + "equiv": "", + "ratio": "" + }, + "handles": { + "input": [ + { + "data_key": "vessel", + "data_source": "handle", + "data_type": "resource", + "handler_key": "Vessel", + "label": "Vessel" + }, + { + "data_key": "reagent", + "data_source": "handle", + "data_type": "resource", + "handler_key": "reagent", + "label": "Reagent" + } + ], + "output": [ + { + "data_key": "vessel", + "data_source": "executor", + "data_type": "resource", + "handler_key": "VesselOut", + "label": "Vessel" + } + ] + }, + "placeholder_keys": { + "vessel": "unilabos_resources" + }, + "result": {}, + "schema": { + "title": "Add", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "vessel": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "vessel", + "additionalProperties": false, + "description": "" + }, + "reagent": { + "type": "string", + "title": "reagent", + "description": "" + }, + "volume": { + "type": "string", + "title": "volume", + "description": "" + }, + "mass": { + "type": "string", + "title": "mass", + "description": "" + }, + "amount": { + "type": "string", + "title": "amount", + "description": "" + }, + "time": { + "type": "string", + "title": "time", + "description": "" + }, + "stir": { + "type": "boolean", + "title": "stir", + "description": "" + }, + "stir_speed": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "stir_speed", + "description": "" + }, + "viscous": { + "type": "boolean", + "title": "viscous", + "description": "" + }, + "purpose": { + "type": "string", + "title": "purpose", + "description": "" + }, + "event": { + "type": "string", + "title": "event", + "description": "" + }, + "mol": { + "type": "string", + "title": "mol", + "description": "" + }, + "rate_spec": { + "type": "string", + "title": "rate_spec", + "description": "" + }, + "equiv": { + "type": "string", + "title": "equiv", + "description": "" + }, + "ratio": { + "type": "string", + "title": "ratio", + "description": "" + } + }, + "title": "Add_Goal", + "_unilabos_placeholder_info": { + "vessel": "unilabos_resources" + } + }, + "feedback": { + "type": "object", + "additionalProperties": false, + "properties": { + "progress": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "current_status": { + "type": "string" + } + }, + "title": "Add_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "success": { + "type": "boolean" + }, + "message": { + "type": "string" + }, + "return_info": { + "type": "string" + } + }, + "title": "Add_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "Add" + }, + "AdjustPHProtocol": { + "feedback": {}, + "goal": { + "ph_value": "ph_value", + "reagent": "reagent", + "settling_time": "settling_time", + "stir": "stir", + "stir_speed": "stir_speed", + "stir_time": "stir_time", + "vessel": "vessel", + "volume": "volume" + }, + "goal_default": { + "vessel": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + }, + "ph_value": 0.0, + "reagent": "" + }, + "handles": { + "input": [ + { + "data_key": "vessel", + "data_source": "handle", + "data_type": "resource", + "handler_key": "Vessel", + "label": "Vessel" + }, + { + "data_key": "reagent", + "data_source": "handle", + "data_type": "resource", + "handler_key": "reagent", + "label": "Reagent" + } + ], + "output": [ + { + "data_key": "vessel", + "data_source": "executor", + "data_type": "resource", + "handler_key": "VesselOut", + "label": "Vessel" + } + ] + }, + "placeholder_keys": { + "vessel": "unilabos_resources" + }, + "result": {}, + "schema": { + "title": "AdjustPH", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "vessel": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "vessel", + "additionalProperties": false, + "description": "" + }, + "ph_value": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "ph_value", + "description": "" + }, + "reagent": { + "type": "string", + "title": "reagent", + "description": "" + } + }, + "title": "AdjustPH_Goal", + "_unilabos_placeholder_info": { + "vessel": "unilabos_resources" + } + }, + "feedback": { + "type": "object", + "additionalProperties": false, + "properties": { + "status": { + "type": "string" + }, + "progress": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "title": "AdjustPH_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "success": { + "type": "boolean" + }, + "message": { + "type": "string" + }, + "return_info": { + "type": "string" + } + }, + "title": "AdjustPH_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "AdjustPH" + }, + "CentrifugeProtocol": { + "feedback": {}, + "goal": { + "speed": "speed", + "temp": "temp", + "time": "time", + "vessel": "vessel" + }, + "goal_default": { + "vessel": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + }, + "speed": 0.0, + "time": 0.0, + "temp": 0.0 + }, + "handles": { + "input": [ + { + "data_key": "vessel", + "data_source": "handle", + "data_type": "resource", + "handler_key": "Vessel", + "label": "Vessel" + } + ], + "output": [ + { + "data_key": "vessel", + "data_source": "executor", + "data_type": "resource", + "handler_key": "VesselOut", + "label": "Vessel" + } + ] + }, + "placeholder_keys": { + "vessel": "unilabos_resources" + }, + "result": {}, + "schema": { + "title": "Centrifuge", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "vessel": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "vessel", + "additionalProperties": false, + "description": "" + }, + "speed": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "speed", + "description": "" + }, + "time": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "time", + "description": "" + }, + "temp": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "temp", + "description": "" + } + }, + "title": "Centrifuge_Goal", + "_unilabos_placeholder_info": { + "vessel": "unilabos_resources" + } + }, + "feedback": { + "type": "object", + "additionalProperties": false, + "properties": { + "progress": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "current_speed": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "current_temp": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "current_status": { + "type": "string" + } + }, + "title": "Centrifuge_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "success": { + "type": "boolean" + }, + "message": { + "type": "string" + }, + "return_info": { + "type": "string" + } + }, + "title": "Centrifuge_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "Centrifuge" + }, + "CleanProtocol": { + "feedback": {}, + "goal": { + "repeats": "repeats", + "solvent": "solvent", + "temp": "temp", + "vessel": "vessel", + "volume": "volume" + }, + "goal_default": { + "vessel": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + }, + "solvent": "", + "volume": 0.0, + "temp": 0.0, + "repeats": 0 + }, + "handles": { + "input": [ + { + "data_key": "vessel", + "data_source": "handle", + "data_type": "resource", + "handler_key": "Vessel", + "label": "Vessel" + }, + { + "data_key": "solvent", + "data_source": "handle", + "data_type": "resource", + "handler_key": "solvent", + "label": "Solvent" + } + ], + "output": [ + { + "data_key": "vessel", + "data_source": "executor", + "data_type": "resource", + "handler_key": "VesselOut", + "label": "Vessel" + } + ] + }, + "placeholder_keys": { + "vessel": "unilabos_resources" + }, + "result": {}, + "schema": { + "title": "Clean", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "vessel": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "vessel", + "additionalProperties": false, + "description": "" + }, + "solvent": { + "type": "string", + "title": "solvent", + "description": "" + }, + "volume": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "volume", + "description": "" + }, + "temp": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "temp", + "description": "" + }, + "repeats": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "repeats", + "description": "" + } + }, + "title": "Clean_Goal", + "_unilabos_placeholder_info": { + "vessel": "unilabos_resources" + } + }, + "feedback": { + "type": "object", + "additionalProperties": false, + "properties": { + "status": { + "type": "string" + }, + "current_device": { + "type": "string" + }, + "time_spent": { + "type": "object", + "properties": { + "sec": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647 + }, + "nanosec": { + "type": "integer", + "minimum": 0, + "maximum": 4294967295 + } + }, + "required": [ + "sec", + "nanosec" + ], + "title": "time_spent", + "additionalProperties": false + }, + "time_remaining": { + "type": "object", + "properties": { + "sec": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647 + }, + "nanosec": { + "type": "integer", + "minimum": 0, + "maximum": 4294967295 + } + }, + "required": [ + "sec", + "nanosec" + ], + "title": "time_remaining", + "additionalProperties": false + } + }, + "title": "Clean_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "Clean_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "Clean" + }, + "CleanVesselProtocol": { + "feedback": {}, + "goal": { + "repeats": "repeats", + "solvent": "solvent", + "temp": "temp", + "vessel": "vessel", + "volume": "volume" + }, + "goal_default": { + "vessel": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + }, + "solvent": "", + "volume": 0.0, + "temp": 0.0, + "repeats": 0 + }, + "handles": { + "input": [ + { + "data_key": "vessel", + "data_source": "handle", + "data_type": "resource", + "handler_key": "Vessel", + "label": "Vessel" + }, + { + "data_key": "solvent", + "data_source": "handle", + "data_type": "resource", + "handler_key": "solvent", + "label": "Solvent" + } + ], + "output": [ + { + "data_key": "vessel", + "data_source": "executor", + "data_type": "resource", + "handler_key": "VesselOut", + "label": "Vessel" + } + ] + }, + "placeholder_keys": { + "vessel": "unilabos_resources" + }, + "result": {}, + "schema": { + "title": "CleanVessel", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "vessel": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "vessel", + "additionalProperties": false, + "description": "" + }, + "solvent": { + "type": "string", + "title": "solvent", + "description": "" + }, + "volume": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "volume", + "description": "" + }, + "temp": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "temp", + "description": "" + }, + "repeats": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "repeats", + "description": "" + } + }, + "title": "CleanVessel_Goal", + "_unilabos_placeholder_info": { + "vessel": "unilabos_resources" + } + }, + "feedback": { + "type": "object", + "additionalProperties": false, + "properties": { + "status": { + "type": "string" + }, + "progress": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "title": "CleanVessel_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "success": { + "type": "boolean" + }, + "message": { + "type": "string" + }, + "return_info": { + "type": "string" + } + }, + "title": "CleanVessel_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "CleanVessel" + }, + "DissolveProtocol": { + "feedback": {}, + "goal": { + "amount": "amount", + "event": "event", + "mass": "mass", + "mol": "mol", + "reagent": "reagent", + "solvent": "solvent", + "stir_speed": "stir_speed", + "temp": "temp", + "time": "time", + "vessel": "vessel", + "volume": "volume" + }, + "goal_default": { + "vessel": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + }, + "solvent": "", + "volume": "", + "amount": "", + "temp": "", + "time": "", + "stir_speed": 0.0, + "mass": "", + "mol": "", + "reagent": "", + "event": "" + }, + "handles": { + "input": [ + { + "data_key": "vessel", + "data_source": "handle", + "data_type": "resource", + "handler_key": "Vessel", + "label": "Vessel" + }, + { + "data_key": "solvent", + "data_source": "handle", + "data_type": "resource", + "handler_key": "solvent", + "label": "Solvent" + }, + { + "data_key": "reagent", + "data_source": "handle", + "data_type": "resource", + "handler_key": "reagent", + "label": "Reagent" + } + ], + "output": [ + { + "data_key": "vessel", + "data_source": "executor", + "data_type": "resource", + "handler_key": "VesselOut", + "label": "Vessel" + } + ] + }, + "placeholder_keys": { + "vessel": "unilabos_resources" + }, + "result": {}, + "schema": { + "title": "Dissolve", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "vessel": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "vessel", + "additionalProperties": false, + "description": "" + }, + "solvent": { + "type": "string", + "title": "solvent", + "description": "" + }, + "volume": { + "type": "string", + "title": "volume", + "description": "" + }, + "amount": { + "type": "string", + "title": "amount", + "description": "" + }, + "temp": { + "type": "string", + "title": "temp", + "description": "" + }, + "time": { + "type": "string", + "title": "time", + "description": "" + }, + "stir_speed": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "stir_speed", + "description": "" + }, + "mass": { + "type": "string", + "title": "mass", + "description": "" + }, + "mol": { + "type": "string", + "title": "mol", + "description": "" + }, + "reagent": { + "type": "string", + "title": "reagent", + "description": "" + }, + "event": { + "type": "string", + "title": "event", + "description": "" + } + }, + "title": "Dissolve_Goal", + "_unilabos_placeholder_info": { + "vessel": "unilabos_resources" + } + }, + "feedback": { + "type": "object", + "additionalProperties": false, + "properties": { + "status": { + "type": "string" + }, + "progress": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "title": "Dissolve_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "success": { + "type": "boolean" + }, + "message": { + "type": "string" + }, + "return_info": { + "type": "string" + } + }, + "title": "Dissolve_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "Dissolve" + }, + "DryProtocol": { + "feedback": {}, + "goal": { + "compound": "compound", + "vessel": "vessel" + }, + "goal_default": { + "compound": "", + "vessel": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + } + }, + "handles": { + "input": [ + { + "data_key": "vessel", + "data_source": "handle", + "data_type": "resource", + "handler_key": "Vessel", + "label": "Vessel" + } + ], + "output": [ + { + "data_key": "vessel", + "data_source": "executor", + "data_type": "resource", + "handler_key": "VesselOut", + "label": "Vessel" + } + ] + }, + "placeholder_keys": { + "vessel": "unilabos_resources" + }, + "result": {}, + "schema": { + "title": "Dry", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "compound": { + "type": "string", + "title": "compound", + "description": "" + }, + "vessel": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "vessel", + "additionalProperties": false, + "description": "" + } + }, + "title": "Dry_Goal", + "_unilabos_placeholder_info": { + "vessel": "unilabos_resources" + } + }, + "feedback": { + "type": "object", + "additionalProperties": false, + "properties": { + "status": { + "type": "string" + }, + "progress": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "title": "Dry_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "success": { + "type": "boolean" + }, + "message": { + "type": "string" + }, + "return_info": { + "type": "string" + } + }, + "title": "Dry_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "Dry" + }, + "EvacuateAndRefillProtocol": { + "feedback": {}, + "goal": { + "gas": "gas", + "vessel": "vessel" + }, + "goal_default": { + "vessel": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + }, + "gas": "" + }, + "handles": { + "input": [ + { + "data_key": "vessel", + "data_source": "handle", + "data_type": "resource", + "handler_key": "Vessel", + "label": "Vessel" + } + ], + "output": [ + { + "data_key": "vessel", + "data_source": "executor", + "data_type": "resource", + "handler_key": "VesselOut", + "label": "Vessel" + } + ] + }, + "placeholder_keys": { + "vessel": "unilabos_resources" + }, + "result": {}, + "schema": { + "title": "EvacuateAndRefill", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "vessel": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "vessel", + "additionalProperties": false, + "description": "" + }, + "gas": { + "type": "string", + "title": "gas", + "description": "" + } + }, + "title": "EvacuateAndRefill_Goal", + "_unilabos_placeholder_info": { + "vessel": "unilabos_resources" + } + }, + "feedback": { + "type": "object", + "additionalProperties": false, + "properties": { + "status": { + "type": "string" + }, + "current_device": { + "type": "string" + }, + "time_spent": { + "type": "object", + "properties": { + "sec": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647 + }, + "nanosec": { + "type": "integer", + "minimum": 0, + "maximum": 4294967295 + } + }, + "required": [ + "sec", + "nanosec" + ], + "title": "time_spent", + "additionalProperties": false + }, + "time_remaining": { + "type": "object", + "properties": { + "sec": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647 + }, + "nanosec": { + "type": "integer", + "minimum": 0, + "maximum": 4294967295 + } + }, + "required": [ + "sec", + "nanosec" + ], + "title": "time_remaining", + "additionalProperties": false + } + }, + "title": "EvacuateAndRefill_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "EvacuateAndRefill_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "EvacuateAndRefill" + }, + "EvaporateProtocol": { + "feedback": {}, + "goal": { + "pressure": "pressure", + "solvent": "solvent", + "stir_speed": "stir_speed", + "temp": "temp", + "time": "time", + "vessel": "vessel" + }, + "goal_default": { + "vessel": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + }, + "pressure": 0.0, + "temp": 0.0, + "time": "", + "stir_speed": 0.0, + "solvent": "" + }, + "handles": { + "input": [ + { + "data_key": "vessel", + "data_source": "handle", + "data_type": "resource", + "handler_key": "Vessel", + "label": "Evaporation Vessel" + }, + { + "data_key": "solvent", + "data_source": "handle", + "data_type": "resource", + "handler_key": "solvent", + "label": "Eluting Solvent" + } + ], + "output": [ + { + "data_key": "vessel", + "data_source": "handle", + "data_type": "resource", + "handler_key": "VesselOut", + "label": "Evaporation Vessel" + } + ] + }, + "placeholder_keys": { + "vessel": "unilabos_nodes" + }, + "result": {}, + "schema": { + "title": "Evaporate", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "vessel": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "vessel", + "additionalProperties": false, + "description": "" + }, + "pressure": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "pressure", + "description": "" + }, + "temp": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "temp", + "description": "" + }, + "time": { + "type": "string", + "title": "time", + "description": "" + }, + "stir_speed": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "stir_speed", + "description": "" + }, + "solvent": { + "type": "string", + "title": "solvent", + "description": "" + } + }, + "title": "Evaporate_Goal", + "_unilabos_placeholder_info": { + "vessel": "unilabos_nodes" + } + }, + "feedback": { + "type": "object", + "additionalProperties": false, + "properties": { + "status": { + "type": "string" + }, + "current_device": { + "type": "string" + }, + "time_spent": { + "type": "object", + "properties": { + "sec": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647 + }, + "nanosec": { + "type": "integer", + "minimum": 0, + "maximum": 4294967295 + } + }, + "required": [ + "sec", + "nanosec" + ], + "title": "time_spent", + "additionalProperties": false + }, + "time_remaining": { + "type": "object", + "properties": { + "sec": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647 + }, + "nanosec": { + "type": "integer", + "minimum": 0, + "maximum": 4294967295 + } + }, + "required": [ + "sec", + "nanosec" + ], + "title": "time_remaining", + "additionalProperties": false + } + }, + "title": "Evaporate_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "Evaporate_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "Evaporate" + }, + "FilterProtocol": { + "feedback": {}, + "goal": { + "continue_heatchill": "continue_heatchill", + "filtrate_vessel": "filtrate_vessel", + "stir": "stir", + "stir_speed": "stir_speed", + "temp": "temp", + "vessel": "vessel", + "volume": "volume" + }, + "goal_default": { + "vessel": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + }, + "filtrate_vessel": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + }, + "stir": false, + "stir_speed": 0.0, + "temp": 0.0, + "continue_heatchill": false, + "volume": 0.0 + }, + "handles": { + "input": [ + { + "data_key": "vessel", + "data_source": "handle", + "data_type": "resource", + "handler_key": "Vessel", + "label": "Vessel" + }, + { + "data_key": "filtrate_vessel", + "data_source": "handle", + "data_type": "resource", + "handler_key": "FiltrateVessel", + "label": "Filtrate Vessel" + } + ], + "output": [ + { + "data_key": "vessel", + "data_source": "executor", + "data_type": "resource", + "handler_key": "VesselOut", + "label": "Vessel" + }, + { + "data_key": "filtrate_vessel", + "data_source": "executor", + "data_type": "resource", + "handler_key": "FiltrateOut", + "label": "Filtrate Vessel" + } + ] + }, + "placeholder_keys": { + "filtrate_vessel": "unilabos_resources", + "vessel": "unilabos_nodes" + }, + "result": {}, + "schema": { + "title": "Filter", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "vessel": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "vessel", + "additionalProperties": false, + "description": "" + }, + "filtrate_vessel": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "filtrate_vessel", + "additionalProperties": false, + "description": "" + }, + "stir": { + "type": "boolean", + "title": "stir", + "description": "" + }, + "stir_speed": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "stir_speed", + "description": "" + }, + "temp": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "temp", + "description": "" + }, + "continue_heatchill": { + "type": "boolean", + "title": "continue_heatchill", + "description": "" + }, + "volume": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "volume", + "description": "" + } + }, + "title": "Filter_Goal", + "_unilabos_placeholder_info": { + "filtrate_vessel": "unilabos_resources", + "vessel": "unilabos_nodes" + } + }, + "feedback": { + "type": "object", + "additionalProperties": false, + "properties": { + "progress": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "current_temp": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "filtered_volume": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "current_status": { + "type": "string" + } + }, + "title": "Filter_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "success": { + "type": "boolean" + }, + "message": { + "type": "string" + }, + "return_info": { + "type": "string" + } + }, + "title": "Filter_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "Filter" + }, + "FilterThroughProtocol": { + "feedback": {}, + "goal": { + "eluting_repeats": "eluting_repeats", + "eluting_solvent": "eluting_solvent", + "eluting_volume": "eluting_volume", + "filter_through": "filter_through", + "from_vessel": "from_vessel", + "residence_time": "residence_time", + "to_vessel": "to_vessel" + }, + "goal_default": { + "from_vessel": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + }, + "to_vessel": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + }, + "filter_through": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + }, + "eluting_solvent": "", + "eluting_volume": 0.0, + "eluting_repeats": 0, + "residence_time": 0.0 + }, + "handles": { + "input": [ + { + "data_key": "vessel", + "data_source": "handle", + "data_type": "resource", + "handler_key": "FromVessel", + "label": "From Vessel" + }, + { + "data_key": "vessel", + "data_source": "executor", + "data_type": "resource", + "handler_key": "ToVessel", + "label": "To Vessel" + }, + { + "data_key": "solvent", + "data_source": "handle", + "data_type": "resource", + "handler_key": "solvent", + "label": "Eluting Solvent" + } + ], + "output": [ + { + "data_key": "vessel", + "data_source": "handle", + "data_type": "resource", + "handler_key": "FromVesselOut", + "label": "From Vessel" + }, + { + "data_key": "vessel", + "data_source": "executor", + "data_type": "resource", + "handler_key": "ToVesselOut", + "label": "To Vessel" + } + ] + }, + "placeholder_keys": { + "from_vessel": "unilabos_resources", + "to_vessel": "unilabos_resources" + }, + "result": {}, + "schema": { + "title": "FilterThrough", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "from_vessel": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "from_vessel", + "additionalProperties": false, + "description": "" + }, + "to_vessel": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "to_vessel", + "additionalProperties": false, + "description": "" + }, + "filter_through": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "filter_through", + "additionalProperties": false, + "description": "" + }, + "eluting_solvent": { + "type": "string", + "title": "eluting_solvent", + "description": "" + }, + "eluting_volume": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "eluting_volume", + "description": "" + }, + "eluting_repeats": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "eluting_repeats", + "description": "" + }, + "residence_time": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "residence_time", + "description": "" + } + }, + "title": "FilterThrough_Goal", + "_unilabos_placeholder_info": { + "from_vessel": "unilabos_resources", + "to_vessel": "unilabos_resources" + } + }, + "feedback": { + "type": "object", + "additionalProperties": false, + "properties": { + "status": { + "type": "string" + }, + "progress": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "title": "FilterThrough_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "success": { + "type": "boolean" + }, + "message": { + "type": "string" + }, + "return_info": { + "type": "string" + } + }, + "title": "FilterThrough_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "FilterThrough" + }, + "HeatChillProtocol": { + "feedback": {}, + "goal": { + "pressure": "pressure", + "purpose": "purpose", + "reflux_solvent": "reflux_solvent", + "stir": "stir", + "stir_speed": "stir_speed", + "temp": "temp", + "temp_spec": "temp_spec", + "time": "time", + "time_spec": "time_spec", + "vessel": "vessel" + }, + "goal_default": { + "vessel": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + }, + "temp": 0.0, + "time": "", + "temp_spec": "", + "time_spec": "", + "pressure": "", + "reflux_solvent": "", + "stir": false, + "stir_speed": 0.0, + "purpose": "" + }, + "handles": { + "input": [ + { + "data_key": "vessel", + "data_source": "handle", + "data_type": "resource", + "handler_key": "Vessel", + "label": "Vessel" + } + ], + "output": [ + { + "data_key": "vessel", + "data_source": "executor", + "data_type": "resource", + "handler_key": "VesselOut", + "label": "Vessel" + } + ] + }, + "placeholder_keys": { + "vessel": "unilabos_resources" + }, + "result": {}, + "schema": { + "title": "HeatChill", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "vessel": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "vessel", + "additionalProperties": false, + "description": "" + }, + "temp": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "temp", + "description": "" + }, + "time": { + "type": "string", + "title": "time", + "description": "" + }, + "temp_spec": { + "type": "string", + "title": "temp_spec", + "description": "" + }, + "time_spec": { + "type": "string", + "title": "time_spec", + "description": "" + }, + "pressure": { + "type": "string", + "title": "pressure", + "description": "" + }, + "reflux_solvent": { + "type": "string", + "title": "reflux_solvent", + "description": "" + }, + "stir": { + "type": "boolean", + "title": "stir", + "description": "" + }, + "stir_speed": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "stir_speed", + "description": "" + }, + "purpose": { + "type": "string", + "title": "purpose", + "description": "" + } + }, + "title": "HeatChill_Goal", + "_unilabos_placeholder_info": { + "vessel": "unilabos_resources" + } + }, + "feedback": { + "type": "object", + "additionalProperties": false, + "properties": { + "status": { + "type": "string" + } + }, + "title": "HeatChill_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "success": { + "type": "boolean" + }, + "message": { + "type": "string" + }, + "return_info": { + "type": "string" + } + }, + "title": "HeatChill_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "HeatChill" + }, + "HeatChillStartProtocol": { + "feedback": {}, + "goal": { + "purpose": "purpose", + "temp": "temp", + "vessel": "vessel" + }, + "goal_default": { + "vessel": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + }, + "temp": 0.0, + "purpose": "" + }, + "handles": { + "input": [ + { + "data_key": "vessel", + "data_source": "handle", + "data_type": "resource", + "handler_key": "Vessel", + "label": "Vessel" + } + ], + "output": [ + { + "data_key": "vessel", + "data_source": "executor", + "data_type": "resource", + "handler_key": "VesselOut", + "label": "Vessel" + } + ] + }, + "placeholder_keys": { + "vessel": "unilabos_resources" + }, + "result": {}, + "schema": { + "title": "HeatChillStart", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "vessel": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "vessel", + "additionalProperties": false, + "description": "" + }, + "temp": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "temp", + "description": "" + }, + "purpose": { + "type": "string", + "title": "purpose", + "description": "" + } + }, + "title": "HeatChillStart_Goal", + "_unilabos_placeholder_info": { + "vessel": "unilabos_resources" + } + }, + "feedback": { + "type": "object", + "additionalProperties": false, + "properties": { + "status": { + "type": "string" + } + }, + "title": "HeatChillStart_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "HeatChillStart_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "HeatChillStart" + }, + "HeatChillStopProtocol": { + "feedback": {}, + "goal": { + "vessel": "vessel" + }, + "goal_default": { + "vessel": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + } + }, + "handles": { + "input": [ + { + "data_key": "vessel", + "data_source": "handle", + "data_type": "resource", + "handler_key": "Vessel", + "label": "Vessel" + } + ], + "output": [ + { + "data_key": "vessel", + "data_source": "executor", + "data_type": "resource", + "handler_key": "VesselOut", + "label": "Vessel" + } + ] + }, + "placeholder_keys": { + "vessel": "unilabos_resources" + }, + "result": {}, + "schema": { + "title": "HeatChillStop", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "vessel": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "vessel", + "additionalProperties": false, + "description": "" + } + }, + "title": "HeatChillStop_Goal", + "_unilabos_placeholder_info": { + "vessel": "unilabos_resources" + } + }, + "feedback": { + "type": "object", + "additionalProperties": false, + "properties": { + "status": { + "type": "string" + } + }, + "title": "HeatChillStop_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "HeatChillStop_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "HeatChillStop" + }, + "HydrogenateProtocol": { + "feedback": {}, + "goal": { + "temp": "temp", + "time": "time", + "vessel": "vessel" + }, + "goal_default": { + "temp": "", + "time": "", + "vessel": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + } + }, + "handles": { + "input": [ + { + "data_key": "vessel", + "data_source": "handle", + "data_type": "resource", + "handler_key": "Vessel", + "label": "Vessel" + } + ], + "output": [ + { + "data_key": "vessel", + "data_source": "executor", + "data_type": "resource", + "handler_key": "VesselOut", + "label": "Vessel" + } + ] + }, + "placeholder_keys": { + "vessel": "unilabos_resources" + }, + "result": {}, + "schema": { + "title": "Hydrogenate", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "temp": { + "type": "string", + "title": "temp", + "description": "" + }, + "time": { + "type": "string", + "title": "time", + "description": "" + }, + "vessel": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "vessel", + "additionalProperties": false, + "description": "" + } + }, + "title": "Hydrogenate_Goal", + "_unilabos_placeholder_info": { + "vessel": "unilabos_resources" + } + }, + "feedback": { + "type": "object", + "additionalProperties": false, + "properties": { + "status": { + "type": "string" + }, + "progress": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "title": "Hydrogenate_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "success": { + "type": "boolean" + }, + "message": { + "type": "string" + }, + "return_info": { + "type": "string" + } + }, + "title": "Hydrogenate_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "Hydrogenate" + }, + "PumpTransferProtocol": { + "feedback": {}, + "goal": { + "amount": "amount", + "event": "event", + "flowrate": "flowrate", + "from_vessel": "from_vessel", + "rate_spec": "rate_spec", + "rinsing_repeats": "rinsing_repeats", + "rinsing_solvent": "rinsing_solvent", + "rinsing_volume": "rinsing_volume", + "solid": "solid", + "through": "through", + "time": "time", + "to_vessel": "to_vessel", + "transfer_flowrate": "transfer_flowrate", + "viscous": "viscous", + "volume": "volume" + }, + "goal_default": { + "from_vessel": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + }, + "to_vessel": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + }, + "volume": 0.0, + "amount": "", + "time": 0.0, + "viscous": false, + "rinsing_solvent": "", + "rinsing_volume": 0.0, + "rinsing_repeats": 0, + "solid": false, + "flowrate": 0.0, + "transfer_flowrate": 0.0, + "rate_spec": "", + "event": "", + "through": "" + }, + "handles": { + "input": [ + { + "data_key": "vessel", + "data_source": "handle", + "data_type": "resource", + "handler_key": "FromVessel", + "label": "From Vessel" + }, + { + "data_key": "vessel", + "data_source": "executor", + "data_type": "resource", + "handler_key": "ToVessel", + "label": "To Vessel" + }, + { + "data_key": "solvent", + "data_source": "handle", + "data_type": "resource", + "handler_key": "solvent", + "label": "Rinsing Solvent" + } + ], + "output": [ + { + "data_key": "vessel", + "data_source": "handle", + "data_type": "resource", + "handler_key": "FromVesselOut", + "label": "From Vessel" + }, + { + "data_key": "vessel", + "data_source": "executor", + "data_type": "resource", + "handler_key": "ToVesselOut", + "label": "To Vessel" + } + ] + }, + "placeholder_keys": { + "from_vessel": "unilabos_nodes", + "to_vessel": "unilabos_nodes" + }, + "result": {}, + "schema": { + "title": "PumpTransfer", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "from_vessel": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "from_vessel", + "additionalProperties": false, + "description": "" + }, + "to_vessel": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "to_vessel", + "additionalProperties": false, + "description": "" + }, + "volume": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "volume", + "description": "" + }, + "amount": { + "type": "string", + "title": "amount", + "description": "" + }, + "time": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "time", + "description": "" + }, + "viscous": { + "type": "boolean", + "title": "viscous", + "description": "" + }, + "rinsing_solvent": { + "type": "string", + "title": "rinsing_solvent", + "description": "" + }, + "rinsing_volume": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "rinsing_volume", + "description": "" + }, + "rinsing_repeats": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "rinsing_repeats", + "description": "" + }, + "solid": { + "type": "boolean", + "title": "solid", + "description": "" + }, + "flowrate": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "flowrate", + "description": "" + }, + "transfer_flowrate": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "transfer_flowrate", + "description": "" + }, + "rate_spec": { + "type": "string", + "title": "rate_spec", + "description": "" + }, + "event": { + "type": "string", + "title": "event", + "description": "" + }, + "through": { + "type": "string", + "title": "through", + "description": "" + } + }, + "title": "PumpTransfer_Goal", + "_unilabos_placeholder_info": { + "from_vessel": "unilabos_nodes", + "to_vessel": "unilabos_nodes" + } + }, + "feedback": { + "type": "object", + "additionalProperties": false, + "properties": { + "status": { + "type": "string" + }, + "current_device": { + "type": "string" + }, + "time_spent": { + "type": "object", + "properties": { + "sec": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647 + }, + "nanosec": { + "type": "integer", + "minimum": 0, + "maximum": 4294967295 + } + }, + "required": [ + "sec", + "nanosec" + ], + "title": "time_spent", + "additionalProperties": false + }, + "time_remaining": { + "type": "object", + "properties": { + "sec": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647 + }, + "nanosec": { + "type": "integer", + "minimum": 0, + "maximum": 4294967295 + } + }, + "required": [ + "sec", + "nanosec" + ], + "title": "time_remaining", + "additionalProperties": false + } + }, + "title": "PumpTransfer_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "PumpTransfer_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "PumpTransfer" + }, + "RecrystallizeProtocol": { + "feedback": {}, + "goal": { + "ratio": "ratio", + "solvent1": "solvent1", + "solvent2": "solvent2", + "vessel": "vessel", + "volume": "volume" + }, + "goal_default": { + "ratio": "", + "solvent1": "", + "solvent2": "", + "vessel": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + }, + "volume": "" + }, + "handles": { + "input": [ + { + "data_key": "vessel", + "data_source": "handle", + "data_type": "resource", + "handler_key": "Vessel", + "label": "Vessel" + }, + { + "data_key": "solvent1", + "data_source": "handle", + "data_type": "resource", + "handler_key": "solvent1", + "label": "Solvent 1" + }, + { + "data_key": "solvent2", + "data_source": "handle", + "data_type": "resource", + "handler_key": "solvent2", + "label": "Solvent 2" + } + ], + "output": [ + { + "data_key": "vessel", + "data_source": "executor", + "data_type": "resource", + "handler_key": "VesselOut", + "label": "Vessel" + } + ] + }, + "placeholder_keys": { + "vessel": "unilabos_resources" + }, + "result": {}, + "schema": { + "title": "Recrystallize", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "ratio": { + "type": "string", + "title": "ratio", + "description": "" + }, + "solvent1": { + "type": "string", + "title": "solvent1", + "description": "" + }, + "solvent2": { + "type": "string", + "title": "solvent2", + "description": "" + }, + "vessel": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "vessel", + "additionalProperties": false, + "description": "" + }, + "volume": { + "type": "string", + "title": "volume", + "description": "" + } + }, + "title": "Recrystallize_Goal", + "_unilabos_placeholder_info": { + "vessel": "unilabos_resources" + } + }, + "feedback": { + "type": "object", + "additionalProperties": false, + "properties": { + "status": { + "type": "string" + }, + "progress": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "title": "Recrystallize_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "success": { + "type": "boolean" + }, + "message": { + "type": "string" + }, + "return_info": { + "type": "string" + } + }, + "title": "Recrystallize_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "Recrystallize" + }, + "ResetHandlingProtocol": { + "feedback": {}, + "goal": { + "solvent": "solvent" + }, + "goal_default": { + "solvent": "", + "vessel": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + } + }, + "handles": { + "input": [ + { + "data_key": "solvent", + "data_source": "handle", + "data_type": "resource", + "handler_key": "solvent", + "label": "Solvent" + } + ], + "output": [] + }, + "result": {}, + "schema": { + "title": "ResetHandling", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "solvent": { + "type": "string", + "title": "solvent", + "description": "" + }, + "vessel": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "vessel", + "additionalProperties": false, + "description": "" + } + }, + "title": "ResetHandling_Goal" + }, + "feedback": { + "type": "object", + "additionalProperties": false, + "properties": { + "status": { + "type": "string" + }, + "progress": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "title": "ResetHandling_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "success": { + "type": "boolean" + }, + "message": { + "type": "string" + }, + "return_info": { + "type": "string" + } + }, + "title": "ResetHandling_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "ResetHandling" + }, + "RunColumnProtocol": { + "feedback": {}, + "goal": { + "column": "column", + "from_vessel": "from_vessel", + "to_vessel": "to_vessel" + }, + "goal_default": { + "from_vessel": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + }, + "to_vessel": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + }, + "column": "", + "rf": "", + "pct1": "", + "pct2": "", + "solvent1": "", + "solvent2": "", + "ratio": "" + }, + "handles": { + "input": [ + { + "data_key": "vessel", + "data_source": "handle", + "data_type": "resource", + "handler_key": "FromVessel", + "label": "From Vessel" + }, + { + "data_key": "vessel", + "data_source": "executor", + "data_type": "resource", + "handler_key": "ToVessel", + "label": "To Vessel" + } + ], + "output": [ + { + "data_key": "vessel", + "data_source": "handle", + "data_type": "resource", + "handler_key": "FromVesselOut", + "label": "From Vessel" + }, + { + "data_key": "vessel", + "data_source": "executor", + "data_type": "resource", + "handler_key": "ToVesselOut", + "label": "To Vessel" + } + ] + }, + "placeholder_keys": { + "column": "unilabos_devices", + "from_vessel": "unilabos_resources", + "to_vessel": "unilabos_resources" + }, + "result": {}, + "schema": { + "title": "RunColumn", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "from_vessel": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "from_vessel", + "additionalProperties": false, + "description": "" + }, + "to_vessel": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "to_vessel", + "additionalProperties": false, + "description": "" + }, + "column": { + "type": "string", + "title": "column", + "description": "" + }, + "rf": { + "type": "string", + "title": "rf", + "description": "" + }, + "pct1": { + "type": "string", + "title": "pct1", + "description": "" + }, + "pct2": { + "type": "string", + "title": "pct2", + "description": "" + }, + "solvent1": { + "type": "string", + "title": "solvent1", + "description": "" + }, + "solvent2": { + "type": "string", + "title": "solvent2", + "description": "" + }, + "ratio": { + "type": "string", + "title": "ratio", + "description": "" + } + }, + "title": "RunColumn_Goal", + "_unilabos_placeholder_info": { + "column": "unilabos_devices", + "from_vessel": "unilabos_resources", + "to_vessel": "unilabos_resources" + } + }, + "feedback": { + "type": "object", + "additionalProperties": false, + "properties": { + "status": { + "type": "string" + }, + "progress": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "title": "RunColumn_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "success": { + "type": "boolean" + }, + "message": { + "type": "string" + }, + "return_info": { + "type": "string" + } + }, + "title": "RunColumn_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "RunColumn" + }, + "SeparateProtocol": { + "feedback": {}, + "goal": { + "from_vessel": "from_vessel", + "product_phase": "product_phase", + "purpose": "purpose", + "repeats": "repeats", + "separation_vessel": "separation_vessel", + "settling_time": "settling_time", + "solvent": "solvent", + "solvent_volume": "solvent_volume", + "stir_speed": "stir_speed", + "stir_time": "stir_time", + "through": "through", + "to_vessel": "to_vessel", + "waste_phase_to_vessel": "waste_phase_to_vessel" + }, + "goal_default": { + "vessel": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + }, + "purpose": "", + "product_phase": "", + "from_vessel": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + }, + "separation_vessel": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + }, + "to_vessel": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + }, + "waste_phase_to_vessel": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + }, + "product_vessel": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + }, + "waste_vessel": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + }, + "solvent": "", + "solvent_volume": "", + "volume": "", + "through": "", + "repeats": 0, + "stir_time": 0.0, + "stir_speed": 0.0, + "settling_time": 0.0 + }, + "handles": { + "input": [ + { + "data_key": "vessel", + "data_source": "handle", + "data_type": "resource", + "handler_key": "FromVessel", + "label": "From Vessel" + }, + { + "data_key": "vessel", + "data_source": "executor", + "data_type": "resource", + "handler_key": "ToVessel", + "label": "To Vessel" + }, + { + "data_key": "solvent", + "data_source": "handle", + "data_type": "resource", + "handler_key": "solvent", + "label": "Solvent" + } + ], + "output": [ + { + "data_key": "vessel", + "data_source": "handle", + "data_type": "resource", + "handler_key": "FromVesselOut", + "label": "From Vessel" + }, + { + "data_key": "vessel", + "data_source": "executor", + "data_type": "resource", + "handler_key": "ToVesselOut", + "label": "To Vessel" + } + ] + }, + "placeholder_keys": { + "from_vessel": "unilabos_resources", + "to_vessel": "unilabos_resources", + "waste_phase_to_vessel": "unilabos_resources", + "waste_vessel": "unilabos_resources" + }, + "result": {}, + "schema": { + "title": "Separate", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "vessel": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "vessel", + "additionalProperties": false, + "description": "" + }, + "purpose": { + "type": "string", + "title": "purpose", + "description": "" + }, + "product_phase": { + "type": "string", + "title": "product_phase", + "description": "" + }, + "from_vessel": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "from_vessel", + "additionalProperties": false, + "description": "" + }, + "separation_vessel": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "separation_vessel", + "additionalProperties": false, + "description": "" + }, + "to_vessel": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "to_vessel", + "additionalProperties": false, + "description": "" + }, + "waste_phase_to_vessel": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "waste_phase_to_vessel", + "additionalProperties": false, + "description": "" + }, + "product_vessel": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "product_vessel", + "additionalProperties": false, + "description": "" + }, + "waste_vessel": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "waste_vessel", + "additionalProperties": false, + "description": "" + }, + "solvent": { + "type": "string", + "title": "solvent", + "description": "" + }, + "solvent_volume": { + "type": "string", + "title": "solvent_volume", + "description": "" + }, + "volume": { + "type": "string", + "title": "volume", + "description": "" + }, + "through": { + "type": "string", + "title": "through", + "description": "" + }, + "repeats": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "repeats", + "description": "" + }, + "stir_time": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "stir_time", + "description": "" + }, + "stir_speed": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "stir_speed", + "description": "" + }, + "settling_time": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "settling_time", + "description": "" + } + }, + "title": "Separate_Goal", + "_unilabos_placeholder_info": { + "from_vessel": "unilabos_resources", + "to_vessel": "unilabos_resources", + "waste_phase_to_vessel": "unilabos_resources", + "waste_vessel": "unilabos_resources" + } + }, + "feedback": { + "type": "object", + "additionalProperties": false, + "properties": { + "status": { + "type": "string" + }, + "progress": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "title": "Separate_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "success": { + "type": "boolean" + }, + "message": { + "type": "string" + }, + "return_info": { + "type": "string" + } + }, + "title": "Separate_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "Separate" + }, + "StartStirProtocol": { + "feedback": {}, + "goal": { + "purpose": "purpose", + "stir_speed": "stir_speed", + "vessel": "vessel" + }, + "goal_default": { + "vessel": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + }, + "stir_speed": 0.0, + "purpose": "" + }, + "handles": { + "input": [ + { + "data_key": "vessel", + "data_source": "handle", + "data_type": "resource", + "handler_key": "Vessel", + "label": "Vessel" + } + ], + "output": [ + { + "data_key": "vessel", + "data_source": "executor", + "data_type": "resource", + "handler_key": "VesselOut", + "label": "Vessel" + } + ] + }, + "placeholder_keys": { + "vessel": "unilabos_resources" + }, + "result": {}, + "schema": { + "title": "StartStir", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "vessel": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "vessel", + "additionalProperties": false, + "description": "" + }, + "stir_speed": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "stir_speed", + "description": "" + }, + "purpose": { + "type": "string", + "title": "purpose", + "description": "" + } + }, + "title": "StartStir_Goal", + "_unilabos_placeholder_info": { + "vessel": "unilabos_resources" + } + }, + "feedback": { + "type": "object", + "additionalProperties": false, + "properties": { + "progress": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "current_speed": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "current_status": { + "type": "string" + } + }, + "title": "StartStir_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "success": { + "type": "boolean" + }, + "message": { + "type": "string" + }, + "return_info": { + "type": "string" + } + }, + "title": "StartStir_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "StartStir" + }, + "StirProtocol": { + "feedback": {}, + "goal": { + "event": "event", + "settling_time": "settling_time", + "stir_speed": "stir_speed", + "stir_time": "stir_time", + "time": "time", + "time_spec": "time_spec", + "vessel": "vessel" + }, + "goal_default": { + "vessel": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + }, + "time": "", + "event": "", + "time_spec": "", + "stir_time": 0.0, + "stir_speed": 0.0, + "settling_time": "" + }, + "handles": { + "input": [ + { + "data_key": "vessel", + "data_source": "handle", + "data_type": "resource", + "handler_key": "Vessel", + "label": "Vessel" + } + ], + "output": [ + { + "data_key": "vessel", + "data_source": "executor", + "data_type": "resource", + "handler_key": "VesselOut", + "label": "Vessel" + } + ] + }, + "placeholder_keys": { + "vessel": "unilabos_resources" + }, + "result": {}, + "schema": { + "title": "Stir", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "vessel": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "vessel", + "additionalProperties": false, + "description": "" + }, + "time": { + "type": "string", + "title": "time", + "description": "" + }, + "event": { + "type": "string", + "title": "event", + "description": "" + }, + "time_spec": { + "type": "string", + "title": "time_spec", + "description": "" + }, + "stir_time": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "stir_time", + "description": "" + }, + "stir_speed": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "stir_speed", + "description": "" + }, + "settling_time": { + "type": "string", + "title": "settling_time", + "description": "" + } + }, + "title": "Stir_Goal", + "_unilabos_placeholder_info": { + "vessel": "unilabos_resources" + } + }, + "feedback": { + "type": "object", + "additionalProperties": false, + "properties": { + "status": { + "type": "string" + } + }, + "title": "Stir_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "success": { + "type": "boolean" + }, + "message": { + "type": "string" + }, + "return_info": { + "type": "string" + } + }, + "title": "Stir_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "Stir" + }, + "StopStirProtocol": { + "feedback": {}, + "goal": { + "vessel": "vessel" + }, + "goal_default": { + "vessel": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + } + }, + "handles": { + "input": [ + { + "data_key": "vessel", + "data_source": "handle", + "data_type": "resource", + "handler_key": "Vessel", + "label": "Vessel" + } + ], + "output": [ + { + "data_key": "vessel", + "data_source": "executor", + "data_type": "resource", + "handler_key": "VesselOut", + "label": "Vessel" + } + ] + }, + "placeholder_keys": { + "vessel": "unilabos_resources" + }, + "result": {}, + "schema": { + "title": "StopStir", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "vessel": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "vessel", + "additionalProperties": false, + "description": "" + } + }, + "title": "StopStir_Goal", + "_unilabos_placeholder_info": { + "vessel": "unilabos_resources" + } + }, + "feedback": { + "type": "object", + "additionalProperties": false, + "properties": { + "progress": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "current_status": { + "type": "string" + } + }, + "title": "StopStir_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "success": { + "type": "boolean" + }, + "message": { + "type": "string" + }, + "return_info": { + "type": "string" + } + }, + "title": "StopStir_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "StopStir" + }, + "TransferProtocol": { + "feedback": {}, + "goal": { + "amount": "amount", + "from_vessel": "from_vessel", + "rinsing_repeats": "rinsing_repeats", + "rinsing_solvent": "rinsing_solvent", + "rinsing_volume": "rinsing_volume", + "solid": "solid", + "time": "time", + "to_vessel": "to_vessel", + "viscous": "viscous", + "volume": "volume" + }, + "goal_default": { + "from_vessel": "", + "to_vessel": "", + "volume": 0.0, + "amount": "", + "time": 0.0, + "viscous": false, + "rinsing_solvent": "", + "rinsing_volume": 0.0, + "rinsing_repeats": 0, + "solid": false + }, + "handles": { + "input": [ + { + "data_key": "vessel", + "data_source": "handle", + "data_type": "resource", + "handler_key": "FromVessel", + "label": "From Vessel" + }, + { + "data_key": "vessel", + "data_source": "executor", + "data_type": "resource", + "handler_key": "ToVessel", + "label": "To Vessel" + }, + { + "data_key": "solvent", + "data_source": "handle", + "data_type": "resource", + "handler_key": "solvent", + "label": "Rinsing Solvent" + } + ], + "output": [ + { + "data_key": "vessel", + "data_source": "handle", + "data_type": "resource", + "handler_key": "FromVesselOut", + "label": "From Vessel" + }, + { + "data_key": "vessel", + "data_source": "executor", + "data_type": "resource", + "handler_key": "ToVesselOut", + "label": "To Vessel" + } + ] + }, + "placeholder_keys": { + "from_vessel": "unilabos_nodes", + "to_vessel": "unilabos_nodes" + }, + "result": {}, + "schema": { + "title": "Transfer", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "from_vessel": { + "type": "string", + "title": "from_vessel", + "description": "" + }, + "to_vessel": { + "type": "string", + "title": "to_vessel", + "description": "" + }, + "volume": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "volume", + "description": "" + }, + "amount": { + "type": "string", + "title": "amount", + "description": "" + }, + "time": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "time", + "description": "" + }, + "viscous": { + "type": "boolean", + "title": "viscous", + "description": "" + }, + "rinsing_solvent": { + "type": "string", + "title": "rinsing_solvent", + "description": "" + }, + "rinsing_volume": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "rinsing_volume", + "description": "" + }, + "rinsing_repeats": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "rinsing_repeats", + "description": "" + }, + "solid": { + "type": "boolean", + "title": "solid", + "description": "" + } + }, + "title": "Transfer_Goal", + "_unilabos_placeholder_info": { + "from_vessel": "unilabos_nodes", + "to_vessel": "unilabos_nodes" + } + }, + "feedback": { + "type": "object", + "additionalProperties": false, + "properties": { + "progress": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "transferred_volume": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "current_status": { + "type": "string" + } + }, + "title": "Transfer_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "success": { + "type": "boolean" + }, + "message": { + "type": "string" + }, + "return_info": { + "type": "string" + } + }, + "title": "Transfer_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "Transfer" + }, + "WashSolidProtocol": { + "feedback": {}, + "goal": { + "filtrate_vessel": "filtrate_vessel", + "repeats": "repeats", + "solvent": "solvent", + "stir": "stir", + "stir_speed": "stir_speed", + "temp": "temp", + "time": "time", + "vessel": "vessel", + "volume": "volume" + }, + "goal_default": { + "vessel": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + }, + "solvent": "", + "volume": "", + "filtrate_vessel": { + "id": "", + "name": "", + "sample_id": "", + "children": [], + "parent": "", + "type": "", + "category": "", + "pose": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "orientation": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 1.0 + } + }, + "config": "", + "data": "" + }, + "temp": 0.0, + "stir": false, + "stir_speed": 0.0, + "time": "", + "repeats": 0, + "volume_spec": "", + "repeats_spec": "", + "mass": "", + "event": "" + }, + "handles": { + "input": [ + { + "data_key": "vessel", + "data_source": "handle", + "data_type": "resource", + "handler_key": "Vessel", + "label": "Vessel" + }, + { + "data_key": "solvent", + "data_source": "handle", + "data_type": "resource", + "handler_key": "solvent", + "label": "Solvent" + }, + { + "data_key": "filtrate_vessel", + "data_source": "handle", + "data_type": "resource", + "handler_key": "filtrate_vessel", + "label": "Filtrate Vessel" + } + ], + "output": [ + { + "data_key": "vessel", + "data_source": "handle", + "data_type": "resource", + "handler_key": "VesselOut", + "label": "Vessel Out" + }, + { + "data_key": "filtrate_vessel", + "data_source": "executor", + "data_type": "resource", + "handler_key": "filtrate_vessel_out", + "label": "Filtrate Vessel" + } + ] + }, + "placeholder_keys": { + "filtrate_vessel": "unilabos_resources", + "vessel": "unilabos_resources" + }, + "result": {}, + "schema": { + "title": "WashSolid", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "vessel": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "vessel", + "additionalProperties": false, + "description": "" + }, + "solvent": { + "type": "string", + "title": "solvent", + "description": "" + }, + "volume": { + "type": "string", + "title": "volume", + "description": "" + }, + "filtrate_vessel": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sample_id": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "type": "string" + } + }, + "parent": { + "type": "string" + }, + "type": { + "type": "string" + }, + "category": { + "type": "string" + }, + "pose": { + "type": "object", + "properties": { + "position": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z" + ], + "title": "position", + "additionalProperties": false + }, + "orientation": { + "type": "object", + "properties": { + "x": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "y": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "z": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + }, + "w": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "required": [ + "x", + "y", + "z", + "w" + ], + "title": "orientation", + "additionalProperties": false + } + }, + "required": [ + "position", + "orientation" + ], + "title": "pose", + "additionalProperties": false + }, + "config": { + "type": "string" + }, + "data": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "sample_id", + "children", + "parent", + "type", + "category", + "pose", + "config", + "data" + ], + "title": "filtrate_vessel", + "additionalProperties": false, + "description": "" + }, + "temp": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "temp", + "description": "" + }, + "stir": { + "type": "boolean", + "title": "stir", + "description": "" + }, + "stir_speed": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308, + "title": "stir_speed", + "description": "" + }, + "time": { + "type": "string", + "title": "time", + "description": "" + }, + "repeats": { + "type": "integer", + "minimum": -2147483648, + "maximum": 2147483647, + "title": "repeats", + "description": "" + }, + "volume_spec": { + "type": "string", + "title": "volume_spec", + "description": "" + }, + "repeats_spec": { + "type": "string", + "title": "repeats_spec", + "description": "" + }, + "mass": { + "type": "string", + "title": "mass", + "description": "" + }, + "event": { + "type": "string", + "title": "event", + "description": "" + } + }, + "title": "WashSolid_Goal", + "_unilabos_placeholder_info": { + "filtrate_vessel": "unilabos_resources", + "vessel": "unilabos_resources" + } + }, + "feedback": { + "type": "object", + "additionalProperties": false, + "properties": { + "status": { + "type": "string" + }, + "progress": { + "type": "number", + "minimum": -1.7976931348623157e+308, + "maximum": 1.7976931348623157e+308 + } + }, + "title": "WashSolid_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "success": { + "type": "boolean" + }, + "message": { + "type": "string" + }, + "return_info": { + "type": "string" + } + }, + "title": "WashSolid_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "WashSolid" + } + }, + "module": "unilabos.devices.workstation.workstation_base:ProtocolNode", + "status_types": {}, + "type": "python" + }, + "config_info": [], + "description": "Workstation", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/devices/work_station.yaml", + "handles": [], + "icon": "", + "init_param_schema": { + "config": { + "properties": { + "deck": { + "type": "object" + }, + "protocol_type": { + "items": { + "type": "string" + }, + "type": "array" + } + }, + "required": [ + "protocol_type", + "deck" + ], + "type": "object" + }, + "data": { + "properties": {}, + "required": [], + "type": "object" + } + }, + "registry_type": "device", + "version": "1.0.0" + }, + { + "id": "robotic_arm.SCARA_with_slider.moveit.virtual", + "category": [ + "robot_arm" + ], + "class": { + "action_value_mappings": { + "auto-check_tf_update_actions": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "check_tf_update_actions的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "check_tf_update_actions参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-moveit_joint_task": { + "feedback": {}, + "goal": {}, + "goal_default": { + "joint_names": null, + "joint_positions": null, + "move_group": null, + "retry": 10, + "speed": 1 + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "moveit_joint_task的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "joint_names": { + "type": "string", + "title": "joint_names", + "description": "" + }, + "joint_positions": { + "type": "string", + "title": "joint_positions", + "description": "" + }, + "move_group": { + "type": "string", + "title": "move_group", + "description": "" + }, + "retry": { + "default": 10, + "type": "string", + "title": "retry", + "description": "" + }, + "speed": { + "default": 1, + "type": "string", + "title": "speed", + "description": "" + } + }, + "required": [ + "move_group", + "joint_positions" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "moveit_joint_task参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-moveit_task": { + "feedback": {}, + "goal": {}, + "goal_default": { + "cartesian": false, + "move_group": null, + "offsets": [ + 0, + 0, + 0 + ], + "position": null, + "quaternion": null, + "retry": 10, + "speed": 1, + "target_link": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "moveit_task的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "cartesian": { + "default": false, + "type": "string", + "title": "cartesian", + "description": "" + }, + "move_group": { + "type": "string", + "title": "move_group", + "description": "" + }, + "offsets": { + "default": [ + 0, + 0, + 0 + ], + "type": "string", + "title": "offsets", + "description": "" + }, + "position": { + "type": "string", + "title": "position", + "description": "" + }, + "quaternion": { + "type": "string", + "title": "quaternion", + "description": "" + }, + "retry": { + "default": 10, + "type": "string", + "title": "retry", + "description": "" + }, + "speed": { + "default": 1, + "type": "string", + "title": "speed", + "description": "" + }, + "target_link": { + "type": "string", + "title": "target_link", + "description": "" + } + }, + "required": [ + "move_group", + "position", + "quaternion" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "moveit_task参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-resource_manager": { + "feedback": {}, + "goal": {}, + "goal_default": { + "parent_link": null, + "resource": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "resource_manager的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "parent_link": { + "type": "string", + "title": "parent_link", + "description": "" + }, + "resource": { + "type": "string", + "title": "resource", + "description": "" + } + }, + "required": [ + "resource", + "parent_link" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "resource_manager参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-wait_for_resource_action": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "wait_for_resource_action的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "wait_for_resource_action参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "pick_and_place": { + "feedback": { + "status": "status" + }, + "goal": { + "command": "command" + }, + "goal_default": { + "command": "" + }, + "handles": {}, + "placeholder_keys": {}, + "result": { + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "SendCmd", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "command": { + "type": "string", + "title": "command", + "description": "" + } + }, + "title": "SendCmd_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": false, + "properties": { + "status": { + "type": "string" + } + }, + "title": "SendCmd_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "SendCmd_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "SendCmd" + }, + "set_position": { + "feedback": { + "status": "status" + }, + "goal": { + "command": "command" + }, + "goal_default": { + "command": "" + }, + "handles": {}, + "placeholder_keys": {}, + "result": { + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "SendCmd", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "command": { + "type": "string", + "title": "command", + "description": "" + } + }, + "title": "SendCmd_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": false, + "properties": { + "status": { + "type": "string" + } + }, + "title": "SendCmd_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "SendCmd_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "SendCmd" + }, + "set_status": { + "feedback": { + "status": "status" + }, + "goal": { + "command": "command" + }, + "goal_default": { + "command": "" + }, + "handles": {}, + "placeholder_keys": {}, + "result": { + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "SendCmd", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "command": { + "type": "string", + "title": "command", + "description": "" + } + }, + "title": "SendCmd_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": false, + "properties": { + "status": { + "type": "string" + } + }, + "title": "SendCmd_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "SendCmd_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "SendCmd" + } + }, + "module": "unilabos.devices.ros_dev.moveit_interface:MoveitInterface", + "status_types": {}, + "type": "python" + }, + "config_info": [], + "description": "机械臂与滑块运动系统,基于MoveIt2运动规划框架的多自由度机械臂控制设备。该系统集成机械臂和线性滑块,通过ROS2和MoveIt2实现精确的轨迹规划和协调运动控制。支持笛卡尔空间和关节空间的运动规划、碰撞检测、逆运动学求解等功能。适用于复杂的pick-and-place操作、精密装配、多工位协作等需要高精度多轴协调运动的实验室自动化应用。", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/devices/robot_arm.yaml", + "handles": [], + "icon": "", + "init_param_schema": { + "config": { + "properties": { + "device_config": { + "type": "string" + }, + "joint_poses": { + "type": "string" + }, + "moveit_type": { + "type": "string" + }, + "rotation": { + "type": "string" + } + }, + "required": [ + "moveit_type", + "joint_poses" + ], + "type": "object" + }, + "data": { + "properties": {}, + "required": [], + "type": "object" + } + }, + "model": { + "mesh": "arm_slider", + "path": "https://leap-lab.oss-cn-zhangjiakou.aliyuncs.com/uni-lab/devices/arm_slider/macro_device.xacro", + "type": "device" + }, + "registry_type": "device", + "version": "1.0.0" + }, + { + "id": "robotic_arm.UR", + "category": [ + "robot_arm" + ], + "class": { + "action_value_mappings": { + "auto-arm_init": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "机械臂初始化函数。执行UR机械臂的完整初始化流程,包括上电、释放制动器、解除保护停止状态等。该函数确保机械臂从安全停止状态恢复到可操作状态,是机械臂使用前的必要步骤。初始化完成后机械臂将处于就绪状态,可以接收后续的运动指令。", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "arm_init参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-load_pose_data": { + "feedback": {}, + "goal": {}, + "goal_default": { + "data": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "从JSON字符串加载位置数据函数。接收包含机械臂位置信息的JSON格式字符串,解析并存储位置数据供后续运动任务使用。位置数据通常包含多个预定义的工作位置坐标,用于实现精确的多点运动控制。适用于动态配置机械臂工作位置的场景。", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "data": { + "type": "string", + "title": "data", + "description": "" + } + }, + "required": [ + "data" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "load_pose_data参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-load_pose_file": { + "feedback": {}, + "goal": {}, + "goal_default": { + "file": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "从文件加载位置数据函数。读取指定的JSON文件并加载其中的机械臂位置信息。该函数支持从外部配置文件中获取预设的工作位置,便于位置数据的管理和重用。适用于需要从固定配置文件中读取复杂位置序列的应用场景。", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "file": { + "type": "string", + "title": "file", + "description": "" + } + }, + "required": [ + "file" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "load_pose_file参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-reload_pose": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "重新加载位置数据函数。重新读取并解析之前设置的位置文件,更新内存中的位置数据。该函数用于在位置文件被修改后刷新机械臂的位置配置,无需重新初始化整个系统。适用于动态更新机械臂工作位置的场景。", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "reload_pose参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "move_pos_task": { + "feedback": { + "status": "status" + }, + "goal": { + "command": "command" + }, + "goal_default": { + "command": "" + }, + "handles": {}, + "placeholder_keys": {}, + "result": { + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "SendCmd", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "command": { + "type": "string", + "title": "command", + "description": "" + } + }, + "title": "SendCmd_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": false, + "properties": { + "status": { + "type": "string" + } + }, + "title": "SendCmd_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "SendCmd_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "SendCmd" + } + }, + "module": "unilabos.devices.agv.ur_arm_task:UrArmTask", + "status_types": { + "arm_pose": "list", + "arm_status": "String", + "gripper_pose": "Float64", + "gripper_status": "String" + }, + "type": "python" + }, + "config_info": [], + "description": "Universal Robots机械臂设备,用于实验室精密操作和自动化作业。该设备集成了UR机械臂本体、Robotiq夹爪和RTDE通信接口,支持六自由度精确运动控制和力觉反馈。具备实时位置监控、状态反馈、轨迹规划等功能,可执行复杂的多点位运动任务。适用于样品抓取、精密装配、实验器具操作等需要高精度和高重复性的实验室自动化场景。", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/devices/robot_arm.yaml", + "handles": [], + "icon": "", + "init_param_schema": { + "config": { + "properties": { + "host": { + "type": "string" + }, + "retry": { + "default": 30, + "type": "string" + } + }, + "required": [ + "host" + ], + "type": "object" + }, + "data": { + "properties": { + "arm_pose": { + "type": "array" + }, + "arm_status": { + "type": "string" + }, + "gripper_pose": { + "type": "number" + }, + "gripper_status": { + "type": "string" + } + }, + "required": [ + "arm_pose", + "arm_status", + "gripper_pose", + "gripper_status" + ], + "type": "object" + } + }, + "registry_type": "device", + "version": "1.0.0" + }, + { + "id": "robotic_arm.elite", + "category": [ + "robot_arm" + ], + "class": { + "action_value_mappings": { + "auto-close": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "close参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-modbus_close": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "modbus_close参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-modbus_read_holding_registers": { + "feedback": {}, + "goal": {}, + "goal_default": { + "quantity": null, + "start_addr": null, + "unit_id": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "quantity": { + "type": "string", + "title": "quantity", + "description": "" + }, + "start_addr": { + "type": "string", + "title": "start_addr", + "description": "" + }, + "unit_id": { + "type": "string", + "title": "unit_id", + "description": "" + } + }, + "required": [ + "unit_id", + "start_addr", + "quantity" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "modbus_read_holding_registers参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-modbus_task": { + "feedback": {}, + "goal": {}, + "goal_default": { + "job_id": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "job_id": { + "type": "string", + "title": "job_id", + "description": "" + } + }, + "required": [ + "job_id" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "modbus_task参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-modbus_write_single_register": { + "feedback": {}, + "goal": {}, + "goal_default": { + "register_addr": null, + "unit_id": null, + "value": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "register_addr": { + "type": "string", + "title": "register_addr", + "description": "" + }, + "unit_id": { + "type": "string", + "title": "unit_id", + "description": "" + }, + "value": { + "type": "string", + "title": "value", + "description": "" + } + }, + "required": [ + "unit_id", + "register_addr", + "value" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "modbus_write_single_register参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-parse_success_response": { + "feedback": {}, + "goal": {}, + "goal_default": { + "response": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "response": { + "type": "string", + "title": "response", + "description": "" + } + }, + "required": [ + "response" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "parse_success_response参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-send_command": { + "feedback": {}, + "goal": {}, + "goal_default": { + "command": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "command": { + "type": "string", + "title": "command", + "description": "" + } + }, + "required": [ + "command" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "send_command参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "modbus_task_cmd": { + "feedback": { + "status": "status" + }, + "goal": { + "command": "command" + }, + "goal_default": { + "command": "" + }, + "handles": {}, + "placeholder_keys": {}, + "result": { + "return_info": "return_info", + "success": "success" + }, + "schema": { + "title": "SendCmd", + "description": "", + "type": "object", + "properties": { + "goal": { + "type": "object", + "additionalProperties": false, + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "command": { + "type": "string", + "title": "command", + "description": "" + } + }, + "title": "SendCmd_Goal", + "_unilabos_placeholder_info": {} + }, + "feedback": { + "type": "object", + "additionalProperties": false, + "properties": { + "status": { + "type": "string" + } + }, + "title": "SendCmd_Feedback" + }, + "result": { + "type": "object", + "additionalProperties": false, + "properties": { + "return_info": { + "type": "string" + }, + "success": { + "type": "boolean" + } + }, + "title": "SendCmd_Result" + } + }, + "required": [ + "goal" + ] + }, + "type": "SendCmd" + } + }, + "module": "unilabos.devices.arm.elite_robot:EliteRobot", + "status_types": { + "actual_joint_positions": "", + "arm_pose": "Float64MultiArray" + }, + "type": "python" + }, + "config_info": [], + "description": "Elite robot arm", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/devices/robot_arm.yaml", + "handles": [], + "icon": "", + "init_param_schema": { + "config": { + "properties": { + "device_id": { + "type": "string" + }, + "host": { + "type": "string" + } + }, + "required": [ + "device_id", + "host" + ], + "type": "object" + }, + "data": { + "properties": { + "actual_joint_positions": { + "type": "string" + }, + "arm_pose": { + "items": { + "type": "number" + }, + "type": "array" + } + }, + "required": [ + "actual_joint_positions", + "arm_pose" + ], + "type": "object" + } + }, + "model": { + "mesh": "elite_robot", + "type": "device" + }, + "registry_type": "device", + "version": "1.0.0" + }, + { + "id": "serial", + "category": [ + "communication_devices" + ], + "class": { + "action_value_mappings": { + "auto-handle_serial_request": { + "feedback": {}, + "goal": {}, + "goal_default": { + "request": null, + "response": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "handle_serial_request的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "request": { + "type": "string", + "title": "request", + "description": "" + }, + "response": { + "type": "string", + "title": "response", + "description": "" + } + }, + "required": [ + "request", + "response" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "handle_serial_request参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-read_data": { + "feedback": {}, + "goal": {}, + "goal_default": {}, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "read_data的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + } + }, + "required": [], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "read_data参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + }, + "auto-send_command": { + "feedback": {}, + "goal": {}, + "goal_default": { + "command": null + }, + "handles": {}, + "placeholder_keys": {}, + "result": {}, + "schema": { + "description": "send_command的参数schema", + "properties": { + "feedback": {}, + "goal": { + "properties": { + "unilabos_device_id": { + "type": "string", + "default": "", + "title": "设备ID", + "description": "UniLabOS设备ID,用于指定执行动作的具体设备实例" + }, + "command": { + "type": "string", + "title": "command", + "description": "" + } + }, + "required": [ + "command" + ], + "type": "object", + "_unilabos_placeholder_info": {} + }, + "result": {} + }, + "required": [ + "goal" + ], + "title": "send_command参数", + "type": "object" + }, + "type": "UniLabJsonCommand" + } + }, + "module": "unilabos.ros.nodes.presets.serial_node:ROS2SerialNode", + "status_types": {}, + "type": "ros2" + }, + "config_info": [], + "description": "Serial communication interface, used when sharing same serial port for multiple devices", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/device_comms/communication_devices.yaml", + "handles": [], + "icon": "", + "init_param_schema": { + "config": { + "properties": { + "baudrate": { + "default": 9600, + "type": "integer" + }, + "device_id": { + "type": "string" + }, + "port": { + "type": "string" + }, + "registry_name": { + "type": "string" + }, + "resource_tracker": { + "type": "object" + } + }, + "required": [ + "device_id", + "registry_name", + "port" + ], + "type": "object" + }, + "data": { + "properties": {}, + "required": [], + "type": "object" + } + }, + "registry_type": "device", + "version": "1.0.0" + } + ] +} \ No newline at end of file diff --git a/unilabos/test/experiments/req_resource_registry_upload.json b/unilabos/test/experiments/req_resource_registry_upload.json new file mode 100644 index 000000000..1b14ee60f --- /dev/null +++ b/unilabos/test/experiments/req_resource_registry_upload.json @@ -0,0 +1,565253 @@ +{ + "resources": [ + { + "id": "Opentrons_96_adapter_Vb", + "category": [ + "plate_adapters" + ], + "class": { + "module": "pylabrobot.resources.opentrons.plate_adapters:Opentrons_96_adapter_Vb", + "type": "pylabrobot" + }, + "description": "Opentrons 96 adapter Vb", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/opentrons/plate_adapters.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "Opentrons_96_adapter_Vb", + "uuid": "5ce6a4b3-8a82-47df-a051-7fa598569360", + "name": "Opentrons_96_adapter_Vb", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "plate_adapter", + "class": "", + "pose": { + "size": { + "depth": 18.55, + "width": 127.76, + "height": 85.48 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "PlateAdapter", + "size_x": 127.76, + "size_y": 85.48, + "size_z": 18.55, + "category": "plate_adapter", + "model": "Opentrons_96_adapter_Vb", + "barcode": null, + "preferred_pickup_location": null, + "dx": 11.65, + "dy": 8.51, + "dz": 5.0, + "adapter_hole_size_x": 5.46, + "adapter_hole_size_y": 5.46, + "adapter_hole_dx": 9.0, + "adapter_hole_dy": 9.0, + "plate_z_offset": 0.0 + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + ] + }, + { + "id": "OTDeck", + "category": [ + "deck" + ], + "class": { + "module": "pylabrobot.resources.opentrons.deck:OTDeck", + "type": "pylabrobot" + }, + "description": "Opentrons deck", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/opentrons/deck.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "model": { + "mesh": "opentrons_liquid_handler", + "path": "https://leap-lab.oss-cn-zhangjiakou.aliyuncs.com/uni-lab/devices/opentrons_liquid_handler/macro_device.xacro", + "type": "device" + }, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [] + }, + { + "id": "hplc_station", + "category": [ + "deck" + ], + "class": { + "module": "unilabos.devices.resource_container.container:DeckContainer", + "type": "python" + }, + "description": "hplc_station deck", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/opentrons/deck.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "model": { + "mesh": "hplc_station", + "path": "https://leap-lab.oss-cn-zhangjiakou.aliyuncs.com/uni-lab/devices/hplc_station/macro_device.xacro", + "type": "device" + }, + "registry_type": "resource", + "version": "1.0.0" + }, + { + "id": "agilent_1_reservoir_290ml", + "category": [ + "reservoirs" + ], + "class": { + "module": "pylabrobot.resources.opentrons.reservoirs:agilent_1_reservoir_290ml", + "type": "pylabrobot" + }, + "description": "Agilent 1 reservoir 290ml", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/opentrons/reservoirs.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "agilent_1_reservoir_290ml", + "uuid": "d153d9d1-0542-4ee5-9888-e728e379fa81", + "name": "agilent_1_reservoir_290ml", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "plate", + "class": "", + "pose": { + "size": { + "depth": 44.04, + "width": 127.76, + "height": 85.57 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Plate", + "size_x": 127.76, + "size_y": 85.57, + "size_z": 44.04, + "category": "plate", + "model": "Agilent 1 Well Reservoir 290 mL", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "agilent_1_reservoir_290ml_A1" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "agilent_1_reservoir_290ml_A1", + "uuid": "5679fecf-ee6b-4e69-8177-0ce52ee439a5", + "name": "agilent_1_reservoir_290ml_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d153d9d1-0542-4ee5-9888-e728e379fa81", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.22, + "width": 108.0, + "height": 72.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 9.88, + "y": 6.785, + "z": 4.82 + }, + "position3d": { + "x": 9.88, + "y": 6.785, + "z": 4.82 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 108, + "size_y": 72, + "size_z": 39.22, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 290000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A1_volume_tracker", + "max_volume": 290000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 9.88, + "y": 6.785, + "z": 4.82 + } + } + ] + }, + { + "id": "axygen_1_reservoir_90ml", + "category": [ + "reservoirs" + ], + "class": { + "module": "pylabrobot.resources.opentrons.reservoirs:axygen_1_reservoir_90ml", + "type": "pylabrobot" + }, + "description": "Axygen 1 reservoir 90ml", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/opentrons/reservoirs.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "axygen_1_reservoir_90ml", + "uuid": "0c6e3f8c-ffb7-4b0a-9d44-71a527b8139e", + "name": "axygen_1_reservoir_90ml", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "plate", + "class": "", + "pose": { + "size": { + "depth": 19.05, + "width": 127.76, + "height": 85.47 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Plate", + "size_x": 127.76, + "size_y": 85.47, + "size_z": 19.05, + "category": "plate", + "model": "Axygen 1 Well Reservoir 90 mL", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "axygen_1_reservoir_90ml_A1" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "axygen_1_reservoir_90ml_A1", + "uuid": "1c8df79c-c24c-4f7c-b2e8-0db1d302b2af", + "name": "axygen_1_reservoir_90ml_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0c6e3f8c-ffb7-4b0a-9d44-71a527b8139e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 12.42, + "width": 106.76, + "height": 70.52 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.5, + "y": 7.475, + "z": 6.63 + }, + "position3d": { + "x": 10.5, + "y": 7.475, + "z": 6.63 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 106.76, + "size_y": 70.52, + "size_z": 12.42, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 90000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A1_volume_tracker", + "max_volume": 90000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.5, + "y": 7.475, + "z": 6.63 + } + } + ] + }, + { + "id": "nest_12_reservoir_15ml", + "category": [ + "reservoirs" + ], + "class": { + "module": "pylabrobot.resources.opentrons.reservoirs:nest_12_reservoir_15ml", + "type": "pylabrobot" + }, + "description": "Nest 12 reservoir 15ml", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/opentrons/reservoirs.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "nest_12_reservoir_15ml", + "uuid": "d7829c13-a99c-464e-93e0-d5ca02203e38", + "name": "nest_12_reservoir_15ml", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "plate", + "class": "", + "pose": { + "size": { + "depth": 31.4, + "width": 127.76, + "height": 85.48 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Plate", + "size_x": 127.76, + "size_y": 85.48, + "size_z": 31.4, + "category": "plate", + "model": "NEST 12 Well Reservoir 15 mL", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "nest_12_reservoir_15ml_A1", + "A2": "nest_12_reservoir_15ml_A2", + "A3": "nest_12_reservoir_15ml_A3", + "A4": "nest_12_reservoir_15ml_A4", + "A5": "nest_12_reservoir_15ml_A5", + "A6": "nest_12_reservoir_15ml_A6", + "A7": "nest_12_reservoir_15ml_A7", + "A8": "nest_12_reservoir_15ml_A8", + "A9": "nest_12_reservoir_15ml_A9", + "A10": "nest_12_reservoir_15ml_A10", + "A11": "nest_12_reservoir_15ml_A11", + "A12": "nest_12_reservoir_15ml_A12" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "nest_12_reservoir_15ml_A1", + "uuid": "b5005c0a-ca58-413a-bf76-7be904d054a1", + "name": "nest_12_reservoir_15ml_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7829c13-a99c-464e-93e0-d5ca02203e38", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 26.85, + "width": 8.2, + "height": 71.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.28, + "y": 7.18, + "z": 4.55 + }, + "position3d": { + "x": 10.28, + "y": 7.18, + "z": 4.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 71.2, + "size_z": 26.85, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 15000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A1_volume_tracker", + "max_volume": 15000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.28, + "y": 7.18, + "z": 4.55 + } + }, + { + "id": "nest_12_reservoir_15ml_A2", + "uuid": "7e867f95-ead2-4b22-936b-370a1e5fa38f", + "name": "nest_12_reservoir_15ml_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7829c13-a99c-464e-93e0-d5ca02203e38", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 26.85, + "width": 8.2, + "height": 71.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 19.28, + "y": 7.18, + "z": 4.55 + }, + "position3d": { + "x": 19.28, + "y": 7.18, + "z": 4.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 71.2, + "size_z": 26.85, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 15000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A2_volume_tracker", + "max_volume": 15000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 19.28, + "y": 7.18, + "z": 4.55 + } + }, + { + "id": "nest_12_reservoir_15ml_A3", + "uuid": "6ab541b7-ed1b-4357-a705-a083e8fe64f1", + "name": "nest_12_reservoir_15ml_A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7829c13-a99c-464e-93e0-d5ca02203e38", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 26.85, + "width": 8.2, + "height": 71.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.28, + "y": 7.18, + "z": 4.55 + }, + "position3d": { + "x": 28.28, + "y": 7.18, + "z": 4.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 71.2, + "size_z": 26.85, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 15000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A3_volume_tracker", + "max_volume": 15000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.28, + "y": 7.18, + "z": 4.55 + } + }, + { + "id": "nest_12_reservoir_15ml_A4", + "uuid": "87942979-e5be-4384-8092-dd37f31f03eb", + "name": "nest_12_reservoir_15ml_A4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7829c13-a99c-464e-93e0-d5ca02203e38", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 26.85, + "width": 8.2, + "height": 71.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.28, + "y": 7.18, + "z": 4.55 + }, + "position3d": { + "x": 37.28, + "y": 7.18, + "z": 4.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 71.2, + "size_z": 26.85, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 15000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A4_volume_tracker", + "max_volume": 15000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.28, + "y": 7.18, + "z": 4.55 + } + }, + { + "id": "nest_12_reservoir_15ml_A5", + "uuid": "6f8ac88a-f5df-44d4-857d-d538c472da8c", + "name": "nest_12_reservoir_15ml_A5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7829c13-a99c-464e-93e0-d5ca02203e38", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 26.85, + "width": 8.2, + "height": 71.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.28, + "y": 7.18, + "z": 4.55 + }, + "position3d": { + "x": 46.28, + "y": 7.18, + "z": 4.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 71.2, + "size_z": 26.85, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 15000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A5_volume_tracker", + "max_volume": 15000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.28, + "y": 7.18, + "z": 4.55 + } + }, + { + "id": "nest_12_reservoir_15ml_A6", + "uuid": "8c19bdfe-7049-466a-8cb1-423521ebe239", + "name": "nest_12_reservoir_15ml_A6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7829c13-a99c-464e-93e0-d5ca02203e38", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 26.85, + "width": 8.2, + "height": 71.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.28, + "y": 7.18, + "z": 4.55 + }, + "position3d": { + "x": 55.28, + "y": 7.18, + "z": 4.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 71.2, + "size_z": 26.85, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 15000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A6_volume_tracker", + "max_volume": 15000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.28, + "y": 7.18, + "z": 4.55 + } + }, + { + "id": "nest_12_reservoir_15ml_A7", + "uuid": "44818465-2f2f-4b2f-931d-3467c11f2f87", + "name": "nest_12_reservoir_15ml_A7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7829c13-a99c-464e-93e0-d5ca02203e38", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 26.85, + "width": 8.2, + "height": 71.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.28, + "y": 7.18, + "z": 4.55 + }, + "position3d": { + "x": 64.28, + "y": 7.18, + "z": 4.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 71.2, + "size_z": 26.85, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 15000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A7_volume_tracker", + "max_volume": 15000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.28, + "y": 7.18, + "z": 4.55 + } + }, + { + "id": "nest_12_reservoir_15ml_A8", + "uuid": "bc8655f2-5bf2-41ea-8b1f-2cf59ca12dd1", + "name": "nest_12_reservoir_15ml_A8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7829c13-a99c-464e-93e0-d5ca02203e38", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 26.85, + "width": 8.2, + "height": 71.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.28, + "y": 7.18, + "z": 4.55 + }, + "position3d": { + "x": 73.28, + "y": 7.18, + "z": 4.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 71.2, + "size_z": 26.85, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 15000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A8_volume_tracker", + "max_volume": 15000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.28, + "y": 7.18, + "z": 4.55 + } + }, + { + "id": "nest_12_reservoir_15ml_A9", + "uuid": "c1cd80a1-78b4-4808-9921-46def1f97b59", + "name": "nest_12_reservoir_15ml_A9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7829c13-a99c-464e-93e0-d5ca02203e38", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 26.85, + "width": 8.2, + "height": 71.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.28, + "y": 7.18, + "z": 4.55 + }, + "position3d": { + "x": 82.28, + "y": 7.18, + "z": 4.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 71.2, + "size_z": 26.85, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 15000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A9_volume_tracker", + "max_volume": 15000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.28, + "y": 7.18, + "z": 4.55 + } + }, + { + "id": "nest_12_reservoir_15ml_A10", + "uuid": "cc98d283-8468-4df3-bf2c-e0d049559bd5", + "name": "nest_12_reservoir_15ml_A10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7829c13-a99c-464e-93e0-d5ca02203e38", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 26.85, + "width": 8.2, + "height": 71.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.28, + "y": 7.18, + "z": 4.55 + }, + "position3d": { + "x": 91.28, + "y": 7.18, + "z": 4.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 71.2, + "size_z": 26.85, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 15000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A10_volume_tracker", + "max_volume": 15000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.28, + "y": 7.18, + "z": 4.55 + } + }, + { + "id": "nest_12_reservoir_15ml_A11", + "uuid": "726924fe-e9ff-4904-bc03-352b01a01ae0", + "name": "nest_12_reservoir_15ml_A11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7829c13-a99c-464e-93e0-d5ca02203e38", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 26.85, + "width": 8.2, + "height": 71.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.28, + "y": 7.18, + "z": 4.55 + }, + "position3d": { + "x": 100.28, + "y": 7.18, + "z": 4.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 71.2, + "size_z": 26.85, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 15000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A11_volume_tracker", + "max_volume": 15000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.28, + "y": 7.18, + "z": 4.55 + } + }, + { + "id": "nest_12_reservoir_15ml_A12", + "uuid": "add974de-9497-429f-9a59-cf0fba0e31b7", + "name": "nest_12_reservoir_15ml_A12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7829c13-a99c-464e-93e0-d5ca02203e38", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 26.85, + "width": 8.2, + "height": 71.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.28, + "y": 7.18, + "z": 4.55 + }, + "position3d": { + "x": 109.28, + "y": 7.18, + "z": 4.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 71.2, + "size_z": 26.85, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 15000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A12_volume_tracker", + "max_volume": 15000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.28, + "y": 7.18, + "z": 4.55 + } + } + ] + }, + { + "id": "nest_1_reservoir_195ml", + "category": [ + "reservoirs" + ], + "class": { + "module": "pylabrobot.resources.opentrons.reservoirs:nest_1_reservoir_195ml", + "type": "pylabrobot" + }, + "description": "Nest 1 reservoir 195ml", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/opentrons/reservoirs.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "nest_1_reservoir_195ml", + "uuid": "d67daea0-4f77-493b-9d51-c673304d361c", + "name": "nest_1_reservoir_195ml", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "plate", + "class": "", + "pose": { + "size": { + "depth": 31.4, + "width": 127.76, + "height": 85.48 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Plate", + "size_x": 127.76, + "size_y": 85.48, + "size_z": 31.4, + "category": "plate", + "model": "NEST 1 Well Reservoir 195 mL", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "nest_1_reservoir_195ml_A1" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "nest_1_reservoir_195ml_A1", + "uuid": "0784419f-fe3c-4154-bab9-f27a890d717c", + "name": "nest_1_reservoir_195ml_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d67daea0-4f77-493b-9d51-c673304d361c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 25.0, + "width": 106.8, + "height": 71.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.48, + "y": 7.14, + "z": 4.55 + }, + "position3d": { + "x": 10.48, + "y": 7.14, + "z": 4.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 106.8, + "size_y": 71.2, + "size_z": 25, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 195000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A1_volume_tracker", + "max_volume": 195000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.48, + "y": 7.14, + "z": 4.55 + } + } + ] + }, + { + "id": "nest_1_reservoir_290ml", + "category": [ + "reservoirs" + ], + "class": { + "module": "pylabrobot.resources.opentrons.reservoirs:nest_1_reservoir_290ml", + "type": "pylabrobot" + }, + "description": "Nest 1 reservoir 290ml", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/opentrons/reservoirs.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "nest_1_reservoir_290ml", + "uuid": "6073b064-b121-434d-8f13-ffe7a78ea374", + "name": "nest_1_reservoir_290ml", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "plate", + "class": "", + "pose": { + "size": { + "depth": 44.4, + "width": 127.76, + "height": 85.47 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Plate", + "size_x": 127.76, + "size_y": 85.47, + "size_z": 44.4, + "category": "plate", + "model": "NEST 1 Well Reservoir 290 mL", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "nest_1_reservoir_290ml_A1" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "nest_1_reservoir_290ml_A1", + "uuid": "191f327a-9e68-45e5-89c5-c760f512a144", + "name": "nest_1_reservoir_290ml_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6073b064-b121-434d-8f13-ffe7a78ea374", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.55, + "width": 106.8, + "height": 71.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.48, + "y": 7.14, + "z": 4.85 + }, + "position3d": { + "x": 10.48, + "y": 7.14, + "z": 4.85 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 106.8, + "size_y": 71.2, + "size_z": 39.55, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 290000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A1_volume_tracker", + "max_volume": 290000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.48, + "y": 7.14, + "z": 4.85 + } + } + ] + }, + { + "id": "usascientific_12_reservoir_22ml", + "category": [ + "reservoirs" + ], + "class": { + "module": "pylabrobot.resources.opentrons.reservoirs:usascientific_12_reservoir_22ml", + "type": "pylabrobot" + }, + "description": "USAScientific 12 reservoir 22ml", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/opentrons/reservoirs.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "usascientific_12_reservoir_22ml", + "uuid": "9754358b-6428-4f52-b7a9-1a72679616e6", + "name": "usascientific_12_reservoir_22ml", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "plate", + "class": "", + "pose": { + "size": { + "depth": 44.45, + "width": 127.76, + "height": 85.8 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Plate", + "size_x": 127.76, + "size_y": 85.8, + "size_z": 44.45, + "category": "plate", + "model": "USA Scientific 12 Well Reservoir 22 mL", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "usascientific_12_reservoir_22ml_A1", + "A2": "usascientific_12_reservoir_22ml_A2", + "A3": "usascientific_12_reservoir_22ml_A3", + "A4": "usascientific_12_reservoir_22ml_A4", + "A5": "usascientific_12_reservoir_22ml_A5", + "A6": "usascientific_12_reservoir_22ml_A6", + "A7": "usascientific_12_reservoir_22ml_A7", + "A8": "usascientific_12_reservoir_22ml_A8", + "A9": "usascientific_12_reservoir_22ml_A9", + "A10": "usascientific_12_reservoir_22ml_A10", + "A11": "usascientific_12_reservoir_22ml_A11", + "A12": "usascientific_12_reservoir_22ml_A12" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "usascientific_12_reservoir_22ml_A1", + "uuid": "804c6095-0ab6-4b0c-967f-3c725bd608a7", + "name": "usascientific_12_reservoir_22ml_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "9754358b-6428-4f52-b7a9-1a72679616e6", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.16, + "width": 8.33, + "height": 71.88 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 9.775, + "y": 6.96, + "z": 2.29 + }, + "position3d": { + "x": 9.775, + "y": 6.96, + "z": 2.29 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.33, + "size_y": 71.88, + "size_z": 42.16, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 22000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A1_volume_tracker", + "max_volume": 22000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 9.775, + "y": 6.96, + "z": 2.29 + } + }, + { + "id": "usascientific_12_reservoir_22ml_A2", + "uuid": "eb8b9ae0-124c-45b8-9925-73db330f0eef", + "name": "usascientific_12_reservoir_22ml_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "9754358b-6428-4f52-b7a9-1a72679616e6", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.16, + "width": 8.33, + "height": 71.88 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 18.865, + "y": 6.96, + "z": 2.29 + }, + "position3d": { + "x": 18.865, + "y": 6.96, + "z": 2.29 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.33, + "size_y": 71.88, + "size_z": 42.16, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 22000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A2_volume_tracker", + "max_volume": 22000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 18.865, + "y": 6.96, + "z": 2.29 + } + }, + { + "id": "usascientific_12_reservoir_22ml_A3", + "uuid": "fefda745-12e6-426f-af44-bd26cc88d46d", + "name": "usascientific_12_reservoir_22ml_A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "9754358b-6428-4f52-b7a9-1a72679616e6", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.16, + "width": 8.33, + "height": 71.88 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 27.955, + "y": 6.96, + "z": 2.29 + }, + "position3d": { + "x": 27.955, + "y": 6.96, + "z": 2.29 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.33, + "size_y": 71.88, + "size_z": 42.16, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 22000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A3_volume_tracker", + "max_volume": 22000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 27.955, + "y": 6.96, + "z": 2.29 + } + }, + { + "id": "usascientific_12_reservoir_22ml_A4", + "uuid": "84c824c3-6993-43cf-9737-ccfc95016ff2", + "name": "usascientific_12_reservoir_22ml_A4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "9754358b-6428-4f52-b7a9-1a72679616e6", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.16, + "width": 8.33, + "height": 71.88 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.045, + "y": 6.96, + "z": 2.29 + }, + "position3d": { + "x": 37.045, + "y": 6.96, + "z": 2.29 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.33, + "size_y": 71.88, + "size_z": 42.16, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 22000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A4_volume_tracker", + "max_volume": 22000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.045, + "y": 6.96, + "z": 2.29 + } + }, + { + "id": "usascientific_12_reservoir_22ml_A5", + "uuid": "3f762366-111b-4989-af13-4b30f643fd7b", + "name": "usascientific_12_reservoir_22ml_A5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "9754358b-6428-4f52-b7a9-1a72679616e6", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.16, + "width": 8.33, + "height": 71.88 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.135, + "y": 6.96, + "z": 2.29 + }, + "position3d": { + "x": 46.135, + "y": 6.96, + "z": 2.29 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.33, + "size_y": 71.88, + "size_z": 42.16, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 22000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A5_volume_tracker", + "max_volume": 22000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.135, + "y": 6.96, + "z": 2.29 + } + }, + { + "id": "usascientific_12_reservoir_22ml_A6", + "uuid": "098b085c-5093-48cc-8650-14df1eef3a3e", + "name": "usascientific_12_reservoir_22ml_A6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "9754358b-6428-4f52-b7a9-1a72679616e6", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.16, + "width": 8.33, + "height": 71.88 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.225, + "y": 6.96, + "z": 2.29 + }, + "position3d": { + "x": 55.225, + "y": 6.96, + "z": 2.29 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.33, + "size_y": 71.88, + "size_z": 42.16, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 22000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A6_volume_tracker", + "max_volume": 22000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.225, + "y": 6.96, + "z": 2.29 + } + }, + { + "id": "usascientific_12_reservoir_22ml_A7", + "uuid": "bc8c630a-435a-4141-afe7-8b8f04482f02", + "name": "usascientific_12_reservoir_22ml_A7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "9754358b-6428-4f52-b7a9-1a72679616e6", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.16, + "width": 8.33, + "height": 71.88 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.315, + "y": 6.96, + "z": 2.29 + }, + "position3d": { + "x": 64.315, + "y": 6.96, + "z": 2.29 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.33, + "size_y": 71.88, + "size_z": 42.16, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 22000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A7_volume_tracker", + "max_volume": 22000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.315, + "y": 6.96, + "z": 2.29 + } + }, + { + "id": "usascientific_12_reservoir_22ml_A8", + "uuid": "1ba00dfe-b21d-4157-94ef-dd7d56e440a7", + "name": "usascientific_12_reservoir_22ml_A8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "9754358b-6428-4f52-b7a9-1a72679616e6", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.16, + "width": 8.33, + "height": 71.88 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.405, + "y": 6.96, + "z": 2.29 + }, + "position3d": { + "x": 73.405, + "y": 6.96, + "z": 2.29 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.33, + "size_y": 71.88, + "size_z": 42.16, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 22000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A8_volume_tracker", + "max_volume": 22000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.405, + "y": 6.96, + "z": 2.29 + } + }, + { + "id": "usascientific_12_reservoir_22ml_A9", + "uuid": "1bc9f0d5-f942-4ad4-8921-19eb7ba567dc", + "name": "usascientific_12_reservoir_22ml_A9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "9754358b-6428-4f52-b7a9-1a72679616e6", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.16, + "width": 8.33, + "height": 71.88 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.495, + "y": 6.96, + "z": 2.29 + }, + "position3d": { + "x": 82.495, + "y": 6.96, + "z": 2.29 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.33, + "size_y": 71.88, + "size_z": 42.16, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 22000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A9_volume_tracker", + "max_volume": 22000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.495, + "y": 6.96, + "z": 2.29 + } + }, + { + "id": "usascientific_12_reservoir_22ml_A10", + "uuid": "0a8822a4-d7d0-4a42-8169-93d7ba167ffb", + "name": "usascientific_12_reservoir_22ml_A10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "9754358b-6428-4f52-b7a9-1a72679616e6", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.16, + "width": 8.33, + "height": 71.88 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.585, + "y": 6.96, + "z": 2.29 + }, + "position3d": { + "x": 91.585, + "y": 6.96, + "z": 2.29 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.33, + "size_y": 71.88, + "size_z": 42.16, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 22000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A10_volume_tracker", + "max_volume": 22000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.585, + "y": 6.96, + "z": 2.29 + } + }, + { + "id": "usascientific_12_reservoir_22ml_A11", + "uuid": "a333d63c-81da-495f-ba81-7c0aff569bb1", + "name": "usascientific_12_reservoir_22ml_A11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "9754358b-6428-4f52-b7a9-1a72679616e6", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.16, + "width": 8.33, + "height": 71.88 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.675, + "y": 6.96, + "z": 2.29 + }, + "position3d": { + "x": 100.675, + "y": 6.96, + "z": 2.29 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.33, + "size_y": 71.88, + "size_z": 42.16, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 22000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A11_volume_tracker", + "max_volume": 22000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.675, + "y": 6.96, + "z": 2.29 + } + }, + { + "id": "usascientific_12_reservoir_22ml_A12", + "uuid": "314ccbaa-b4ac-4dfc-8cc1-46de43222dbc", + "name": "usascientific_12_reservoir_22ml_A12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "9754358b-6428-4f52-b7a9-1a72679616e6", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.16, + "width": 8.33, + "height": 71.88 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.765, + "y": 6.96, + "z": 2.29 + }, + "position3d": { + "x": 109.765, + "y": 6.96, + "z": 2.29 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.33, + "size_y": 71.88, + "size_z": 42.16, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 22000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A12_volume_tracker", + "max_volume": 22000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.765, + "y": 6.96, + "z": 2.29 + } + } + ] + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips", + "category": [ + "tip_racks" + ], + "class": { + "module": "pylabrobot.resources.opentrons.tip_racks:eppendorf_96_tiprack_1000ul_eptips", + "type": "pylabrobot" + }, + "description": "Eppendorf 96 tiprack 1000ul eptips", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/opentrons/tip_racks.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "eppendorf_96_tiprack_1000ul_eptips", + "uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "name": "eppendorf_96_tiprack_1000ul_eptips", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "tip_rack", + "class": "", + "pose": { + "size": { + "depth": 121.9, + "width": 127.76, + "height": 85.48 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipRack", + "size_x": 127.76, + "size_y": 85.48, + "size_z": 121.9, + "category": "tip_rack", + "model": "Eppendorf epT.I.P.S. 96 Tip Rack 1000 µL", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "eppendorf_96_tiprack_1000ul_eptips_A1", + "B1": "eppendorf_96_tiprack_1000ul_eptips_B1", + "C1": "eppendorf_96_tiprack_1000ul_eptips_C1", + "D1": "eppendorf_96_tiprack_1000ul_eptips_D1", + "E1": "eppendorf_96_tiprack_1000ul_eptips_E1", + "F1": "eppendorf_96_tiprack_1000ul_eptips_F1", + "G1": "eppendorf_96_tiprack_1000ul_eptips_G1", + "H1": "eppendorf_96_tiprack_1000ul_eptips_H1", + "A2": "eppendorf_96_tiprack_1000ul_eptips_A2", + "B2": "eppendorf_96_tiprack_1000ul_eptips_B2", + "C2": "eppendorf_96_tiprack_1000ul_eptips_C2", + "D2": "eppendorf_96_tiprack_1000ul_eptips_D2", + "E2": "eppendorf_96_tiprack_1000ul_eptips_E2", + "F2": "eppendorf_96_tiprack_1000ul_eptips_F2", + "G2": "eppendorf_96_tiprack_1000ul_eptips_G2", + "H2": "eppendorf_96_tiprack_1000ul_eptips_H2", + "A3": "eppendorf_96_tiprack_1000ul_eptips_A3", + "B3": "eppendorf_96_tiprack_1000ul_eptips_B3", + "C3": "eppendorf_96_tiprack_1000ul_eptips_C3", + "D3": "eppendorf_96_tiprack_1000ul_eptips_D3", + "E3": "eppendorf_96_tiprack_1000ul_eptips_E3", + "F3": "eppendorf_96_tiprack_1000ul_eptips_F3", + "G3": "eppendorf_96_tiprack_1000ul_eptips_G3", + "H3": "eppendorf_96_tiprack_1000ul_eptips_H3", + "A4": "eppendorf_96_tiprack_1000ul_eptips_A4", + "B4": "eppendorf_96_tiprack_1000ul_eptips_B4", + "C4": "eppendorf_96_tiprack_1000ul_eptips_C4", + "D4": "eppendorf_96_tiprack_1000ul_eptips_D4", + "E4": "eppendorf_96_tiprack_1000ul_eptips_E4", + "F4": "eppendorf_96_tiprack_1000ul_eptips_F4", + "G4": "eppendorf_96_tiprack_1000ul_eptips_G4", + "H4": "eppendorf_96_tiprack_1000ul_eptips_H4", + "A5": "eppendorf_96_tiprack_1000ul_eptips_A5", + "B5": "eppendorf_96_tiprack_1000ul_eptips_B5", + "C5": "eppendorf_96_tiprack_1000ul_eptips_C5", + "D5": "eppendorf_96_tiprack_1000ul_eptips_D5", + "E5": "eppendorf_96_tiprack_1000ul_eptips_E5", + "F5": "eppendorf_96_tiprack_1000ul_eptips_F5", + "G5": "eppendorf_96_tiprack_1000ul_eptips_G5", + "H5": "eppendorf_96_tiprack_1000ul_eptips_H5", + "A6": "eppendorf_96_tiprack_1000ul_eptips_A6", + "B6": "eppendorf_96_tiprack_1000ul_eptips_B6", + "C6": "eppendorf_96_tiprack_1000ul_eptips_C6", + "D6": "eppendorf_96_tiprack_1000ul_eptips_D6", + "E6": "eppendorf_96_tiprack_1000ul_eptips_E6", + "F6": "eppendorf_96_tiprack_1000ul_eptips_F6", + "G6": "eppendorf_96_tiprack_1000ul_eptips_G6", + "H6": "eppendorf_96_tiprack_1000ul_eptips_H6", + "A7": "eppendorf_96_tiprack_1000ul_eptips_A7", + "B7": "eppendorf_96_tiprack_1000ul_eptips_B7", + "C7": "eppendorf_96_tiprack_1000ul_eptips_C7", + "D7": "eppendorf_96_tiprack_1000ul_eptips_D7", + "E7": "eppendorf_96_tiprack_1000ul_eptips_E7", + "F7": "eppendorf_96_tiprack_1000ul_eptips_F7", + "G7": "eppendorf_96_tiprack_1000ul_eptips_G7", + "H7": "eppendorf_96_tiprack_1000ul_eptips_H7", + "A8": "eppendorf_96_tiprack_1000ul_eptips_A8", + "B8": "eppendorf_96_tiprack_1000ul_eptips_B8", + "C8": "eppendorf_96_tiprack_1000ul_eptips_C8", + "D8": "eppendorf_96_tiprack_1000ul_eptips_D8", + "E8": "eppendorf_96_tiprack_1000ul_eptips_E8", + "F8": "eppendorf_96_tiprack_1000ul_eptips_F8", + "G8": "eppendorf_96_tiprack_1000ul_eptips_G8", + "H8": "eppendorf_96_tiprack_1000ul_eptips_H8", + "A9": "eppendorf_96_tiprack_1000ul_eptips_A9", + "B9": "eppendorf_96_tiprack_1000ul_eptips_B9", + "C9": "eppendorf_96_tiprack_1000ul_eptips_C9", + "D9": "eppendorf_96_tiprack_1000ul_eptips_D9", + "E9": "eppendorf_96_tiprack_1000ul_eptips_E9", + "F9": "eppendorf_96_tiprack_1000ul_eptips_F9", + "G9": "eppendorf_96_tiprack_1000ul_eptips_G9", + "H9": "eppendorf_96_tiprack_1000ul_eptips_H9", + "A10": "eppendorf_96_tiprack_1000ul_eptips_A10", + "B10": "eppendorf_96_tiprack_1000ul_eptips_B10", + "C10": "eppendorf_96_tiprack_1000ul_eptips_C10", + "D10": "eppendorf_96_tiprack_1000ul_eptips_D10", + "E10": "eppendorf_96_tiprack_1000ul_eptips_E10", + "F10": "eppendorf_96_tiprack_1000ul_eptips_F10", + "G10": "eppendorf_96_tiprack_1000ul_eptips_G10", + "H10": "eppendorf_96_tiprack_1000ul_eptips_H10", + "A11": "eppendorf_96_tiprack_1000ul_eptips_A11", + "B11": "eppendorf_96_tiprack_1000ul_eptips_B11", + "C11": "eppendorf_96_tiprack_1000ul_eptips_C11", + "D11": "eppendorf_96_tiprack_1000ul_eptips_D11", + "E11": "eppendorf_96_tiprack_1000ul_eptips_E11", + "F11": "eppendorf_96_tiprack_1000ul_eptips_F11", + "G11": "eppendorf_96_tiprack_1000ul_eptips_G11", + "H11": "eppendorf_96_tiprack_1000ul_eptips_H11", + "A12": "eppendorf_96_tiprack_1000ul_eptips_A12", + "B12": "eppendorf_96_tiprack_1000ul_eptips_B12", + "C12": "eppendorf_96_tiprack_1000ul_eptips_C12", + "D12": "eppendorf_96_tiprack_1000ul_eptips_D12", + "E12": "eppendorf_96_tiprack_1000ul_eptips_E12", + "F12": "eppendorf_96_tiprack_1000ul_eptips_F12", + "G12": "eppendorf_96_tiprack_1000ul_eptips_G12", + "H12": "eppendorf_96_tiprack_1000ul_eptips_H12" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_A1", + "uuid": "3b12a803-281a-4fbf-8fec-59eca24aecaa", + "name": "eppendorf_96_tiprack_1000ul_eptips_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.2685, + "y": 71.1285, + "z": 56.9 + }, + "position3d": { + "x": 11.2685, + "y": 71.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_A1#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_A1#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_A1#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_A1#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.2685, + "y": 71.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_B1", + "uuid": "42ee1bce-93a1-455c-8992-dd55e291ec79", + "name": "eppendorf_96_tiprack_1000ul_eptips_B1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.2685, + "y": 62.1285, + "z": 56.9 + }, + "position3d": { + "x": 11.2685, + "y": 62.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_B1#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_B1#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_B1#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_B1#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.2685, + "y": 62.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_C1", + "uuid": "8f9b9cc0-eca5-49d6-b514-5a9d3f64ecaa", + "name": "eppendorf_96_tiprack_1000ul_eptips_C1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.2685, + "y": 53.1285, + "z": 56.9 + }, + "position3d": { + "x": 11.2685, + "y": 53.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_C1#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_C1#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_C1#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_C1#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.2685, + "y": 53.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_D1", + "uuid": "d242b0ab-a3d7-4ba3-90da-2530311dcc4d", + "name": "eppendorf_96_tiprack_1000ul_eptips_D1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.2685, + "y": 44.1285, + "z": 56.9 + }, + "position3d": { + "x": 11.2685, + "y": 44.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_D1#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_D1#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_D1#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_D1#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.2685, + "y": 44.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_E1", + "uuid": "cb36b290-b641-4393-9853-a93d0b6d758c", + "name": "eppendorf_96_tiprack_1000ul_eptips_E1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.2685, + "y": 35.1285, + "z": 56.9 + }, + "position3d": { + "x": 11.2685, + "y": 35.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_E1#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_E1#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_E1#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_E1#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.2685, + "y": 35.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_F1", + "uuid": "98b5e0a3-6ad1-4e39-a314-f4102074a441", + "name": "eppendorf_96_tiprack_1000ul_eptips_F1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.2685, + "y": 26.1285, + "z": 56.9 + }, + "position3d": { + "x": 11.2685, + "y": 26.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_F1#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_F1#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_F1#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_F1#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.2685, + "y": 26.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_G1", + "uuid": "21ef8ed8-77be-479f-9445-2ea54657f7ec", + "name": "eppendorf_96_tiprack_1000ul_eptips_G1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.2685, + "y": 17.1285, + "z": 56.9 + }, + "position3d": { + "x": 11.2685, + "y": 17.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_G1#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_G1#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_G1#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_G1#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.2685, + "y": 17.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_H1", + "uuid": "44aabb53-0150-4247-873e-cdac371dad66", + "name": "eppendorf_96_tiprack_1000ul_eptips_H1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.2685, + "y": 8.1285, + "z": 56.9 + }, + "position3d": { + "x": 11.2685, + "y": 8.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_H1#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_H1#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_H1#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_H1#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.2685, + "y": 8.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_A2", + "uuid": "c6bb94f4-dafd-42c7-957b-db453689a7b1", + "name": "eppendorf_96_tiprack_1000ul_eptips_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.2685, + "y": 71.1285, + "z": 56.9 + }, + "position3d": { + "x": 20.2685, + "y": 71.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_A2#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_A2#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_A2#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_A2#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.2685, + "y": 71.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_B2", + "uuid": "0dddf35b-c84e-4d97-9889-8b94929c2738", + "name": "eppendorf_96_tiprack_1000ul_eptips_B2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.2685, + "y": 62.1285, + "z": 56.9 + }, + "position3d": { + "x": 20.2685, + "y": 62.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_B2#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_B2#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_B2#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_B2#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.2685, + "y": 62.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_C2", + "uuid": "220a8a36-f558-46ca-91cd-8a472fea273d", + "name": "eppendorf_96_tiprack_1000ul_eptips_C2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.2685, + "y": 53.1285, + "z": 56.9 + }, + "position3d": { + "x": 20.2685, + "y": 53.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_C2#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_C2#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_C2#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_C2#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.2685, + "y": 53.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_D2", + "uuid": "31b947b4-3102-4bda-97ff-e7f516a4eaff", + "name": "eppendorf_96_tiprack_1000ul_eptips_D2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.2685, + "y": 44.1285, + "z": 56.9 + }, + "position3d": { + "x": 20.2685, + "y": 44.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_D2#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_D2#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_D2#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_D2#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.2685, + "y": 44.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_E2", + "uuid": "4afa4875-b6cb-4572-be8b-48a8fabe4f9a", + "name": "eppendorf_96_tiprack_1000ul_eptips_E2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.2685, + "y": 35.1285, + "z": 56.9 + }, + "position3d": { + "x": 20.2685, + "y": 35.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_E2#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_E2#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_E2#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_E2#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.2685, + "y": 35.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_F2", + "uuid": "47e4c794-3c91-4c90-b870-9436203afff6", + "name": "eppendorf_96_tiprack_1000ul_eptips_F2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.2685, + "y": 26.1285, + "z": 56.9 + }, + "position3d": { + "x": 20.2685, + "y": 26.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_F2#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_F2#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_F2#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_F2#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.2685, + "y": 26.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_G2", + "uuid": "9aaa1642-31d2-43f5-81c7-04ccf3dfbd65", + "name": "eppendorf_96_tiprack_1000ul_eptips_G2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.2685, + "y": 17.1285, + "z": 56.9 + }, + "position3d": { + "x": 20.2685, + "y": 17.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_G2#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_G2#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_G2#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_G2#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.2685, + "y": 17.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_H2", + "uuid": "b8dca611-bf47-40d4-bbfe-c67b9bd672cb", + "name": "eppendorf_96_tiprack_1000ul_eptips_H2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.2685, + "y": 8.1285, + "z": 56.9 + }, + "position3d": { + "x": 20.2685, + "y": 8.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_H2#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_H2#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_H2#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_H2#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.2685, + "y": 8.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_A3", + "uuid": "e2ac66a6-c521-45e5-9d9c-e3924f3ff750", + "name": "eppendorf_96_tiprack_1000ul_eptips_A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.2685, + "y": 71.1285, + "z": 56.9 + }, + "position3d": { + "x": 29.2685, + "y": 71.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_A3#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_A3#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_A3#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_A3#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.2685, + "y": 71.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_B3", + "uuid": "209f4dcd-f110-431e-8783-6e5f10938e5b", + "name": "eppendorf_96_tiprack_1000ul_eptips_B3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.2685, + "y": 62.1285, + "z": 56.9 + }, + "position3d": { + "x": 29.2685, + "y": 62.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_B3#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_B3#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_B3#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_B3#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.2685, + "y": 62.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_C3", + "uuid": "ab7b7ccb-0457-4ff6-8156-b0807b456f88", + "name": "eppendorf_96_tiprack_1000ul_eptips_C3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.2685, + "y": 53.1285, + "z": 56.9 + }, + "position3d": { + "x": 29.2685, + "y": 53.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_C3#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_C3#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_C3#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_C3#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.2685, + "y": 53.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_D3", + "uuid": "e110a291-d7b2-4057-b33e-403c832a1a42", + "name": "eppendorf_96_tiprack_1000ul_eptips_D3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.2685, + "y": 44.1285, + "z": 56.9 + }, + "position3d": { + "x": 29.2685, + "y": 44.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_D3#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_D3#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_D3#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_D3#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.2685, + "y": 44.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_E3", + "uuid": "217d6780-8a77-4313-b6fe-fd4f5e890e9f", + "name": "eppendorf_96_tiprack_1000ul_eptips_E3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.2685, + "y": 35.1285, + "z": 56.9 + }, + "position3d": { + "x": 29.2685, + "y": 35.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_E3#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_E3#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_E3#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_E3#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.2685, + "y": 35.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_F3", + "uuid": "36255bcb-1516-4570-a9d0-f4bcce169516", + "name": "eppendorf_96_tiprack_1000ul_eptips_F3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.2685, + "y": 26.1285, + "z": 56.9 + }, + "position3d": { + "x": 29.2685, + "y": 26.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_F3#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_F3#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_F3#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_F3#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.2685, + "y": 26.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_G3", + "uuid": "0c571c58-4377-414e-a21c-2d333ec0f802", + "name": "eppendorf_96_tiprack_1000ul_eptips_G3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.2685, + "y": 17.1285, + "z": 56.9 + }, + "position3d": { + "x": 29.2685, + "y": 17.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_G3#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_G3#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_G3#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_G3#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.2685, + "y": 17.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_H3", + "uuid": "3902e237-bc15-4273-a16e-c23ef735c0b0", + "name": "eppendorf_96_tiprack_1000ul_eptips_H3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.2685, + "y": 8.1285, + "z": 56.9 + }, + "position3d": { + "x": 29.2685, + "y": 8.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_H3#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_H3#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_H3#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_H3#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.2685, + "y": 8.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_A4", + "uuid": "131c3f2c-4b6d-4793-aae0-2502e413b400", + "name": "eppendorf_96_tiprack_1000ul_eptips_A4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.2685, + "y": 71.1285, + "z": 56.9 + }, + "position3d": { + "x": 38.2685, + "y": 71.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_A4#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_A4#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_A4#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_A4#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.2685, + "y": 71.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_B4", + "uuid": "c446e770-0597-4eb8-b330-a3898a26081d", + "name": "eppendorf_96_tiprack_1000ul_eptips_B4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.2685, + "y": 62.1285, + "z": 56.9 + }, + "position3d": { + "x": 38.2685, + "y": 62.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_B4#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_B4#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_B4#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_B4#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.2685, + "y": 62.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_C4", + "uuid": "f5481635-1e73-4eb5-bcf5-2069c705883a", + "name": "eppendorf_96_tiprack_1000ul_eptips_C4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.2685, + "y": 53.1285, + "z": 56.9 + }, + "position3d": { + "x": 38.2685, + "y": 53.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_C4#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_C4#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_C4#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_C4#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.2685, + "y": 53.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_D4", + "uuid": "5e614593-ff01-4504-96e4-96070ebe66a0", + "name": "eppendorf_96_tiprack_1000ul_eptips_D4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.2685, + "y": 44.1285, + "z": 56.9 + }, + "position3d": { + "x": 38.2685, + "y": 44.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_D4#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_D4#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_D4#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_D4#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.2685, + "y": 44.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_E4", + "uuid": "c83a4e45-52d2-403e-acae-250a93e5d0db", + "name": "eppendorf_96_tiprack_1000ul_eptips_E4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.2685, + "y": 35.1285, + "z": 56.9 + }, + "position3d": { + "x": 38.2685, + "y": 35.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_E4#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_E4#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_E4#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_E4#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.2685, + "y": 35.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_F4", + "uuid": "9a65746f-3853-48f6-875a-3a9028791474", + "name": "eppendorf_96_tiprack_1000ul_eptips_F4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.2685, + "y": 26.1285, + "z": 56.9 + }, + "position3d": { + "x": 38.2685, + "y": 26.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_F4#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_F4#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_F4#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_F4#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.2685, + "y": 26.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_G4", + "uuid": "503548c7-2470-4509-8741-b8127edafd73", + "name": "eppendorf_96_tiprack_1000ul_eptips_G4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.2685, + "y": 17.1285, + "z": 56.9 + }, + "position3d": { + "x": 38.2685, + "y": 17.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_G4#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_G4#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_G4#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_G4#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.2685, + "y": 17.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_H4", + "uuid": "fb13abca-2745-499b-9bf4-f8a28d3f7402", + "name": "eppendorf_96_tiprack_1000ul_eptips_H4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.2685, + "y": 8.1285, + "z": 56.9 + }, + "position3d": { + "x": 38.2685, + "y": 8.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_H4#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_H4#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_H4#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_H4#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.2685, + "y": 8.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_A5", + "uuid": "faff3332-1376-4da4-a7bd-af54fe2fff92", + "name": "eppendorf_96_tiprack_1000ul_eptips_A5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.2685, + "y": 71.1285, + "z": 56.9 + }, + "position3d": { + "x": 47.2685, + "y": 71.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_A5#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_A5#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_A5#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_A5#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.2685, + "y": 71.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_B5", + "uuid": "2a67eaaf-b137-41ff-bf6f-1ef34d4b529c", + "name": "eppendorf_96_tiprack_1000ul_eptips_B5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.2685, + "y": 62.1285, + "z": 56.9 + }, + "position3d": { + "x": 47.2685, + "y": 62.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_B5#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_B5#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_B5#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_B5#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.2685, + "y": 62.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_C5", + "uuid": "5983e263-ce78-4383-8549-adc7e16f8ed1", + "name": "eppendorf_96_tiprack_1000ul_eptips_C5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.2685, + "y": 53.1285, + "z": 56.9 + }, + "position3d": { + "x": 47.2685, + "y": 53.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_C5#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_C5#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_C5#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_C5#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.2685, + "y": 53.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_D5", + "uuid": "e4adc68f-da2f-45dc-ab08-bef468d9c328", + "name": "eppendorf_96_tiprack_1000ul_eptips_D5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.2685, + "y": 44.1285, + "z": 56.9 + }, + "position3d": { + "x": 47.2685, + "y": 44.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_D5#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_D5#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_D5#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_D5#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.2685, + "y": 44.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_E5", + "uuid": "8aa4c255-3c68-4817-9cb8-e6fe6bc06ef6", + "name": "eppendorf_96_tiprack_1000ul_eptips_E5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.2685, + "y": 35.1285, + "z": 56.9 + }, + "position3d": { + "x": 47.2685, + "y": 35.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_E5#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_E5#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_E5#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_E5#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.2685, + "y": 35.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_F5", + "uuid": "8c54dd18-dbd4-44ad-8e6c-a7bc692d11cc", + "name": "eppendorf_96_tiprack_1000ul_eptips_F5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.2685, + "y": 26.1285, + "z": 56.9 + }, + "position3d": { + "x": 47.2685, + "y": 26.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_F5#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_F5#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_F5#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_F5#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.2685, + "y": 26.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_G5", + "uuid": "9cdc7217-ed1d-492e-86ec-b4e1e7ff63ab", + "name": "eppendorf_96_tiprack_1000ul_eptips_G5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.2685, + "y": 17.1285, + "z": 56.9 + }, + "position3d": { + "x": 47.2685, + "y": 17.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_G5#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_G5#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_G5#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_G5#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.2685, + "y": 17.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_H5", + "uuid": "946616a1-c849-4f51-b28d-6a9f0e3b56c3", + "name": "eppendorf_96_tiprack_1000ul_eptips_H5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.2685, + "y": 8.1285, + "z": 56.9 + }, + "position3d": { + "x": 47.2685, + "y": 8.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_H5#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_H5#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_H5#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_H5#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.2685, + "y": 8.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_A6", + "uuid": "53766d7f-b83a-424a-8d46-4a0084197704", + "name": "eppendorf_96_tiprack_1000ul_eptips_A6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.2685, + "y": 71.1285, + "z": 56.9 + }, + "position3d": { + "x": 56.2685, + "y": 71.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_A6#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_A6#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_A6#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_A6#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.2685, + "y": 71.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_B6", + "uuid": "399a3207-2afc-4ef7-b951-06f022f8e9bb", + "name": "eppendorf_96_tiprack_1000ul_eptips_B6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.2685, + "y": 62.1285, + "z": 56.9 + }, + "position3d": { + "x": 56.2685, + "y": 62.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_B6#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_B6#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_B6#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_B6#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.2685, + "y": 62.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_C6", + "uuid": "087968a5-665b-4a8a-830c-1a21df34143b", + "name": "eppendorf_96_tiprack_1000ul_eptips_C6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.2685, + "y": 53.1285, + "z": 56.9 + }, + "position3d": { + "x": 56.2685, + "y": 53.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_C6#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_C6#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_C6#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_C6#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.2685, + "y": 53.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_D6", + "uuid": "9123071f-fef6-456c-99ab-e254d5b29639", + "name": "eppendorf_96_tiprack_1000ul_eptips_D6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.2685, + "y": 44.1285, + "z": 56.9 + }, + "position3d": { + "x": 56.2685, + "y": 44.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_D6#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_D6#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_D6#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_D6#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.2685, + "y": 44.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_E6", + "uuid": "c25572bd-742b-47fc-9927-c13a322a7e65", + "name": "eppendorf_96_tiprack_1000ul_eptips_E6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.2685, + "y": 35.1285, + "z": 56.9 + }, + "position3d": { + "x": 56.2685, + "y": 35.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_E6#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_E6#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_E6#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_E6#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.2685, + "y": 35.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_F6", + "uuid": "cd164bdb-5d07-4fbe-8873-a2691d660cc1", + "name": "eppendorf_96_tiprack_1000ul_eptips_F6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.2685, + "y": 26.1285, + "z": 56.9 + }, + "position3d": { + "x": 56.2685, + "y": 26.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_F6#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_F6#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_F6#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_F6#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.2685, + "y": 26.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_G6", + "uuid": "1a4369dd-d513-43bd-923f-40ffb8ffe941", + "name": "eppendorf_96_tiprack_1000ul_eptips_G6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.2685, + "y": 17.1285, + "z": 56.9 + }, + "position3d": { + "x": 56.2685, + "y": 17.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_G6#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_G6#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_G6#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_G6#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.2685, + "y": 17.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_H6", + "uuid": "6032e544-56b3-4cf3-adae-c709c1fa02f5", + "name": "eppendorf_96_tiprack_1000ul_eptips_H6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.2685, + "y": 8.1285, + "z": 56.9 + }, + "position3d": { + "x": 56.2685, + "y": 8.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_H6#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_H6#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_H6#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_H6#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.2685, + "y": 8.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_A7", + "uuid": "fb4018a9-04d5-4105-baf4-8b485fa30441", + "name": "eppendorf_96_tiprack_1000ul_eptips_A7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.2685, + "y": 71.1285, + "z": 56.9 + }, + "position3d": { + "x": 65.2685, + "y": 71.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_A7#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_A7#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_A7#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_A7#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.2685, + "y": 71.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_B7", + "uuid": "cb68e0de-6100-452e-91d6-623f7bdb4281", + "name": "eppendorf_96_tiprack_1000ul_eptips_B7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.2685, + "y": 62.1285, + "z": 56.9 + }, + "position3d": { + "x": 65.2685, + "y": 62.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_B7#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_B7#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_B7#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_B7#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.2685, + "y": 62.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_C7", + "uuid": "8d0f4250-5fda-4fca-8f12-f5194720c97b", + "name": "eppendorf_96_tiprack_1000ul_eptips_C7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.2685, + "y": 53.1285, + "z": 56.9 + }, + "position3d": { + "x": 65.2685, + "y": 53.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_C7#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_C7#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_C7#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_C7#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.2685, + "y": 53.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_D7", + "uuid": "cd1e6687-c0af-4611-9a57-855be587834f", + "name": "eppendorf_96_tiprack_1000ul_eptips_D7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.2685, + "y": 44.1285, + "z": 56.9 + }, + "position3d": { + "x": 65.2685, + "y": 44.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_D7#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_D7#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_D7#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_D7#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.2685, + "y": 44.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_E7", + "uuid": "e81b8042-265e-4c88-ad7b-c18abff707e3", + "name": "eppendorf_96_tiprack_1000ul_eptips_E7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.2685, + "y": 35.1285, + "z": 56.9 + }, + "position3d": { + "x": 65.2685, + "y": 35.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_E7#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_E7#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_E7#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_E7#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.2685, + "y": 35.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_F7", + "uuid": "c4f06d3f-5c49-4b42-a274-aa143e0d79cd", + "name": "eppendorf_96_tiprack_1000ul_eptips_F7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.2685, + "y": 26.1285, + "z": 56.9 + }, + "position3d": { + "x": 65.2685, + "y": 26.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_F7#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_F7#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_F7#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_F7#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.2685, + "y": 26.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_G7", + "uuid": "011f0faa-51df-4c07-9daf-9daac25031d3", + "name": "eppendorf_96_tiprack_1000ul_eptips_G7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.2685, + "y": 17.1285, + "z": 56.9 + }, + "position3d": { + "x": 65.2685, + "y": 17.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_G7#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_G7#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_G7#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_G7#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.2685, + "y": 17.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_H7", + "uuid": "0aed76f2-273a-451f-9b87-f10ca1df09b3", + "name": "eppendorf_96_tiprack_1000ul_eptips_H7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.2685, + "y": 8.1285, + "z": 56.9 + }, + "position3d": { + "x": 65.2685, + "y": 8.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_H7#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_H7#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_H7#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_H7#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.2685, + "y": 8.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_A8", + "uuid": "8e2d9851-f78a-4a86-b910-7956165957ec", + "name": "eppendorf_96_tiprack_1000ul_eptips_A8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.2685, + "y": 71.1285, + "z": 56.9 + }, + "position3d": { + "x": 74.2685, + "y": 71.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_A8#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_A8#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_A8#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_A8#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.2685, + "y": 71.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_B8", + "uuid": "237e4a56-3b86-4ff6-80dc-4ce2d664101f", + "name": "eppendorf_96_tiprack_1000ul_eptips_B8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.2685, + "y": 62.1285, + "z": 56.9 + }, + "position3d": { + "x": 74.2685, + "y": 62.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_B8#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_B8#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_B8#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_B8#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.2685, + "y": 62.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_C8", + "uuid": "22a1fe31-5266-435f-a0a6-ea2920b4de1f", + "name": "eppendorf_96_tiprack_1000ul_eptips_C8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.2685, + "y": 53.1285, + "z": 56.9 + }, + "position3d": { + "x": 74.2685, + "y": 53.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_C8#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_C8#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_C8#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_C8#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.2685, + "y": 53.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_D8", + "uuid": "a173b7da-98cd-4b79-93fc-3a797b17d082", + "name": "eppendorf_96_tiprack_1000ul_eptips_D8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.2685, + "y": 44.1285, + "z": 56.9 + }, + "position3d": { + "x": 74.2685, + "y": 44.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_D8#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_D8#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_D8#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_D8#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.2685, + "y": 44.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_E8", + "uuid": "f6b692a4-2645-42fd-9e30-66bf1413e3ee", + "name": "eppendorf_96_tiprack_1000ul_eptips_E8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.2685, + "y": 35.1285, + "z": 56.9 + }, + "position3d": { + "x": 74.2685, + "y": 35.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_E8#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_E8#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_E8#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_E8#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.2685, + "y": 35.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_F8", + "uuid": "967ae299-7540-47eb-b039-991bb10409d4", + "name": "eppendorf_96_tiprack_1000ul_eptips_F8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.2685, + "y": 26.1285, + "z": 56.9 + }, + "position3d": { + "x": 74.2685, + "y": 26.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_F8#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_F8#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_F8#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_F8#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.2685, + "y": 26.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_G8", + "uuid": "3042f4ac-fe31-44f1-86c7-eebf549dac6c", + "name": "eppendorf_96_tiprack_1000ul_eptips_G8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.2685, + "y": 17.1285, + "z": 56.9 + }, + "position3d": { + "x": 74.2685, + "y": 17.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_G8#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_G8#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_G8#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_G8#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.2685, + "y": 17.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_H8", + "uuid": "1a9665a3-31eb-4dc9-a97f-8a9231ef5392", + "name": "eppendorf_96_tiprack_1000ul_eptips_H8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.2685, + "y": 8.1285, + "z": 56.9 + }, + "position3d": { + "x": 74.2685, + "y": 8.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_H8#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_H8#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_H8#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_H8#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.2685, + "y": 8.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_A9", + "uuid": "915a6251-cb71-4bc3-813c-2f256d609e82", + "name": "eppendorf_96_tiprack_1000ul_eptips_A9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.2685, + "y": 71.1285, + "z": 56.9 + }, + "position3d": { + "x": 83.2685, + "y": 71.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_A9#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_A9#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_A9#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_A9#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.2685, + "y": 71.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_B9", + "uuid": "378be73f-26c0-418e-abc8-c858aac1c1ce", + "name": "eppendorf_96_tiprack_1000ul_eptips_B9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.2685, + "y": 62.1285, + "z": 56.9 + }, + "position3d": { + "x": 83.2685, + "y": 62.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_B9#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_B9#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_B9#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_B9#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.2685, + "y": 62.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_C9", + "uuid": "615b8152-f57e-4549-abbc-f4426b2f6dc7", + "name": "eppendorf_96_tiprack_1000ul_eptips_C9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.2685, + "y": 53.1285, + "z": 56.9 + }, + "position3d": { + "x": 83.2685, + "y": 53.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_C9#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_C9#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_C9#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_C9#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.2685, + "y": 53.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_D9", + "uuid": "9897f527-05f3-4327-8941-a5799968daa3", + "name": "eppendorf_96_tiprack_1000ul_eptips_D9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.2685, + "y": 44.1285, + "z": 56.9 + }, + "position3d": { + "x": 83.2685, + "y": 44.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_D9#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_D9#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_D9#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_D9#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.2685, + "y": 44.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_E9", + "uuid": "165cdd01-2a90-44e1-ae63-41b20ebbc5f8", + "name": "eppendorf_96_tiprack_1000ul_eptips_E9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.2685, + "y": 35.1285, + "z": 56.9 + }, + "position3d": { + "x": 83.2685, + "y": 35.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_E9#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_E9#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_E9#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_E9#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.2685, + "y": 35.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_F9", + "uuid": "c5c8ad2f-3bd4-4ed0-bfdd-17fdcae4e621", + "name": "eppendorf_96_tiprack_1000ul_eptips_F9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.2685, + "y": 26.1285, + "z": 56.9 + }, + "position3d": { + "x": 83.2685, + "y": 26.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_F9#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_F9#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_F9#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_F9#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.2685, + "y": 26.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_G9", + "uuid": "5cf9932f-d5f5-4e53-80f7-27edab24a705", + "name": "eppendorf_96_tiprack_1000ul_eptips_G9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.2685, + "y": 17.1285, + "z": 56.9 + }, + "position3d": { + "x": 83.2685, + "y": 17.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_G9#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_G9#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_G9#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_G9#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.2685, + "y": 17.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_H9", + "uuid": "77d0ce61-cae7-477b-9727-0d7173500e25", + "name": "eppendorf_96_tiprack_1000ul_eptips_H9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.2685, + "y": 8.1285, + "z": 56.9 + }, + "position3d": { + "x": 83.2685, + "y": 8.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_H9#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_H9#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_H9#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_H9#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.2685, + "y": 8.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_A10", + "uuid": "bdf60b2a-e180-473e-ae58-b190c0293941", + "name": "eppendorf_96_tiprack_1000ul_eptips_A10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.2685, + "y": 71.1285, + "z": 56.9 + }, + "position3d": { + "x": 92.2685, + "y": 71.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_A10#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_A10#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_A10#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_A10#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.2685, + "y": 71.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_B10", + "uuid": "97a12012-d9bc-423c-ab42-37104b95034c", + "name": "eppendorf_96_tiprack_1000ul_eptips_B10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.2685, + "y": 62.1285, + "z": 56.9 + }, + "position3d": { + "x": 92.2685, + "y": 62.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_B10#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_B10#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_B10#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_B10#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.2685, + "y": 62.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_C10", + "uuid": "6f086e44-7f86-4d98-8dca-0c6ac9bcba6e", + "name": "eppendorf_96_tiprack_1000ul_eptips_C10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.2685, + "y": 53.1285, + "z": 56.9 + }, + "position3d": { + "x": 92.2685, + "y": 53.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_C10#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_C10#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_C10#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_C10#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.2685, + "y": 53.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_D10", + "uuid": "6d8389c9-58cf-4ae3-8d4d-2c40be0e7a38", + "name": "eppendorf_96_tiprack_1000ul_eptips_D10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.2685, + "y": 44.1285, + "z": 56.9 + }, + "position3d": { + "x": 92.2685, + "y": 44.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_D10#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_D10#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_D10#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_D10#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.2685, + "y": 44.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_E10", + "uuid": "6953277c-affb-449f-86a5-aa0760538a04", + "name": "eppendorf_96_tiprack_1000ul_eptips_E10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.2685, + "y": 35.1285, + "z": 56.9 + }, + "position3d": { + "x": 92.2685, + "y": 35.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_E10#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_E10#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_E10#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_E10#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.2685, + "y": 35.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_F10", + "uuid": "a12ff1c0-e1a6-4385-b30c-7aa38362dc27", + "name": "eppendorf_96_tiprack_1000ul_eptips_F10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.2685, + "y": 26.1285, + "z": 56.9 + }, + "position3d": { + "x": 92.2685, + "y": 26.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_F10#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_F10#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_F10#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_F10#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.2685, + "y": 26.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_G10", + "uuid": "ca83fab5-c8f9-4eb6-888d-c79f4ff490e8", + "name": "eppendorf_96_tiprack_1000ul_eptips_G10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.2685, + "y": 17.1285, + "z": 56.9 + }, + "position3d": { + "x": 92.2685, + "y": 17.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_G10#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_G10#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_G10#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_G10#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.2685, + "y": 17.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_H10", + "uuid": "18fadb93-4244-47c9-bba7-c605e793a777", + "name": "eppendorf_96_tiprack_1000ul_eptips_H10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.2685, + "y": 8.1285, + "z": 56.9 + }, + "position3d": { + "x": 92.2685, + "y": 8.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_H10#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_H10#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_H10#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_H10#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.2685, + "y": 8.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_A11", + "uuid": "a8ea60a2-3cd9-49e9-93a7-8edca1bb14b1", + "name": "eppendorf_96_tiprack_1000ul_eptips_A11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.2685, + "y": 71.1285, + "z": 56.9 + }, + "position3d": { + "x": 101.2685, + "y": 71.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_A11#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_A11#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_A11#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_A11#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.2685, + "y": 71.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_B11", + "uuid": "6dbaaa16-a6e9-4883-b853-eb7a113d4be4", + "name": "eppendorf_96_tiprack_1000ul_eptips_B11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.2685, + "y": 62.1285, + "z": 56.9 + }, + "position3d": { + "x": 101.2685, + "y": 62.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_B11#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_B11#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_B11#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_B11#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.2685, + "y": 62.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_C11", + "uuid": "236b2c58-ee59-469d-943e-e8644667cd16", + "name": "eppendorf_96_tiprack_1000ul_eptips_C11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.2685, + "y": 53.1285, + "z": 56.9 + }, + "position3d": { + "x": 101.2685, + "y": 53.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_C11#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_C11#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_C11#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_C11#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.2685, + "y": 53.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_D11", + "uuid": "175b5716-9342-4a58-b35c-93de6560bbec", + "name": "eppendorf_96_tiprack_1000ul_eptips_D11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.2685, + "y": 44.1285, + "z": 56.9 + }, + "position3d": { + "x": 101.2685, + "y": 44.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_D11#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_D11#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_D11#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_D11#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.2685, + "y": 44.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_E11", + "uuid": "6ce3d20e-50b0-4d37-8474-8011ea3eea56", + "name": "eppendorf_96_tiprack_1000ul_eptips_E11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.2685, + "y": 35.1285, + "z": 56.9 + }, + "position3d": { + "x": 101.2685, + "y": 35.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_E11#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_E11#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_E11#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_E11#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.2685, + "y": 35.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_F11", + "uuid": "b10b3743-9fef-4fce-b872-6fdc3646229f", + "name": "eppendorf_96_tiprack_1000ul_eptips_F11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.2685, + "y": 26.1285, + "z": 56.9 + }, + "position3d": { + "x": 101.2685, + "y": 26.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_F11#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_F11#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_F11#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_F11#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.2685, + "y": 26.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_G11", + "uuid": "c112b415-e62e-434d-bf5d-256fef5f5c0d", + "name": "eppendorf_96_tiprack_1000ul_eptips_G11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.2685, + "y": 17.1285, + "z": 56.9 + }, + "position3d": { + "x": 101.2685, + "y": 17.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_G11#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_G11#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_G11#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_G11#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.2685, + "y": 17.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_H11", + "uuid": "029aef19-7b33-446b-8a0a-132f9cf7a873", + "name": "eppendorf_96_tiprack_1000ul_eptips_H11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.2685, + "y": 8.1285, + "z": 56.9 + }, + "position3d": { + "x": 101.2685, + "y": 8.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_H11#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_H11#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_H11#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_H11#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.2685, + "y": 8.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_A12", + "uuid": "8edbe074-48c3-45e2-a7f8-58ef03ce98e9", + "name": "eppendorf_96_tiprack_1000ul_eptips_A12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.2685, + "y": 71.1285, + "z": 56.9 + }, + "position3d": { + "x": 110.2685, + "y": 71.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_A12#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_A12#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_A12#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_A12#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.2685, + "y": 71.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_B12", + "uuid": "6e371ee7-884a-4a73-a7cd-ecc652f41d07", + "name": "eppendorf_96_tiprack_1000ul_eptips_B12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.2685, + "y": 62.1285, + "z": 56.9 + }, + "position3d": { + "x": 110.2685, + "y": 62.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_B12#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_B12#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_B12#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_B12#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.2685, + "y": 62.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_C12", + "uuid": "a6cf5090-a6e0-4e3c-a1fc-33b897abc60a", + "name": "eppendorf_96_tiprack_1000ul_eptips_C12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.2685, + "y": 53.1285, + "z": 56.9 + }, + "position3d": { + "x": 110.2685, + "y": 53.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_C12#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_C12#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_C12#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_C12#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.2685, + "y": 53.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_D12", + "uuid": "0dab2c70-5508-41fe-a07a-e08dca6f9a5d", + "name": "eppendorf_96_tiprack_1000ul_eptips_D12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.2685, + "y": 44.1285, + "z": 56.9 + }, + "position3d": { + "x": 110.2685, + "y": 44.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_D12#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_D12#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_D12#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_D12#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.2685, + "y": 44.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_E12", + "uuid": "0a0699e0-b191-4033-b061-7ec286872b50", + "name": "eppendorf_96_tiprack_1000ul_eptips_E12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.2685, + "y": 35.1285, + "z": 56.9 + }, + "position3d": { + "x": 110.2685, + "y": 35.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_E12#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_E12#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_E12#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_E12#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.2685, + "y": 35.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_F12", + "uuid": "d73a1183-c733-465f-bd14-0ba004c9fd8d", + "name": "eppendorf_96_tiprack_1000ul_eptips_F12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.2685, + "y": 26.1285, + "z": 56.9 + }, + "position3d": { + "x": 110.2685, + "y": 26.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_F12#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_F12#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_F12#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_F12#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.2685, + "y": 26.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_G12", + "uuid": "4958824c-7a63-465e-9c56-7407f5b9dff9", + "name": "eppendorf_96_tiprack_1000ul_eptips_G12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.2685, + "y": 17.1285, + "z": 56.9 + }, + "position3d": { + "x": 110.2685, + "y": 17.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_G12#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_G12#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_G12#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_G12#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.2685, + "y": 17.1285, + "z": 56.9 + } + }, + { + "id": "eppendorf_96_tiprack_1000ul_eptips_H12", + "uuid": "3c366d75-2392-4111-92ba-801d49ff86fb", + "name": "eppendorf_96_tiprack_1000ul_eptips_H12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d7a2e6ab-993a-466a-b6be-1c8a3e0139a8", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.2685, + "y": 8.1285, + "z": 56.9 + }, + "position3d": { + "x": 110.2685, + "y": 8.1285, + "z": 56.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_H12#1", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_H12#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_1000ul_eptips_H12#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_1000ul_eptips_H12#0", + "total_tip_length": 70.7, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.2685, + "y": 8.1285, + "z": 56.9 + } + } + ] + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips", + "category": [ + "tip_racks" + ], + "class": { + "module": "pylabrobot.resources.opentrons.tip_racks:eppendorf_96_tiprack_10ul_eptips", + "type": "pylabrobot" + }, + "description": "Eppendorf 96 tiprack 10ul eptips", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/opentrons/tip_racks.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "eppendorf_96_tiprack_10ul_eptips", + "uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "name": "eppendorf_96_tiprack_10ul_eptips", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "tip_rack", + "class": "", + "pose": { + "size": { + "depth": 65.4, + "width": 127.76, + "height": 85.48 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipRack", + "size_x": 127.76, + "size_y": 85.48, + "size_z": 65.4, + "category": "tip_rack", + "model": "Eppendorf epT.I.P.S. 96 Tip Rack 10 µL", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "eppendorf_96_tiprack_10ul_eptips_A1", + "B1": "eppendorf_96_tiprack_10ul_eptips_B1", + "C1": "eppendorf_96_tiprack_10ul_eptips_C1", + "D1": "eppendorf_96_tiprack_10ul_eptips_D1", + "E1": "eppendorf_96_tiprack_10ul_eptips_E1", + "F1": "eppendorf_96_tiprack_10ul_eptips_F1", + "G1": "eppendorf_96_tiprack_10ul_eptips_G1", + "H1": "eppendorf_96_tiprack_10ul_eptips_H1", + "A2": "eppendorf_96_tiprack_10ul_eptips_A2", + "B2": "eppendorf_96_tiprack_10ul_eptips_B2", + "C2": "eppendorf_96_tiprack_10ul_eptips_C2", + "D2": "eppendorf_96_tiprack_10ul_eptips_D2", + "E2": "eppendorf_96_tiprack_10ul_eptips_E2", + "F2": "eppendorf_96_tiprack_10ul_eptips_F2", + "G2": "eppendorf_96_tiprack_10ul_eptips_G2", + "H2": "eppendorf_96_tiprack_10ul_eptips_H2", + "A3": "eppendorf_96_tiprack_10ul_eptips_A3", + "B3": "eppendorf_96_tiprack_10ul_eptips_B3", + "C3": "eppendorf_96_tiprack_10ul_eptips_C3", + "D3": "eppendorf_96_tiprack_10ul_eptips_D3", + "E3": "eppendorf_96_tiprack_10ul_eptips_E3", + "F3": "eppendorf_96_tiprack_10ul_eptips_F3", + "G3": "eppendorf_96_tiprack_10ul_eptips_G3", + "H3": "eppendorf_96_tiprack_10ul_eptips_H3", + "A4": "eppendorf_96_tiprack_10ul_eptips_A4", + "B4": "eppendorf_96_tiprack_10ul_eptips_B4", + "C4": "eppendorf_96_tiprack_10ul_eptips_C4", + "D4": "eppendorf_96_tiprack_10ul_eptips_D4", + "E4": "eppendorf_96_tiprack_10ul_eptips_E4", + "F4": "eppendorf_96_tiprack_10ul_eptips_F4", + "G4": "eppendorf_96_tiprack_10ul_eptips_G4", + "H4": "eppendorf_96_tiprack_10ul_eptips_H4", + "A5": "eppendorf_96_tiprack_10ul_eptips_A5", + "B5": "eppendorf_96_tiprack_10ul_eptips_B5", + "C5": "eppendorf_96_tiprack_10ul_eptips_C5", + "D5": "eppendorf_96_tiprack_10ul_eptips_D5", + "E5": "eppendorf_96_tiprack_10ul_eptips_E5", + "F5": "eppendorf_96_tiprack_10ul_eptips_F5", + "G5": "eppendorf_96_tiprack_10ul_eptips_G5", + "H5": "eppendorf_96_tiprack_10ul_eptips_H5", + "A6": "eppendorf_96_tiprack_10ul_eptips_A6", + "B6": "eppendorf_96_tiprack_10ul_eptips_B6", + "C6": "eppendorf_96_tiprack_10ul_eptips_C6", + "D6": "eppendorf_96_tiprack_10ul_eptips_D6", + "E6": "eppendorf_96_tiprack_10ul_eptips_E6", + "F6": "eppendorf_96_tiprack_10ul_eptips_F6", + "G6": "eppendorf_96_tiprack_10ul_eptips_G6", + "H6": "eppendorf_96_tiprack_10ul_eptips_H6", + "A7": "eppendorf_96_tiprack_10ul_eptips_A7", + "B7": "eppendorf_96_tiprack_10ul_eptips_B7", + "C7": "eppendorf_96_tiprack_10ul_eptips_C7", + "D7": "eppendorf_96_tiprack_10ul_eptips_D7", + "E7": "eppendorf_96_tiprack_10ul_eptips_E7", + "F7": "eppendorf_96_tiprack_10ul_eptips_F7", + "G7": "eppendorf_96_tiprack_10ul_eptips_G7", + "H7": "eppendorf_96_tiprack_10ul_eptips_H7", + "A8": "eppendorf_96_tiprack_10ul_eptips_A8", + "B8": "eppendorf_96_tiprack_10ul_eptips_B8", + "C8": "eppendorf_96_tiprack_10ul_eptips_C8", + "D8": "eppendorf_96_tiprack_10ul_eptips_D8", + "E8": "eppendorf_96_tiprack_10ul_eptips_E8", + "F8": "eppendorf_96_tiprack_10ul_eptips_F8", + "G8": "eppendorf_96_tiprack_10ul_eptips_G8", + "H8": "eppendorf_96_tiprack_10ul_eptips_H8", + "A9": "eppendorf_96_tiprack_10ul_eptips_A9", + "B9": "eppendorf_96_tiprack_10ul_eptips_B9", + "C9": "eppendorf_96_tiprack_10ul_eptips_C9", + "D9": "eppendorf_96_tiprack_10ul_eptips_D9", + "E9": "eppendorf_96_tiprack_10ul_eptips_E9", + "F9": "eppendorf_96_tiprack_10ul_eptips_F9", + "G9": "eppendorf_96_tiprack_10ul_eptips_G9", + "H9": "eppendorf_96_tiprack_10ul_eptips_H9", + "A10": "eppendorf_96_tiprack_10ul_eptips_A10", + "B10": "eppendorf_96_tiprack_10ul_eptips_B10", + "C10": "eppendorf_96_tiprack_10ul_eptips_C10", + "D10": "eppendorf_96_tiprack_10ul_eptips_D10", + "E10": "eppendorf_96_tiprack_10ul_eptips_E10", + "F10": "eppendorf_96_tiprack_10ul_eptips_F10", + "G10": "eppendorf_96_tiprack_10ul_eptips_G10", + "H10": "eppendorf_96_tiprack_10ul_eptips_H10", + "A11": "eppendorf_96_tiprack_10ul_eptips_A11", + "B11": "eppendorf_96_tiprack_10ul_eptips_B11", + "C11": "eppendorf_96_tiprack_10ul_eptips_C11", + "D11": "eppendorf_96_tiprack_10ul_eptips_D11", + "E11": "eppendorf_96_tiprack_10ul_eptips_E11", + "F11": "eppendorf_96_tiprack_10ul_eptips_F11", + "G11": "eppendorf_96_tiprack_10ul_eptips_G11", + "H11": "eppendorf_96_tiprack_10ul_eptips_H11", + "A12": "eppendorf_96_tiprack_10ul_eptips_A12", + "B12": "eppendorf_96_tiprack_10ul_eptips_B12", + "C12": "eppendorf_96_tiprack_10ul_eptips_C12", + "D12": "eppendorf_96_tiprack_10ul_eptips_D12", + "E12": "eppendorf_96_tiprack_10ul_eptips_E12", + "F12": "eppendorf_96_tiprack_10ul_eptips_F12", + "G12": "eppendorf_96_tiprack_10ul_eptips_G12", + "H12": "eppendorf_96_tiprack_10ul_eptips_H12" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_A1", + "uuid": "971a0bed-fbdb-4456-9d05-36985df70ee9", + "name": "eppendorf_96_tiprack_10ul_eptips_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 12.2585, + "y": 72.1185, + "z": 35.4 + }, + "position3d": { + "x": 12.2585, + "y": 72.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_A1#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_A1#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_A1#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_A1#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 12.2585, + "y": 72.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_B1", + "uuid": "24d2233b-5a90-4cc2-b4d8-f21ce36f385b", + "name": "eppendorf_96_tiprack_10ul_eptips_B1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 12.2585, + "y": 63.1185, + "z": 35.4 + }, + "position3d": { + "x": 12.2585, + "y": 63.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_B1#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_B1#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_B1#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_B1#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 12.2585, + "y": 63.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_C1", + "uuid": "fdfb4009-cbc0-483c-8a6e-c6e31c28a22b", + "name": "eppendorf_96_tiprack_10ul_eptips_C1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 12.2585, + "y": 54.1185, + "z": 35.4 + }, + "position3d": { + "x": 12.2585, + "y": 54.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_C1#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_C1#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_C1#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_C1#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 12.2585, + "y": 54.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_D1", + "uuid": "c3133d6e-e866-4ccd-8986-decc607df6aa", + "name": "eppendorf_96_tiprack_10ul_eptips_D1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 12.2585, + "y": 45.1185, + "z": 35.4 + }, + "position3d": { + "x": 12.2585, + "y": 45.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_D1#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_D1#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_D1#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_D1#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 12.2585, + "y": 45.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_E1", + "uuid": "24dcb9e5-ee58-4309-a081-829f6679ea0e", + "name": "eppendorf_96_tiprack_10ul_eptips_E1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 12.2585, + "y": 36.1185, + "z": 35.4 + }, + "position3d": { + "x": 12.2585, + "y": 36.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_E1#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_E1#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_E1#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_E1#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 12.2585, + "y": 36.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_F1", + "uuid": "aceac634-501f-4cff-9f02-6611a620b02d", + "name": "eppendorf_96_tiprack_10ul_eptips_F1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 12.2585, + "y": 27.1185, + "z": 35.4 + }, + "position3d": { + "x": 12.2585, + "y": 27.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_F1#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_F1#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_F1#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_F1#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 12.2585, + "y": 27.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_G1", + "uuid": "c659e35b-29f8-4b2c-8f25-dae24e00f17a", + "name": "eppendorf_96_tiprack_10ul_eptips_G1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 12.2585, + "y": 18.1185, + "z": 35.4 + }, + "position3d": { + "x": 12.2585, + "y": 18.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_G1#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_G1#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_G1#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_G1#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 12.2585, + "y": 18.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_H1", + "uuid": "6ae8dcb5-bad0-4b91-8c72-c7b83a989521", + "name": "eppendorf_96_tiprack_10ul_eptips_H1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 12.2585, + "y": 9.1185, + "z": 35.4 + }, + "position3d": { + "x": 12.2585, + "y": 9.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_H1#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_H1#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_H1#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_H1#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 12.2585, + "y": 9.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_A2", + "uuid": "f10a81af-2936-4659-8a0e-efa97c45fd0a", + "name": "eppendorf_96_tiprack_10ul_eptips_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 21.2585, + "y": 72.1185, + "z": 35.4 + }, + "position3d": { + "x": 21.2585, + "y": 72.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_A2#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_A2#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_A2#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_A2#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 21.2585, + "y": 72.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_B2", + "uuid": "0daefaa8-fb3f-4d7b-92af-06b51e956d82", + "name": "eppendorf_96_tiprack_10ul_eptips_B2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 21.2585, + "y": 63.1185, + "z": 35.4 + }, + "position3d": { + "x": 21.2585, + "y": 63.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_B2#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_B2#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_B2#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_B2#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 21.2585, + "y": 63.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_C2", + "uuid": "f98fce38-b44d-4de8-8844-a54a5478aa2a", + "name": "eppendorf_96_tiprack_10ul_eptips_C2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 21.2585, + "y": 54.1185, + "z": 35.4 + }, + "position3d": { + "x": 21.2585, + "y": 54.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_C2#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_C2#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_C2#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_C2#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 21.2585, + "y": 54.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_D2", + "uuid": "35ec1451-b164-4802-b66a-66bbb565925d", + "name": "eppendorf_96_tiprack_10ul_eptips_D2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 21.2585, + "y": 45.1185, + "z": 35.4 + }, + "position3d": { + "x": 21.2585, + "y": 45.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_D2#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_D2#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_D2#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_D2#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 21.2585, + "y": 45.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_E2", + "uuid": "d8f82316-1b5d-4f07-a687-5e43febeaceb", + "name": "eppendorf_96_tiprack_10ul_eptips_E2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 21.2585, + "y": 36.1185, + "z": 35.4 + }, + "position3d": { + "x": 21.2585, + "y": 36.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_E2#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_E2#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_E2#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_E2#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 21.2585, + "y": 36.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_F2", + "uuid": "81380410-283a-4558-8f01-7a0c8cb1d995", + "name": "eppendorf_96_tiprack_10ul_eptips_F2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 21.2585, + "y": 27.1185, + "z": 35.4 + }, + "position3d": { + "x": 21.2585, + "y": 27.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_F2#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_F2#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_F2#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_F2#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 21.2585, + "y": 27.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_G2", + "uuid": "4150e356-32e4-4b81-a148-464d9fddd106", + "name": "eppendorf_96_tiprack_10ul_eptips_G2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 21.2585, + "y": 18.1185, + "z": 35.4 + }, + "position3d": { + "x": 21.2585, + "y": 18.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_G2#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_G2#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_G2#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_G2#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 21.2585, + "y": 18.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_H2", + "uuid": "f11b5204-5a56-4c0a-8f5e-2c5074e6ac38", + "name": "eppendorf_96_tiprack_10ul_eptips_H2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 21.2585, + "y": 9.1185, + "z": 35.4 + }, + "position3d": { + "x": 21.2585, + "y": 9.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_H2#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_H2#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_H2#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_H2#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 21.2585, + "y": 9.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_A3", + "uuid": "6fa01fba-78ea-4680-95e2-d58ec2b56f3b", + "name": "eppendorf_96_tiprack_10ul_eptips_A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 30.2585, + "y": 72.1185, + "z": 35.4 + }, + "position3d": { + "x": 30.2585, + "y": 72.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_A3#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_A3#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_A3#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_A3#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 30.2585, + "y": 72.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_B3", + "uuid": "dd1dc832-b2dd-428f-9ef8-84b77dec4852", + "name": "eppendorf_96_tiprack_10ul_eptips_B3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 30.2585, + "y": 63.1185, + "z": 35.4 + }, + "position3d": { + "x": 30.2585, + "y": 63.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_B3#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_B3#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_B3#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_B3#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 30.2585, + "y": 63.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_C3", + "uuid": "b5918f58-66ae-47cf-b978-5c024b2785fe", + "name": "eppendorf_96_tiprack_10ul_eptips_C3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 30.2585, + "y": 54.1185, + "z": 35.4 + }, + "position3d": { + "x": 30.2585, + "y": 54.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_C3#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_C3#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_C3#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_C3#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 30.2585, + "y": 54.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_D3", + "uuid": "535ba558-c2c0-4a69-a0c3-528755bcf1f6", + "name": "eppendorf_96_tiprack_10ul_eptips_D3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 30.2585, + "y": 45.1185, + "z": 35.4 + }, + "position3d": { + "x": 30.2585, + "y": 45.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_D3#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_D3#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_D3#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_D3#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 30.2585, + "y": 45.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_E3", + "uuid": "c5ef98cf-df36-49b7-b57f-36b6f0014334", + "name": "eppendorf_96_tiprack_10ul_eptips_E3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 30.2585, + "y": 36.1185, + "z": 35.4 + }, + "position3d": { + "x": 30.2585, + "y": 36.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_E3#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_E3#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_E3#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_E3#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 30.2585, + "y": 36.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_F3", + "uuid": "c373e692-54e6-4719-b92b-3a5999e67f93", + "name": "eppendorf_96_tiprack_10ul_eptips_F3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 30.2585, + "y": 27.1185, + "z": 35.4 + }, + "position3d": { + "x": 30.2585, + "y": 27.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_F3#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_F3#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_F3#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_F3#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 30.2585, + "y": 27.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_G3", + "uuid": "a5a6f2d2-4e33-4bf4-b5be-6c1991dc6383", + "name": "eppendorf_96_tiprack_10ul_eptips_G3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 30.2585, + "y": 18.1185, + "z": 35.4 + }, + "position3d": { + "x": 30.2585, + "y": 18.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_G3#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_G3#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_G3#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_G3#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 30.2585, + "y": 18.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_H3", + "uuid": "78cb466c-df49-408e-b21d-53beda38da3e", + "name": "eppendorf_96_tiprack_10ul_eptips_H3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 30.2585, + "y": 9.1185, + "z": 35.4 + }, + "position3d": { + "x": 30.2585, + "y": 9.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_H3#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_H3#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_H3#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_H3#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 30.2585, + "y": 9.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_A4", + "uuid": "3d1c6cfb-d3b3-4e59-a18d-c6a10a98ee47", + "name": "eppendorf_96_tiprack_10ul_eptips_A4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 39.2585, + "y": 72.1185, + "z": 35.4 + }, + "position3d": { + "x": 39.2585, + "y": 72.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_A4#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_A4#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_A4#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_A4#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 39.2585, + "y": 72.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_B4", + "uuid": "d9f91499-a5d7-4c01-8381-cf42689a2ca0", + "name": "eppendorf_96_tiprack_10ul_eptips_B4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 39.2585, + "y": 63.1185, + "z": 35.4 + }, + "position3d": { + "x": 39.2585, + "y": 63.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_B4#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_B4#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_B4#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_B4#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 39.2585, + "y": 63.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_C4", + "uuid": "4754a61c-1e0a-4895-94b1-ddf0f1044705", + "name": "eppendorf_96_tiprack_10ul_eptips_C4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 39.2585, + "y": 54.1185, + "z": 35.4 + }, + "position3d": { + "x": 39.2585, + "y": 54.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_C4#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_C4#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_C4#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_C4#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 39.2585, + "y": 54.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_D4", + "uuid": "8dd704f3-179a-44bb-98d4-3733c11620c1", + "name": "eppendorf_96_tiprack_10ul_eptips_D4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 39.2585, + "y": 45.1185, + "z": 35.4 + }, + "position3d": { + "x": 39.2585, + "y": 45.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_D4#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_D4#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_D4#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_D4#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 39.2585, + "y": 45.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_E4", + "uuid": "ae387508-4cd3-4da4-af27-86308d174aca", + "name": "eppendorf_96_tiprack_10ul_eptips_E4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 39.2585, + "y": 36.1185, + "z": 35.4 + }, + "position3d": { + "x": 39.2585, + "y": 36.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_E4#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_E4#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_E4#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_E4#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 39.2585, + "y": 36.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_F4", + "uuid": "6c4bcb34-2555-4dc2-b59c-e4ae879b8876", + "name": "eppendorf_96_tiprack_10ul_eptips_F4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 39.2585, + "y": 27.1185, + "z": 35.4 + }, + "position3d": { + "x": 39.2585, + "y": 27.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_F4#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_F4#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_F4#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_F4#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 39.2585, + "y": 27.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_G4", + "uuid": "49c12dfa-99be-4915-90f0-944ca0699998", + "name": "eppendorf_96_tiprack_10ul_eptips_G4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 39.2585, + "y": 18.1185, + "z": 35.4 + }, + "position3d": { + "x": 39.2585, + "y": 18.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_G4#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_G4#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_G4#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_G4#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 39.2585, + "y": 18.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_H4", + "uuid": "2a21ef92-9fa9-40f1-a32a-53ca754c2c79", + "name": "eppendorf_96_tiprack_10ul_eptips_H4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 39.2585, + "y": 9.1185, + "z": 35.4 + }, + "position3d": { + "x": 39.2585, + "y": 9.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_H4#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_H4#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_H4#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_H4#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 39.2585, + "y": 9.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_A5", + "uuid": "538eca2d-1617-4ce1-8e86-0a88ea03f97f", + "name": "eppendorf_96_tiprack_10ul_eptips_A5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 48.2585, + "y": 72.1185, + "z": 35.4 + }, + "position3d": { + "x": 48.2585, + "y": 72.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_A5#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_A5#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_A5#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_A5#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 48.2585, + "y": 72.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_B5", + "uuid": "0b3be56d-680b-44a8-91b1-2ef627965076", + "name": "eppendorf_96_tiprack_10ul_eptips_B5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 48.2585, + "y": 63.1185, + "z": 35.4 + }, + "position3d": { + "x": 48.2585, + "y": 63.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_B5#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_B5#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_B5#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_B5#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 48.2585, + "y": 63.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_C5", + "uuid": "f7b2cadd-d2ba-4056-9f35-d0c4f8953fb9", + "name": "eppendorf_96_tiprack_10ul_eptips_C5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 48.2585, + "y": 54.1185, + "z": 35.4 + }, + "position3d": { + "x": 48.2585, + "y": 54.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_C5#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_C5#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_C5#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_C5#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 48.2585, + "y": 54.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_D5", + "uuid": "cdfdbc8b-839f-42d7-822d-1d0bcfe4ad7f", + "name": "eppendorf_96_tiprack_10ul_eptips_D5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 48.2585, + "y": 45.1185, + "z": 35.4 + }, + "position3d": { + "x": 48.2585, + "y": 45.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_D5#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_D5#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_D5#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_D5#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 48.2585, + "y": 45.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_E5", + "uuid": "879d5d44-4ed5-44c6-bd04-edc6962e77e4", + "name": "eppendorf_96_tiprack_10ul_eptips_E5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 48.2585, + "y": 36.1185, + "z": 35.4 + }, + "position3d": { + "x": 48.2585, + "y": 36.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_E5#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_E5#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_E5#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_E5#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 48.2585, + "y": 36.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_F5", + "uuid": "6c6626b2-4c12-41c6-a0a8-f28e175e48f8", + "name": "eppendorf_96_tiprack_10ul_eptips_F5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 48.2585, + "y": 27.1185, + "z": 35.4 + }, + "position3d": { + "x": 48.2585, + "y": 27.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_F5#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_F5#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_F5#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_F5#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 48.2585, + "y": 27.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_G5", + "uuid": "72817c13-9627-420e-82d8-1521aa233616", + "name": "eppendorf_96_tiprack_10ul_eptips_G5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 48.2585, + "y": 18.1185, + "z": 35.4 + }, + "position3d": { + "x": 48.2585, + "y": 18.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_G5#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_G5#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_G5#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_G5#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 48.2585, + "y": 18.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_H5", + "uuid": "4d3eaf29-3276-4917-a2b4-e07afc65550e", + "name": "eppendorf_96_tiprack_10ul_eptips_H5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 48.2585, + "y": 9.1185, + "z": 35.4 + }, + "position3d": { + "x": 48.2585, + "y": 9.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_H5#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_H5#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_H5#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_H5#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 48.2585, + "y": 9.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_A6", + "uuid": "3cd737fd-266f-40cc-a416-7c560acb566d", + "name": "eppendorf_96_tiprack_10ul_eptips_A6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 57.2585, + "y": 72.1185, + "z": 35.4 + }, + "position3d": { + "x": 57.2585, + "y": 72.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_A6#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_A6#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_A6#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_A6#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 57.2585, + "y": 72.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_B6", + "uuid": "2132b977-66fc-4eb3-90e0-fdcbfc40e0ce", + "name": "eppendorf_96_tiprack_10ul_eptips_B6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 57.2585, + "y": 63.1185, + "z": 35.4 + }, + "position3d": { + "x": 57.2585, + "y": 63.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_B6#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_B6#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_B6#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_B6#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 57.2585, + "y": 63.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_C6", + "uuid": "5cb0bab5-38b2-4cb1-8b76-635c3417a502", + "name": "eppendorf_96_tiprack_10ul_eptips_C6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 57.2585, + "y": 54.1185, + "z": 35.4 + }, + "position3d": { + "x": 57.2585, + "y": 54.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_C6#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_C6#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_C6#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_C6#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 57.2585, + "y": 54.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_D6", + "uuid": "ba4e6a84-0b7a-45b6-810b-0f47c0d68c96", + "name": "eppendorf_96_tiprack_10ul_eptips_D6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 57.2585, + "y": 45.1185, + "z": 35.4 + }, + "position3d": { + "x": 57.2585, + "y": 45.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_D6#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_D6#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_D6#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_D6#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 57.2585, + "y": 45.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_E6", + "uuid": "1e805374-8ac8-432c-bf28-04d26389272e", + "name": "eppendorf_96_tiprack_10ul_eptips_E6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 57.2585, + "y": 36.1185, + "z": 35.4 + }, + "position3d": { + "x": 57.2585, + "y": 36.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_E6#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_E6#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_E6#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_E6#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 57.2585, + "y": 36.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_F6", + "uuid": "581c9e19-9c74-4fb3-846b-ae6eda70d1de", + "name": "eppendorf_96_tiprack_10ul_eptips_F6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 57.2585, + "y": 27.1185, + "z": 35.4 + }, + "position3d": { + "x": 57.2585, + "y": 27.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_F6#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_F6#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_F6#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_F6#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 57.2585, + "y": 27.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_G6", + "uuid": "28c9fae8-bae9-43a7-aa3d-96a7dd1e5b54", + "name": "eppendorf_96_tiprack_10ul_eptips_G6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 57.2585, + "y": 18.1185, + "z": 35.4 + }, + "position3d": { + "x": 57.2585, + "y": 18.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_G6#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_G6#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_G6#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_G6#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 57.2585, + "y": 18.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_H6", + "uuid": "44402d3f-abcd-48af-8f82-7f9204407ccc", + "name": "eppendorf_96_tiprack_10ul_eptips_H6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 57.2585, + "y": 9.1185, + "z": 35.4 + }, + "position3d": { + "x": 57.2585, + "y": 9.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_H6#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_H6#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_H6#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_H6#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 57.2585, + "y": 9.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_A7", + "uuid": "1054f0df-eea5-4568-8d20-8a26a9b71b6b", + "name": "eppendorf_96_tiprack_10ul_eptips_A7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 66.2585, + "y": 72.1185, + "z": 35.4 + }, + "position3d": { + "x": 66.2585, + "y": 72.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_A7#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_A7#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_A7#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_A7#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 66.2585, + "y": 72.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_B7", + "uuid": "534b7534-d2b3-4eac-b9ef-2a9a1f9b9b77", + "name": "eppendorf_96_tiprack_10ul_eptips_B7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 66.2585, + "y": 63.1185, + "z": 35.4 + }, + "position3d": { + "x": 66.2585, + "y": 63.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_B7#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_B7#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_B7#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_B7#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 66.2585, + "y": 63.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_C7", + "uuid": "ef3ba46c-f2e4-4d96-b156-962d29b0add3", + "name": "eppendorf_96_tiprack_10ul_eptips_C7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 66.2585, + "y": 54.1185, + "z": 35.4 + }, + "position3d": { + "x": 66.2585, + "y": 54.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_C7#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_C7#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_C7#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_C7#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 66.2585, + "y": 54.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_D7", + "uuid": "a6ab182e-3fc7-494e-aa08-f60fe5d99fb7", + "name": "eppendorf_96_tiprack_10ul_eptips_D7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 66.2585, + "y": 45.1185, + "z": 35.4 + }, + "position3d": { + "x": 66.2585, + "y": 45.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_D7#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_D7#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_D7#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_D7#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 66.2585, + "y": 45.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_E7", + "uuid": "80500c91-a1a2-4040-ab39-c76e40dbe788", + "name": "eppendorf_96_tiprack_10ul_eptips_E7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 66.2585, + "y": 36.1185, + "z": 35.4 + }, + "position3d": { + "x": 66.2585, + "y": 36.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_E7#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_E7#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_E7#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_E7#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 66.2585, + "y": 36.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_F7", + "uuid": "b80884ec-36ed-4f85-b643-4da4a8e43edc", + "name": "eppendorf_96_tiprack_10ul_eptips_F7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 66.2585, + "y": 27.1185, + "z": 35.4 + }, + "position3d": { + "x": 66.2585, + "y": 27.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_F7#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_F7#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_F7#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_F7#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 66.2585, + "y": 27.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_G7", + "uuid": "6239113b-e991-4804-8e58-44b2949a32c1", + "name": "eppendorf_96_tiprack_10ul_eptips_G7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 66.2585, + "y": 18.1185, + "z": 35.4 + }, + "position3d": { + "x": 66.2585, + "y": 18.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_G7#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_G7#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_G7#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_G7#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 66.2585, + "y": 18.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_H7", + "uuid": "535f8ac7-5641-44c9-a548-234c3bf867ff", + "name": "eppendorf_96_tiprack_10ul_eptips_H7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 66.2585, + "y": 9.1185, + "z": 35.4 + }, + "position3d": { + "x": 66.2585, + "y": 9.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_H7#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_H7#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_H7#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_H7#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 66.2585, + "y": 9.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_A8", + "uuid": "8f7474de-3648-40e5-b7f2-c217b99d03e0", + "name": "eppendorf_96_tiprack_10ul_eptips_A8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 75.2585, + "y": 72.1185, + "z": 35.4 + }, + "position3d": { + "x": 75.2585, + "y": 72.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_A8#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_A8#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_A8#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_A8#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 75.2585, + "y": 72.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_B8", + "uuid": "71be7d24-9442-4779-ba7b-b73bcf01c8e3", + "name": "eppendorf_96_tiprack_10ul_eptips_B8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 75.2585, + "y": 63.1185, + "z": 35.4 + }, + "position3d": { + "x": 75.2585, + "y": 63.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_B8#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_B8#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_B8#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_B8#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 75.2585, + "y": 63.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_C8", + "uuid": "de75618f-0f16-48d3-b0a6-f14657fb299c", + "name": "eppendorf_96_tiprack_10ul_eptips_C8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 75.2585, + "y": 54.1185, + "z": 35.4 + }, + "position3d": { + "x": 75.2585, + "y": 54.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_C8#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_C8#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_C8#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_C8#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 75.2585, + "y": 54.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_D8", + "uuid": "ed1a68d0-127f-411d-9591-b5bd9355a02b", + "name": "eppendorf_96_tiprack_10ul_eptips_D8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 75.2585, + "y": 45.1185, + "z": 35.4 + }, + "position3d": { + "x": 75.2585, + "y": 45.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_D8#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_D8#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_D8#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_D8#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 75.2585, + "y": 45.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_E8", + "uuid": "99337300-0f6f-43cd-8b3b-8ee249522770", + "name": "eppendorf_96_tiprack_10ul_eptips_E8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 75.2585, + "y": 36.1185, + "z": 35.4 + }, + "position3d": { + "x": 75.2585, + "y": 36.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_E8#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_E8#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_E8#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_E8#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 75.2585, + "y": 36.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_F8", + "uuid": "97319e9a-e5c8-4439-800f-bdbf151c3307", + "name": "eppendorf_96_tiprack_10ul_eptips_F8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 75.2585, + "y": 27.1185, + "z": 35.4 + }, + "position3d": { + "x": 75.2585, + "y": 27.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_F8#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_F8#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_F8#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_F8#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 75.2585, + "y": 27.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_G8", + "uuid": "f257dd46-53eb-4dc9-be34-acfae9afd365", + "name": "eppendorf_96_tiprack_10ul_eptips_G8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 75.2585, + "y": 18.1185, + "z": 35.4 + }, + "position3d": { + "x": 75.2585, + "y": 18.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_G8#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_G8#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_G8#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_G8#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 75.2585, + "y": 18.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_H8", + "uuid": "3b2ec4b6-6e21-41bf-84e1-13252cc95d17", + "name": "eppendorf_96_tiprack_10ul_eptips_H8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 75.2585, + "y": 9.1185, + "z": 35.4 + }, + "position3d": { + "x": 75.2585, + "y": 9.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_H8#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_H8#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_H8#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_H8#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 75.2585, + "y": 9.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_A9", + "uuid": "8ee37e69-941f-4c97-8369-77982d7b982d", + "name": "eppendorf_96_tiprack_10ul_eptips_A9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 84.2585, + "y": 72.1185, + "z": 35.4 + }, + "position3d": { + "x": 84.2585, + "y": 72.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_A9#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_A9#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_A9#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_A9#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 84.2585, + "y": 72.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_B9", + "uuid": "b5c3956f-7692-41a5-a611-fc5b2bcf465a", + "name": "eppendorf_96_tiprack_10ul_eptips_B9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 84.2585, + "y": 63.1185, + "z": 35.4 + }, + "position3d": { + "x": 84.2585, + "y": 63.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_B9#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_B9#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_B9#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_B9#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 84.2585, + "y": 63.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_C9", + "uuid": "7d9e23a5-8766-4dbb-9a66-5e7477f6bdf1", + "name": "eppendorf_96_tiprack_10ul_eptips_C9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 84.2585, + "y": 54.1185, + "z": 35.4 + }, + "position3d": { + "x": 84.2585, + "y": 54.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_C9#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_C9#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_C9#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_C9#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 84.2585, + "y": 54.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_D9", + "uuid": "ae28308b-936f-4a1a-8e54-9e4c1ffda626", + "name": "eppendorf_96_tiprack_10ul_eptips_D9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 84.2585, + "y": 45.1185, + "z": 35.4 + }, + "position3d": { + "x": 84.2585, + "y": 45.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_D9#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_D9#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_D9#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_D9#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 84.2585, + "y": 45.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_E9", + "uuid": "7ec77afe-f135-4e9e-9301-9f78ca8dd705", + "name": "eppendorf_96_tiprack_10ul_eptips_E9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 84.2585, + "y": 36.1185, + "z": 35.4 + }, + "position3d": { + "x": 84.2585, + "y": 36.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_E9#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_E9#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_E9#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_E9#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 84.2585, + "y": 36.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_F9", + "uuid": "22f9201e-7c3a-42c8-a5b0-59c2d94a1858", + "name": "eppendorf_96_tiprack_10ul_eptips_F9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 84.2585, + "y": 27.1185, + "z": 35.4 + }, + "position3d": { + "x": 84.2585, + "y": 27.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_F9#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_F9#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_F9#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_F9#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 84.2585, + "y": 27.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_G9", + "uuid": "cc83d205-c73c-4cd7-966c-8bbb8e430403", + "name": "eppendorf_96_tiprack_10ul_eptips_G9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 84.2585, + "y": 18.1185, + "z": 35.4 + }, + "position3d": { + "x": 84.2585, + "y": 18.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_G9#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_G9#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_G9#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_G9#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 84.2585, + "y": 18.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_H9", + "uuid": "f7fdad0a-9b63-4106-8d07-aff8b26c6e1b", + "name": "eppendorf_96_tiprack_10ul_eptips_H9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 84.2585, + "y": 9.1185, + "z": 35.4 + }, + "position3d": { + "x": 84.2585, + "y": 9.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_H9#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_H9#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_H9#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_H9#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 84.2585, + "y": 9.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_A10", + "uuid": "b102f4f8-6402-463d-9843-6adfe2733258", + "name": "eppendorf_96_tiprack_10ul_eptips_A10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 93.2585, + "y": 72.1185, + "z": 35.4 + }, + "position3d": { + "x": 93.2585, + "y": 72.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_A10#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_A10#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_A10#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_A10#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 93.2585, + "y": 72.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_B10", + "uuid": "75f49ba8-eb4b-44f0-835c-161edc111a7a", + "name": "eppendorf_96_tiprack_10ul_eptips_B10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 93.2585, + "y": 63.1185, + "z": 35.4 + }, + "position3d": { + "x": 93.2585, + "y": 63.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_B10#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_B10#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_B10#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_B10#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 93.2585, + "y": 63.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_C10", + "uuid": "3400e0af-facd-4ac7-b173-e27ab497813d", + "name": "eppendorf_96_tiprack_10ul_eptips_C10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 93.2585, + "y": 54.1185, + "z": 35.4 + }, + "position3d": { + "x": 93.2585, + "y": 54.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_C10#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_C10#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_C10#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_C10#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 93.2585, + "y": 54.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_D10", + "uuid": "9d69816d-dd92-4c81-9f51-9d35bdb4e27d", + "name": "eppendorf_96_tiprack_10ul_eptips_D10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 93.2585, + "y": 45.1185, + "z": 35.4 + }, + "position3d": { + "x": 93.2585, + "y": 45.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_D10#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_D10#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_D10#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_D10#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 93.2585, + "y": 45.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_E10", + "uuid": "fe86b90e-55a5-4870-8d35-e0706756846b", + "name": "eppendorf_96_tiprack_10ul_eptips_E10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 93.2585, + "y": 36.1185, + "z": 35.4 + }, + "position3d": { + "x": 93.2585, + "y": 36.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_E10#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_E10#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_E10#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_E10#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 93.2585, + "y": 36.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_F10", + "uuid": "b340ce6e-8c73-4492-9db9-7ced3c5c0924", + "name": "eppendorf_96_tiprack_10ul_eptips_F10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 93.2585, + "y": 27.1185, + "z": 35.4 + }, + "position3d": { + "x": 93.2585, + "y": 27.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_F10#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_F10#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_F10#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_F10#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 93.2585, + "y": 27.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_G10", + "uuid": "85300691-4bf6-415a-a3a1-28a2173abbeb", + "name": "eppendorf_96_tiprack_10ul_eptips_G10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 93.2585, + "y": 18.1185, + "z": 35.4 + }, + "position3d": { + "x": 93.2585, + "y": 18.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_G10#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_G10#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_G10#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_G10#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 93.2585, + "y": 18.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_H10", + "uuid": "35f89f3b-2dad-4055-b5c1-35b0f25ce528", + "name": "eppendorf_96_tiprack_10ul_eptips_H10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 93.2585, + "y": 9.1185, + "z": 35.4 + }, + "position3d": { + "x": 93.2585, + "y": 9.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_H10#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_H10#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_H10#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_H10#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 93.2585, + "y": 9.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_A11", + "uuid": "903c833b-ad10-4205-8951-04eea5cb5c5b", + "name": "eppendorf_96_tiprack_10ul_eptips_A11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 102.2585, + "y": 72.1185, + "z": 35.4 + }, + "position3d": { + "x": 102.2585, + "y": 72.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_A11#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_A11#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_A11#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_A11#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 102.2585, + "y": 72.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_B11", + "uuid": "bc8388c5-c2b0-4e22-8871-7f4677689980", + "name": "eppendorf_96_tiprack_10ul_eptips_B11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 102.2585, + "y": 63.1185, + "z": 35.4 + }, + "position3d": { + "x": 102.2585, + "y": 63.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_B11#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_B11#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_B11#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_B11#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 102.2585, + "y": 63.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_C11", + "uuid": "979a0772-e0a5-4244-bf16-7f7aadefe980", + "name": "eppendorf_96_tiprack_10ul_eptips_C11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 102.2585, + "y": 54.1185, + "z": 35.4 + }, + "position3d": { + "x": 102.2585, + "y": 54.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_C11#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_C11#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_C11#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_C11#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 102.2585, + "y": 54.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_D11", + "uuid": "c4dfbb86-f028-4b66-ba3e-ef5a608323d9", + "name": "eppendorf_96_tiprack_10ul_eptips_D11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 102.2585, + "y": 45.1185, + "z": 35.4 + }, + "position3d": { + "x": 102.2585, + "y": 45.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_D11#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_D11#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_D11#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_D11#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 102.2585, + "y": 45.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_E11", + "uuid": "a45d39ed-fb1c-4777-b813-7ebe547884b7", + "name": "eppendorf_96_tiprack_10ul_eptips_E11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 102.2585, + "y": 36.1185, + "z": 35.4 + }, + "position3d": { + "x": 102.2585, + "y": 36.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_E11#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_E11#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_E11#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_E11#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 102.2585, + "y": 36.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_F11", + "uuid": "dfef1ff5-5181-437e-8957-2c749e3b0819", + "name": "eppendorf_96_tiprack_10ul_eptips_F11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 102.2585, + "y": 27.1185, + "z": 35.4 + }, + "position3d": { + "x": 102.2585, + "y": 27.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_F11#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_F11#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_F11#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_F11#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 102.2585, + "y": 27.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_G11", + "uuid": "1155765e-4390-4d8f-9bbb-47e12c731d4a", + "name": "eppendorf_96_tiprack_10ul_eptips_G11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 102.2585, + "y": 18.1185, + "z": 35.4 + }, + "position3d": { + "x": 102.2585, + "y": 18.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_G11#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_G11#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_G11#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_G11#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 102.2585, + "y": 18.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_H11", + "uuid": "12acc164-5a24-4ef3-bbfe-e96afb4cfc32", + "name": "eppendorf_96_tiprack_10ul_eptips_H11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 102.2585, + "y": 9.1185, + "z": 35.4 + }, + "position3d": { + "x": 102.2585, + "y": 9.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_H11#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_H11#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_H11#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_H11#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 102.2585, + "y": 9.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_A12", + "uuid": "648d86bc-64e5-483d-880a-e16ff8052c77", + "name": "eppendorf_96_tiprack_10ul_eptips_A12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 111.2585, + "y": 72.1185, + "z": 35.4 + }, + "position3d": { + "x": 111.2585, + "y": 72.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_A12#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_A12#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_A12#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_A12#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 111.2585, + "y": 72.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_B12", + "uuid": "bc0bfc7c-8ac2-434e-a960-59c4b3410fbb", + "name": "eppendorf_96_tiprack_10ul_eptips_B12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 111.2585, + "y": 63.1185, + "z": 35.4 + }, + "position3d": { + "x": 111.2585, + "y": 63.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_B12#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_B12#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_B12#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_B12#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 111.2585, + "y": 63.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_C12", + "uuid": "f2c77cf6-d7ec-4752-bf77-bf20e7fb2233", + "name": "eppendorf_96_tiprack_10ul_eptips_C12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 111.2585, + "y": 54.1185, + "z": 35.4 + }, + "position3d": { + "x": 111.2585, + "y": 54.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_C12#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_C12#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_C12#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_C12#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 111.2585, + "y": 54.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_D12", + "uuid": "1c5827cb-2a61-4562-a2c6-4d673b5eeff8", + "name": "eppendorf_96_tiprack_10ul_eptips_D12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 111.2585, + "y": 45.1185, + "z": 35.4 + }, + "position3d": { + "x": 111.2585, + "y": 45.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_D12#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_D12#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_D12#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_D12#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 111.2585, + "y": 45.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_E12", + "uuid": "25fac444-a991-4478-b36c-7d2bf1d023ef", + "name": "eppendorf_96_tiprack_10ul_eptips_E12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 111.2585, + "y": 36.1185, + "z": 35.4 + }, + "position3d": { + "x": 111.2585, + "y": 36.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_E12#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_E12#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_E12#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_E12#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 111.2585, + "y": 36.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_F12", + "uuid": "8cab8245-d6b3-4a7a-8c7c-9952a02327e0", + "name": "eppendorf_96_tiprack_10ul_eptips_F12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 111.2585, + "y": 27.1185, + "z": 35.4 + }, + "position3d": { + "x": 111.2585, + "y": 27.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_F12#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_F12#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_F12#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_F12#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 111.2585, + "y": 27.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_G12", + "uuid": "43d80eeb-e7fa-45f9-9af9-60ce802678e5", + "name": "eppendorf_96_tiprack_10ul_eptips_G12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 111.2585, + "y": 18.1185, + "z": 35.4 + }, + "position3d": { + "x": 111.2585, + "y": 18.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_G12#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_G12#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_G12#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_G12#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 111.2585, + "y": 18.1185, + "z": 35.4 + } + }, + { + "id": "eppendorf_96_tiprack_10ul_eptips_H12", + "uuid": "a9f51fd9-4459-4f6c-902b-bafc43c2029a", + "name": "eppendorf_96_tiprack_10ul_eptips_H12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ffa71734-7af2-484c-84cc-71c47a3735e5", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 111.2585, + "y": 9.1185, + "z": 35.4 + }, + "position3d": { + "x": 111.2585, + "y": 9.1185, + "z": 35.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_H12#1", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_H12#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + }, + "tip_state": { + "thing": "eppendorf_96_tiprack_10ul_eptips_H12#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "eppendorf_96_tiprack_10ul_eptips_H12#0", + "total_tip_length": 34, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 111.2585, + "y": 9.1185, + "z": 35.4 + } + } + ] + }, + { + "id": "geb_96_tiprack_1000ul", + "category": [ + "tip_racks" + ], + "class": { + "module": "pylabrobot.resources.opentrons.tip_racks:geb_96_tiprack_1000ul", + "type": "pylabrobot" + }, + "description": "Geb 96 tiprack 1000ul", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/opentrons/tip_racks.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "geb_96_tiprack_1000ul", + "uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "name": "geb_96_tiprack_1000ul", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "tip_rack", + "class": "", + "pose": { + "size": { + "depth": 100.25, + "width": 127.75, + "height": 85.5 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipRack", + "size_x": 127.75, + "size_y": 85.5, + "size_z": 100.25, + "category": "tip_rack", + "model": "GEB 96 Tip Rack 1000 µL", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "geb_96_tiprack_1000ul_A1", + "B1": "geb_96_tiprack_1000ul_B1", + "C1": "geb_96_tiprack_1000ul_C1", + "D1": "geb_96_tiprack_1000ul_D1", + "E1": "geb_96_tiprack_1000ul_E1", + "F1": "geb_96_tiprack_1000ul_F1", + "G1": "geb_96_tiprack_1000ul_G1", + "H1": "geb_96_tiprack_1000ul_H1", + "A2": "geb_96_tiprack_1000ul_A2", + "B2": "geb_96_tiprack_1000ul_B2", + "C2": "geb_96_tiprack_1000ul_C2", + "D2": "geb_96_tiprack_1000ul_D2", + "E2": "geb_96_tiprack_1000ul_E2", + "F2": "geb_96_tiprack_1000ul_F2", + "G2": "geb_96_tiprack_1000ul_G2", + "H2": "geb_96_tiprack_1000ul_H2", + "A3": "geb_96_tiprack_1000ul_A3", + "B3": "geb_96_tiprack_1000ul_B3", + "C3": "geb_96_tiprack_1000ul_C3", + "D3": "geb_96_tiprack_1000ul_D3", + "E3": "geb_96_tiprack_1000ul_E3", + "F3": "geb_96_tiprack_1000ul_F3", + "G3": "geb_96_tiprack_1000ul_G3", + "H3": "geb_96_tiprack_1000ul_H3", + "A4": "geb_96_tiprack_1000ul_A4", + "B4": "geb_96_tiprack_1000ul_B4", + "C4": "geb_96_tiprack_1000ul_C4", + "D4": "geb_96_tiprack_1000ul_D4", + "E4": "geb_96_tiprack_1000ul_E4", + "F4": "geb_96_tiprack_1000ul_F4", + "G4": "geb_96_tiprack_1000ul_G4", + "H4": "geb_96_tiprack_1000ul_H4", + "A5": "geb_96_tiprack_1000ul_A5", + "B5": "geb_96_tiprack_1000ul_B5", + "C5": "geb_96_tiprack_1000ul_C5", + "D5": "geb_96_tiprack_1000ul_D5", + "E5": "geb_96_tiprack_1000ul_E5", + "F5": "geb_96_tiprack_1000ul_F5", + "G5": "geb_96_tiprack_1000ul_G5", + "H5": "geb_96_tiprack_1000ul_H5", + "A6": "geb_96_tiprack_1000ul_A6", + "B6": "geb_96_tiprack_1000ul_B6", + "C6": "geb_96_tiprack_1000ul_C6", + "D6": "geb_96_tiprack_1000ul_D6", + "E6": "geb_96_tiprack_1000ul_E6", + "F6": "geb_96_tiprack_1000ul_F6", + "G6": "geb_96_tiprack_1000ul_G6", + "H6": "geb_96_tiprack_1000ul_H6", + "A7": "geb_96_tiprack_1000ul_A7", + "B7": "geb_96_tiprack_1000ul_B7", + "C7": "geb_96_tiprack_1000ul_C7", + "D7": "geb_96_tiprack_1000ul_D7", + "E7": "geb_96_tiprack_1000ul_E7", + "F7": "geb_96_tiprack_1000ul_F7", + "G7": "geb_96_tiprack_1000ul_G7", + "H7": "geb_96_tiprack_1000ul_H7", + "A8": "geb_96_tiprack_1000ul_A8", + "B8": "geb_96_tiprack_1000ul_B8", + "C8": "geb_96_tiprack_1000ul_C8", + "D8": "geb_96_tiprack_1000ul_D8", + "E8": "geb_96_tiprack_1000ul_E8", + "F8": "geb_96_tiprack_1000ul_F8", + "G8": "geb_96_tiprack_1000ul_G8", + "H8": "geb_96_tiprack_1000ul_H8", + "A9": "geb_96_tiprack_1000ul_A9", + "B9": "geb_96_tiprack_1000ul_B9", + "C9": "geb_96_tiprack_1000ul_C9", + "D9": "geb_96_tiprack_1000ul_D9", + "E9": "geb_96_tiprack_1000ul_E9", + "F9": "geb_96_tiprack_1000ul_F9", + "G9": "geb_96_tiprack_1000ul_G9", + "H9": "geb_96_tiprack_1000ul_H9", + "A10": "geb_96_tiprack_1000ul_A10", + "B10": "geb_96_tiprack_1000ul_B10", + "C10": "geb_96_tiprack_1000ul_C10", + "D10": "geb_96_tiprack_1000ul_D10", + "E10": "geb_96_tiprack_1000ul_E10", + "F10": "geb_96_tiprack_1000ul_F10", + "G10": "geb_96_tiprack_1000ul_G10", + "H10": "geb_96_tiprack_1000ul_H10", + "A11": "geb_96_tiprack_1000ul_A11", + "B11": "geb_96_tiprack_1000ul_B11", + "C11": "geb_96_tiprack_1000ul_C11", + "D11": "geb_96_tiprack_1000ul_D11", + "E11": "geb_96_tiprack_1000ul_E11", + "F11": "geb_96_tiprack_1000ul_F11", + "G11": "geb_96_tiprack_1000ul_G11", + "H11": "geb_96_tiprack_1000ul_H11", + "A12": "geb_96_tiprack_1000ul_A12", + "B12": "geb_96_tiprack_1000ul_B12", + "C12": "geb_96_tiprack_1000ul_C12", + "D12": "geb_96_tiprack_1000ul_D12", + "E12": "geb_96_tiprack_1000ul_E12", + "F12": "geb_96_tiprack_1000ul_F12", + "G12": "geb_96_tiprack_1000ul_G12", + "H12": "geb_96_tiprack_1000ul_H12" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "geb_96_tiprack_1000ul_A1", + "uuid": "b2e19c7b-b157-4747-a920-ca4742decdda", + "name": "geb_96_tiprack_1000ul_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.5625, + "y": 71.5625, + "z": 18.25 + }, + "position3d": { + "x": 11.5625, + "y": 71.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_A1#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_A1#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_A1#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_A1#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.5625, + "y": 71.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_B1", + "uuid": "6221f50e-7907-4aff-aa8e-9c10db25f741", + "name": "geb_96_tiprack_1000ul_B1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.5625, + "y": 62.5625, + "z": 18.25 + }, + "position3d": { + "x": 11.5625, + "y": 62.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_B1#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_B1#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_B1#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_B1#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.5625, + "y": 62.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_C1", + "uuid": "0539aafd-6388-43ad-8528-1dc7fd18b3ab", + "name": "geb_96_tiprack_1000ul_C1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.5625, + "y": 53.5625, + "z": 18.25 + }, + "position3d": { + "x": 11.5625, + "y": 53.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_C1#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_C1#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_C1#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_C1#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.5625, + "y": 53.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_D1", + "uuid": "df361190-db98-49d7-9d12-00f48299b7a2", + "name": "geb_96_tiprack_1000ul_D1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.5625, + "y": 44.5625, + "z": 18.25 + }, + "position3d": { + "x": 11.5625, + "y": 44.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_D1#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_D1#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_D1#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_D1#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.5625, + "y": 44.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_E1", + "uuid": "4c7185e4-05ff-42f5-8298-9ae83c1cb342", + "name": "geb_96_tiprack_1000ul_E1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.5625, + "y": 35.5625, + "z": 18.25 + }, + "position3d": { + "x": 11.5625, + "y": 35.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_E1#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_E1#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_E1#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_E1#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.5625, + "y": 35.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_F1", + "uuid": "fc0a2082-918f-4d42-8ad9-108399f360b4", + "name": "geb_96_tiprack_1000ul_F1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.5625, + "y": 26.5625, + "z": 18.25 + }, + "position3d": { + "x": 11.5625, + "y": 26.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_F1#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_F1#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_F1#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_F1#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.5625, + "y": 26.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_G1", + "uuid": "9d0436a4-509d-41b7-9ef7-ea90dc9af58f", + "name": "geb_96_tiprack_1000ul_G1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.5625, + "y": 17.5625, + "z": 18.25 + }, + "position3d": { + "x": 11.5625, + "y": 17.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_G1#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_G1#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_G1#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_G1#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.5625, + "y": 17.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_H1", + "uuid": "2517cbf5-2b20-492c-b3d9-1313ba5ea1fc", + "name": "geb_96_tiprack_1000ul_H1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.5625, + "y": 8.5625, + "z": 18.25 + }, + "position3d": { + "x": 11.5625, + "y": 8.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_H1#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_H1#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_H1#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_H1#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.5625, + "y": 8.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_A2", + "uuid": "af6ca044-58c7-4a69-8d65-29fd4ab3bc88", + "name": "geb_96_tiprack_1000ul_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.5625, + "y": 71.5625, + "z": 18.25 + }, + "position3d": { + "x": 20.5625, + "y": 71.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_A2#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_A2#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_A2#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_A2#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.5625, + "y": 71.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_B2", + "uuid": "3c0dfe84-cd5b-45d4-b567-c4904b32dea7", + "name": "geb_96_tiprack_1000ul_B2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.5625, + "y": 62.5625, + "z": 18.25 + }, + "position3d": { + "x": 20.5625, + "y": 62.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_B2#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_B2#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_B2#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_B2#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.5625, + "y": 62.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_C2", + "uuid": "7d3fbd45-f42c-42d9-ae59-1223622bd81d", + "name": "geb_96_tiprack_1000ul_C2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.5625, + "y": 53.5625, + "z": 18.25 + }, + "position3d": { + "x": 20.5625, + "y": 53.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_C2#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_C2#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_C2#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_C2#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.5625, + "y": 53.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_D2", + "uuid": "c80b8f80-0cef-4031-b60b-4c3a7a8f5ef2", + "name": "geb_96_tiprack_1000ul_D2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.5625, + "y": 44.5625, + "z": 18.25 + }, + "position3d": { + "x": 20.5625, + "y": 44.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_D2#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_D2#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_D2#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_D2#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.5625, + "y": 44.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_E2", + "uuid": "2f940790-8064-4e07-986a-9dad58a74786", + "name": "geb_96_tiprack_1000ul_E2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.5625, + "y": 35.5625, + "z": 18.25 + }, + "position3d": { + "x": 20.5625, + "y": 35.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_E2#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_E2#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_E2#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_E2#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.5625, + "y": 35.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_F2", + "uuid": "e3d17208-3680-420d-bfd3-74f55c90aec4", + "name": "geb_96_tiprack_1000ul_F2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.5625, + "y": 26.5625, + "z": 18.25 + }, + "position3d": { + "x": 20.5625, + "y": 26.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_F2#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_F2#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_F2#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_F2#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.5625, + "y": 26.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_G2", + "uuid": "c474962f-e0a7-4f44-988f-fb0f5e2d6c86", + "name": "geb_96_tiprack_1000ul_G2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.5625, + "y": 17.5625, + "z": 18.25 + }, + "position3d": { + "x": 20.5625, + "y": 17.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_G2#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_G2#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_G2#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_G2#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.5625, + "y": 17.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_H2", + "uuid": "c6908568-6d75-4012-af87-21bbfeb976ee", + "name": "geb_96_tiprack_1000ul_H2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.5625, + "y": 8.5625, + "z": 18.25 + }, + "position3d": { + "x": 20.5625, + "y": 8.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_H2#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_H2#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_H2#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_H2#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.5625, + "y": 8.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_A3", + "uuid": "b0dd372c-fa8a-4e32-b591-4e538518f079", + "name": "geb_96_tiprack_1000ul_A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.5625, + "y": 71.5625, + "z": 18.25 + }, + "position3d": { + "x": 29.5625, + "y": 71.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_A3#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_A3#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_A3#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_A3#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.5625, + "y": 71.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_B3", + "uuid": "5b669e85-5e43-4c78-9708-516a501df7e6", + "name": "geb_96_tiprack_1000ul_B3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.5625, + "y": 62.5625, + "z": 18.25 + }, + "position3d": { + "x": 29.5625, + "y": 62.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_B3#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_B3#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_B3#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_B3#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.5625, + "y": 62.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_C3", + "uuid": "f5455943-63f7-4d84-aa11-979a0d9a7aac", + "name": "geb_96_tiprack_1000ul_C3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.5625, + "y": 53.5625, + "z": 18.25 + }, + "position3d": { + "x": 29.5625, + "y": 53.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_C3#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_C3#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_C3#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_C3#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.5625, + "y": 53.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_D3", + "uuid": "5f8d1ab1-5604-43ec-8e33-229da49d082d", + "name": "geb_96_tiprack_1000ul_D3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.5625, + "y": 44.5625, + "z": 18.25 + }, + "position3d": { + "x": 29.5625, + "y": 44.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_D3#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_D3#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_D3#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_D3#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.5625, + "y": 44.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_E3", + "uuid": "c54a78b5-8567-4dd2-94e4-70ee7b63655d", + "name": "geb_96_tiprack_1000ul_E3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.5625, + "y": 35.5625, + "z": 18.25 + }, + "position3d": { + "x": 29.5625, + "y": 35.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_E3#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_E3#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_E3#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_E3#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.5625, + "y": 35.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_F3", + "uuid": "81d7dc99-286a-4ba8-927a-13d6d1184687", + "name": "geb_96_tiprack_1000ul_F3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.5625, + "y": 26.5625, + "z": 18.25 + }, + "position3d": { + "x": 29.5625, + "y": 26.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_F3#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_F3#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_F3#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_F3#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.5625, + "y": 26.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_G3", + "uuid": "1ae9ab5c-84bd-48b9-9383-00a1ef6d0089", + "name": "geb_96_tiprack_1000ul_G3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.5625, + "y": 17.5625, + "z": 18.25 + }, + "position3d": { + "x": 29.5625, + "y": 17.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_G3#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_G3#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_G3#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_G3#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.5625, + "y": 17.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_H3", + "uuid": "1296c0b2-be84-4425-a839-5bb0675fe9a5", + "name": "geb_96_tiprack_1000ul_H3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.5625, + "y": 8.5625, + "z": 18.25 + }, + "position3d": { + "x": 29.5625, + "y": 8.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_H3#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_H3#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_H3#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_H3#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.5625, + "y": 8.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_A4", + "uuid": "b3468f20-595a-4adf-81fe-31c3469ee59a", + "name": "geb_96_tiprack_1000ul_A4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.5625, + "y": 71.5625, + "z": 18.25 + }, + "position3d": { + "x": 38.5625, + "y": 71.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_A4#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_A4#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_A4#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_A4#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.5625, + "y": 71.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_B4", + "uuid": "9f5e2ace-48ce-4aec-a7f2-f93984acfbd4", + "name": "geb_96_tiprack_1000ul_B4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.5625, + "y": 62.5625, + "z": 18.25 + }, + "position3d": { + "x": 38.5625, + "y": 62.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_B4#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_B4#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_B4#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_B4#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.5625, + "y": 62.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_C4", + "uuid": "a8f7eaba-ccf6-4fec-a847-934e65ef1803", + "name": "geb_96_tiprack_1000ul_C4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.5625, + "y": 53.5625, + "z": 18.25 + }, + "position3d": { + "x": 38.5625, + "y": 53.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_C4#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_C4#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_C4#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_C4#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.5625, + "y": 53.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_D4", + "uuid": "ac0d1f68-4fb9-4f5c-8cc7-21bb997d8664", + "name": "geb_96_tiprack_1000ul_D4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.5625, + "y": 44.5625, + "z": 18.25 + }, + "position3d": { + "x": 38.5625, + "y": 44.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_D4#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_D4#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_D4#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_D4#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.5625, + "y": 44.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_E4", + "uuid": "ed236f3d-b80c-4ba7-8236-b503fce879ad", + "name": "geb_96_tiprack_1000ul_E4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.5625, + "y": 35.5625, + "z": 18.25 + }, + "position3d": { + "x": 38.5625, + "y": 35.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_E4#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_E4#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_E4#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_E4#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.5625, + "y": 35.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_F4", + "uuid": "91a57b7f-8505-44b4-9562-2d8bd984c607", + "name": "geb_96_tiprack_1000ul_F4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.5625, + "y": 26.5625, + "z": 18.25 + }, + "position3d": { + "x": 38.5625, + "y": 26.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_F4#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_F4#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_F4#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_F4#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.5625, + "y": 26.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_G4", + "uuid": "b4f3ea43-a86a-4d09-84c7-cbce699f4773", + "name": "geb_96_tiprack_1000ul_G4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.5625, + "y": 17.5625, + "z": 18.25 + }, + "position3d": { + "x": 38.5625, + "y": 17.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_G4#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_G4#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_G4#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_G4#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.5625, + "y": 17.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_H4", + "uuid": "80a98a4f-2603-4a2e-843f-3a6d3063e1bb", + "name": "geb_96_tiprack_1000ul_H4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.5625, + "y": 8.5625, + "z": 18.25 + }, + "position3d": { + "x": 38.5625, + "y": 8.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_H4#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_H4#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_H4#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_H4#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.5625, + "y": 8.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_A5", + "uuid": "1c2f927e-8fd7-4ecd-8699-272c4fee35c9", + "name": "geb_96_tiprack_1000ul_A5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.5625, + "y": 71.5625, + "z": 18.25 + }, + "position3d": { + "x": 47.5625, + "y": 71.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_A5#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_A5#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_A5#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_A5#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.5625, + "y": 71.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_B5", + "uuid": "9d085d24-627a-4ece-8dbd-16737781a936", + "name": "geb_96_tiprack_1000ul_B5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.5625, + "y": 62.5625, + "z": 18.25 + }, + "position3d": { + "x": 47.5625, + "y": 62.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_B5#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_B5#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_B5#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_B5#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.5625, + "y": 62.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_C5", + "uuid": "b1e68464-b220-4c2f-8540-b23a5999a0bc", + "name": "geb_96_tiprack_1000ul_C5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.5625, + "y": 53.5625, + "z": 18.25 + }, + "position3d": { + "x": 47.5625, + "y": 53.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_C5#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_C5#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_C5#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_C5#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.5625, + "y": 53.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_D5", + "uuid": "01ed77f4-c459-4229-afc6-9c970fdb2492", + "name": "geb_96_tiprack_1000ul_D5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.5625, + "y": 44.5625, + "z": 18.25 + }, + "position3d": { + "x": 47.5625, + "y": 44.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_D5#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_D5#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_D5#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_D5#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.5625, + "y": 44.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_E5", + "uuid": "92890377-24f6-4cc3-844c-f4f1c09b33da", + "name": "geb_96_tiprack_1000ul_E5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.5625, + "y": 35.5625, + "z": 18.25 + }, + "position3d": { + "x": 47.5625, + "y": 35.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_E5#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_E5#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_E5#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_E5#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.5625, + "y": 35.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_F5", + "uuid": "5b13f2aa-cfa6-4748-b8c3-59affe1e0cbd", + "name": "geb_96_tiprack_1000ul_F5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.5625, + "y": 26.5625, + "z": 18.25 + }, + "position3d": { + "x": 47.5625, + "y": 26.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_F5#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_F5#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_F5#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_F5#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.5625, + "y": 26.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_G5", + "uuid": "ee642536-f13c-4ca3-ba63-7f2c2d065232", + "name": "geb_96_tiprack_1000ul_G5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.5625, + "y": 17.5625, + "z": 18.25 + }, + "position3d": { + "x": 47.5625, + "y": 17.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_G5#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_G5#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_G5#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_G5#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.5625, + "y": 17.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_H5", + "uuid": "5b256655-21c4-4dbb-83b7-310298c3c470", + "name": "geb_96_tiprack_1000ul_H5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.5625, + "y": 8.5625, + "z": 18.25 + }, + "position3d": { + "x": 47.5625, + "y": 8.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_H5#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_H5#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_H5#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_H5#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.5625, + "y": 8.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_A6", + "uuid": "c392aba8-646a-4853-b507-cc46365c310c", + "name": "geb_96_tiprack_1000ul_A6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.5625, + "y": 71.5625, + "z": 18.25 + }, + "position3d": { + "x": 56.5625, + "y": 71.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_A6#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_A6#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_A6#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_A6#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.5625, + "y": 71.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_B6", + "uuid": "46be2e1c-3ed0-438a-9c73-dc50f190cd8c", + "name": "geb_96_tiprack_1000ul_B6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.5625, + "y": 62.5625, + "z": 18.25 + }, + "position3d": { + "x": 56.5625, + "y": 62.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_B6#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_B6#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_B6#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_B6#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.5625, + "y": 62.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_C6", + "uuid": "6cdcd441-b9df-4123-b603-fa1bf140d12f", + "name": "geb_96_tiprack_1000ul_C6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.5625, + "y": 53.5625, + "z": 18.25 + }, + "position3d": { + "x": 56.5625, + "y": 53.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_C6#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_C6#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_C6#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_C6#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.5625, + "y": 53.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_D6", + "uuid": "b1ccc686-50db-4265-a5c6-1e38df3a7e6a", + "name": "geb_96_tiprack_1000ul_D6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.5625, + "y": 44.5625, + "z": 18.25 + }, + "position3d": { + "x": 56.5625, + "y": 44.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_D6#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_D6#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_D6#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_D6#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.5625, + "y": 44.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_E6", + "uuid": "cb3351f1-5501-497f-aca9-44418eeb0d9d", + "name": "geb_96_tiprack_1000ul_E6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.5625, + "y": 35.5625, + "z": 18.25 + }, + "position3d": { + "x": 56.5625, + "y": 35.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_E6#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_E6#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_E6#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_E6#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.5625, + "y": 35.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_F6", + "uuid": "1fc032b6-d016-4104-80f5-41d71f242d72", + "name": "geb_96_tiprack_1000ul_F6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.5625, + "y": 26.5625, + "z": 18.25 + }, + "position3d": { + "x": 56.5625, + "y": 26.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_F6#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_F6#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_F6#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_F6#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.5625, + "y": 26.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_G6", + "uuid": "d4c4a2d8-cc0e-4b1f-b014-9b3c7f738631", + "name": "geb_96_tiprack_1000ul_G6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.5625, + "y": 17.5625, + "z": 18.25 + }, + "position3d": { + "x": 56.5625, + "y": 17.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_G6#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_G6#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_G6#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_G6#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.5625, + "y": 17.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_H6", + "uuid": "faa3bbd6-67c5-4939-a77c-597d6fbab215", + "name": "geb_96_tiprack_1000ul_H6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.5625, + "y": 8.5625, + "z": 18.25 + }, + "position3d": { + "x": 56.5625, + "y": 8.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_H6#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_H6#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_H6#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_H6#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.5625, + "y": 8.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_A7", + "uuid": "750ab463-2d87-4eec-8ac1-fdd40f262e61", + "name": "geb_96_tiprack_1000ul_A7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.5625, + "y": 71.5625, + "z": 18.25 + }, + "position3d": { + "x": 65.5625, + "y": 71.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_A7#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_A7#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_A7#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_A7#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.5625, + "y": 71.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_B7", + "uuid": "9b59bb4b-b12e-47f9-9b6a-27930a2ce567", + "name": "geb_96_tiprack_1000ul_B7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.5625, + "y": 62.5625, + "z": 18.25 + }, + "position3d": { + "x": 65.5625, + "y": 62.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_B7#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_B7#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_B7#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_B7#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.5625, + "y": 62.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_C7", + "uuid": "4d123884-d7db-47c0-b0b4-1c8851ff853a", + "name": "geb_96_tiprack_1000ul_C7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.5625, + "y": 53.5625, + "z": 18.25 + }, + "position3d": { + "x": 65.5625, + "y": 53.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_C7#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_C7#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_C7#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_C7#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.5625, + "y": 53.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_D7", + "uuid": "609d0627-4e37-46a4-a3f4-e0aa3be15a3f", + "name": "geb_96_tiprack_1000ul_D7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.5625, + "y": 44.5625, + "z": 18.25 + }, + "position3d": { + "x": 65.5625, + "y": 44.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_D7#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_D7#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_D7#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_D7#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.5625, + "y": 44.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_E7", + "uuid": "14f33fd2-3e7a-492d-bf15-07cf758bfdbd", + "name": "geb_96_tiprack_1000ul_E7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.5625, + "y": 35.5625, + "z": 18.25 + }, + "position3d": { + "x": 65.5625, + "y": 35.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_E7#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_E7#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_E7#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_E7#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.5625, + "y": 35.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_F7", + "uuid": "c7444be1-be80-4d20-a432-c2fb9a6fc80a", + "name": "geb_96_tiprack_1000ul_F7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.5625, + "y": 26.5625, + "z": 18.25 + }, + "position3d": { + "x": 65.5625, + "y": 26.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_F7#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_F7#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_F7#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_F7#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.5625, + "y": 26.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_G7", + "uuid": "f72132c2-33a9-42d6-9710-d1a771674c11", + "name": "geb_96_tiprack_1000ul_G7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.5625, + "y": 17.5625, + "z": 18.25 + }, + "position3d": { + "x": 65.5625, + "y": 17.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_G7#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_G7#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_G7#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_G7#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.5625, + "y": 17.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_H7", + "uuid": "df8afc35-abd9-4d03-8760-f604a930a908", + "name": "geb_96_tiprack_1000ul_H7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.5625, + "y": 8.5625, + "z": 18.25 + }, + "position3d": { + "x": 65.5625, + "y": 8.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_H7#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_H7#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_H7#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_H7#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.5625, + "y": 8.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_A8", + "uuid": "1190fdd3-1e08-423a-938c-900fe839ddb7", + "name": "geb_96_tiprack_1000ul_A8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.5625, + "y": 71.5625, + "z": 18.25 + }, + "position3d": { + "x": 74.5625, + "y": 71.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_A8#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_A8#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_A8#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_A8#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.5625, + "y": 71.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_B8", + "uuid": "8a79bdf5-c2b5-4fd2-a530-8647c2357a5e", + "name": "geb_96_tiprack_1000ul_B8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.5625, + "y": 62.5625, + "z": 18.25 + }, + "position3d": { + "x": 74.5625, + "y": 62.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_B8#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_B8#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_B8#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_B8#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.5625, + "y": 62.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_C8", + "uuid": "2b5dc0cf-87aa-435d-bebf-317ee0c1edfc", + "name": "geb_96_tiprack_1000ul_C8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.5625, + "y": 53.5625, + "z": 18.25 + }, + "position3d": { + "x": 74.5625, + "y": 53.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_C8#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_C8#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_C8#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_C8#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.5625, + "y": 53.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_D8", + "uuid": "74de415a-819f-40f5-9843-0dd837b814b7", + "name": "geb_96_tiprack_1000ul_D8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.5625, + "y": 44.5625, + "z": 18.25 + }, + "position3d": { + "x": 74.5625, + "y": 44.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_D8#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_D8#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_D8#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_D8#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.5625, + "y": 44.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_E8", + "uuid": "64459901-270d-4577-be39-f20b4edb3362", + "name": "geb_96_tiprack_1000ul_E8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.5625, + "y": 35.5625, + "z": 18.25 + }, + "position3d": { + "x": 74.5625, + "y": 35.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_E8#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_E8#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_E8#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_E8#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.5625, + "y": 35.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_F8", + "uuid": "f7fd6956-66d6-462e-9db7-903a63d1c6a6", + "name": "geb_96_tiprack_1000ul_F8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.5625, + "y": 26.5625, + "z": 18.25 + }, + "position3d": { + "x": 74.5625, + "y": 26.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_F8#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_F8#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_F8#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_F8#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.5625, + "y": 26.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_G8", + "uuid": "e020fcba-bd2d-48c7-92d2-c7d9c95b0b49", + "name": "geb_96_tiprack_1000ul_G8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.5625, + "y": 17.5625, + "z": 18.25 + }, + "position3d": { + "x": 74.5625, + "y": 17.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_G8#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_G8#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_G8#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_G8#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.5625, + "y": 17.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_H8", + "uuid": "de83030f-67bb-4963-af12-58d1f17a8154", + "name": "geb_96_tiprack_1000ul_H8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.5625, + "y": 8.5625, + "z": 18.25 + }, + "position3d": { + "x": 74.5625, + "y": 8.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_H8#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_H8#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_H8#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_H8#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.5625, + "y": 8.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_A9", + "uuid": "665ab337-1306-44c4-9ec3-84fe90cd4090", + "name": "geb_96_tiprack_1000ul_A9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.5625, + "y": 71.5625, + "z": 18.25 + }, + "position3d": { + "x": 83.5625, + "y": 71.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_A9#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_A9#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_A9#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_A9#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.5625, + "y": 71.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_B9", + "uuid": "510927c1-74b9-4950-8286-02baac902238", + "name": "geb_96_tiprack_1000ul_B9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.5625, + "y": 62.5625, + "z": 18.25 + }, + "position3d": { + "x": 83.5625, + "y": 62.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_B9#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_B9#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_B9#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_B9#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.5625, + "y": 62.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_C9", + "uuid": "5329d0be-279a-4dbf-bf4f-d7eeab9a1583", + "name": "geb_96_tiprack_1000ul_C9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.5625, + "y": 53.5625, + "z": 18.25 + }, + "position3d": { + "x": 83.5625, + "y": 53.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_C9#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_C9#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_C9#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_C9#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.5625, + "y": 53.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_D9", + "uuid": "e7d30090-a23c-417e-9e6c-53028b5fbac0", + "name": "geb_96_tiprack_1000ul_D9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.5625, + "y": 44.5625, + "z": 18.25 + }, + "position3d": { + "x": 83.5625, + "y": 44.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_D9#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_D9#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_D9#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_D9#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.5625, + "y": 44.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_E9", + "uuid": "e938847b-d4c8-472b-8e7f-dcadd1b81503", + "name": "geb_96_tiprack_1000ul_E9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.5625, + "y": 35.5625, + "z": 18.25 + }, + "position3d": { + "x": 83.5625, + "y": 35.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_E9#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_E9#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_E9#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_E9#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.5625, + "y": 35.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_F9", + "uuid": "5665cb05-d8bf-43b2-9219-ff194fcc555f", + "name": "geb_96_tiprack_1000ul_F9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.5625, + "y": 26.5625, + "z": 18.25 + }, + "position3d": { + "x": 83.5625, + "y": 26.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_F9#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_F9#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_F9#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_F9#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.5625, + "y": 26.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_G9", + "uuid": "59eb0e90-9250-49cf-ae35-5138bac882de", + "name": "geb_96_tiprack_1000ul_G9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.5625, + "y": 17.5625, + "z": 18.25 + }, + "position3d": { + "x": 83.5625, + "y": 17.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_G9#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_G9#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_G9#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_G9#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.5625, + "y": 17.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_H9", + "uuid": "3efba940-2149-4d9f-b8e4-ac59454cf7a3", + "name": "geb_96_tiprack_1000ul_H9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.5625, + "y": 8.5625, + "z": 18.25 + }, + "position3d": { + "x": 83.5625, + "y": 8.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_H9#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_H9#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_H9#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_H9#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.5625, + "y": 8.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_A10", + "uuid": "2e497adc-46f5-4608-b5ef-f4a693d09bc1", + "name": "geb_96_tiprack_1000ul_A10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.5625, + "y": 71.5625, + "z": 18.25 + }, + "position3d": { + "x": 92.5625, + "y": 71.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_A10#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_A10#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_A10#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_A10#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.5625, + "y": 71.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_B10", + "uuid": "8854bd7d-e2bd-42a9-8c5b-a42aa686d538", + "name": "geb_96_tiprack_1000ul_B10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.5625, + "y": 62.5625, + "z": 18.25 + }, + "position3d": { + "x": 92.5625, + "y": 62.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_B10#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_B10#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_B10#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_B10#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.5625, + "y": 62.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_C10", + "uuid": "81efb46b-9686-4afa-bc1d-20b006310041", + "name": "geb_96_tiprack_1000ul_C10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.5625, + "y": 53.5625, + "z": 18.25 + }, + "position3d": { + "x": 92.5625, + "y": 53.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_C10#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_C10#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_C10#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_C10#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.5625, + "y": 53.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_D10", + "uuid": "ad6a11de-ae42-43a3-8661-f34118aadf13", + "name": "geb_96_tiprack_1000ul_D10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.5625, + "y": 44.5625, + "z": 18.25 + }, + "position3d": { + "x": 92.5625, + "y": 44.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_D10#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_D10#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_D10#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_D10#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.5625, + "y": 44.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_E10", + "uuid": "134de71c-ebab-4882-a2a9-be3b5fc85a8c", + "name": "geb_96_tiprack_1000ul_E10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.5625, + "y": 35.5625, + "z": 18.25 + }, + "position3d": { + "x": 92.5625, + "y": 35.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_E10#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_E10#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_E10#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_E10#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.5625, + "y": 35.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_F10", + "uuid": "9aa22e9f-bf73-4a5b-9fea-baea18ef6d0a", + "name": "geb_96_tiprack_1000ul_F10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.5625, + "y": 26.5625, + "z": 18.25 + }, + "position3d": { + "x": 92.5625, + "y": 26.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_F10#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_F10#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_F10#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_F10#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.5625, + "y": 26.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_G10", + "uuid": "4d807036-d81e-4a5f-a2a3-a53f76d4cbfe", + "name": "geb_96_tiprack_1000ul_G10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.5625, + "y": 17.5625, + "z": 18.25 + }, + "position3d": { + "x": 92.5625, + "y": 17.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_G10#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_G10#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_G10#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_G10#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.5625, + "y": 17.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_H10", + "uuid": "7f16fa33-0375-4e77-a99d-73b6e16e978f", + "name": "geb_96_tiprack_1000ul_H10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.5625, + "y": 8.5625, + "z": 18.25 + }, + "position3d": { + "x": 92.5625, + "y": 8.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_H10#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_H10#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_H10#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_H10#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.5625, + "y": 8.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_A11", + "uuid": "24546d7b-204c-4799-8000-bdc19abdf079", + "name": "geb_96_tiprack_1000ul_A11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.5625, + "y": 71.5625, + "z": 18.25 + }, + "position3d": { + "x": 101.5625, + "y": 71.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_A11#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_A11#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_A11#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_A11#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.5625, + "y": 71.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_B11", + "uuid": "a69f7414-ecf3-4850-844f-0492d4a490c5", + "name": "geb_96_tiprack_1000ul_B11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.5625, + "y": 62.5625, + "z": 18.25 + }, + "position3d": { + "x": 101.5625, + "y": 62.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_B11#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_B11#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_B11#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_B11#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.5625, + "y": 62.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_C11", + "uuid": "3e43a0a3-33f6-4f9f-8e7f-67e6d208a08c", + "name": "geb_96_tiprack_1000ul_C11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.5625, + "y": 53.5625, + "z": 18.25 + }, + "position3d": { + "x": 101.5625, + "y": 53.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_C11#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_C11#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_C11#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_C11#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.5625, + "y": 53.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_D11", + "uuid": "2d233d51-0e2e-4f7a-8a78-95e727f56273", + "name": "geb_96_tiprack_1000ul_D11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.5625, + "y": 44.5625, + "z": 18.25 + }, + "position3d": { + "x": 101.5625, + "y": 44.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_D11#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_D11#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_D11#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_D11#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.5625, + "y": 44.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_E11", + "uuid": "386169ba-a77d-4a0b-9b34-06296aa1aabd", + "name": "geb_96_tiprack_1000ul_E11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.5625, + "y": 35.5625, + "z": 18.25 + }, + "position3d": { + "x": 101.5625, + "y": 35.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_E11#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_E11#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_E11#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_E11#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.5625, + "y": 35.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_F11", + "uuid": "26e8d0ab-cd73-4d9f-ad01-ea5c5a6db6b8", + "name": "geb_96_tiprack_1000ul_F11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.5625, + "y": 26.5625, + "z": 18.25 + }, + "position3d": { + "x": 101.5625, + "y": 26.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_F11#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_F11#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_F11#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_F11#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.5625, + "y": 26.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_G11", + "uuid": "a893f065-ec38-4fd9-b1a5-94b392040993", + "name": "geb_96_tiprack_1000ul_G11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.5625, + "y": 17.5625, + "z": 18.25 + }, + "position3d": { + "x": 101.5625, + "y": 17.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_G11#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_G11#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_G11#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_G11#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.5625, + "y": 17.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_H11", + "uuid": "57c71b60-561f-45a4-9ea4-dd7a3d7a1574", + "name": "geb_96_tiprack_1000ul_H11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.5625, + "y": 8.5625, + "z": 18.25 + }, + "position3d": { + "x": 101.5625, + "y": 8.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_H11#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_H11#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_H11#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_H11#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.5625, + "y": 8.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_A12", + "uuid": "6ad3e654-a3eb-46f5-9705-c7c21b8c5a13", + "name": "geb_96_tiprack_1000ul_A12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.5625, + "y": 71.5625, + "z": 18.25 + }, + "position3d": { + "x": 110.5625, + "y": 71.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_A12#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_A12#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_A12#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_A12#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.5625, + "y": 71.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_B12", + "uuid": "3a0ca09b-c7dd-4d05-b46e-91a0aee936d9", + "name": "geb_96_tiprack_1000ul_B12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.5625, + "y": 62.5625, + "z": 18.25 + }, + "position3d": { + "x": 110.5625, + "y": 62.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_B12#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_B12#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_B12#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_B12#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.5625, + "y": 62.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_C12", + "uuid": "3c3aad03-5613-422e-8f5c-9fb25b908382", + "name": "geb_96_tiprack_1000ul_C12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.5625, + "y": 53.5625, + "z": 18.25 + }, + "position3d": { + "x": 110.5625, + "y": 53.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_C12#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_C12#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_C12#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_C12#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.5625, + "y": 53.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_D12", + "uuid": "440da762-8566-46c4-b38d-63f321a28773", + "name": "geb_96_tiprack_1000ul_D12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.5625, + "y": 44.5625, + "z": 18.25 + }, + "position3d": { + "x": 110.5625, + "y": 44.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_D12#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_D12#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_D12#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_D12#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.5625, + "y": 44.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_E12", + "uuid": "25bb57db-7e0f-48d8-a592-fc2214223829", + "name": "geb_96_tiprack_1000ul_E12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.5625, + "y": 35.5625, + "z": 18.25 + }, + "position3d": { + "x": 110.5625, + "y": 35.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_E12#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_E12#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_E12#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_E12#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.5625, + "y": 35.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_F12", + "uuid": "949bcf97-c2f2-461b-89ed-35b57b92ac80", + "name": "geb_96_tiprack_1000ul_F12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.5625, + "y": 26.5625, + "z": 18.25 + }, + "position3d": { + "x": 110.5625, + "y": 26.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_F12#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_F12#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_F12#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_F12#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.5625, + "y": 26.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_G12", + "uuid": "a8092f8c-083c-44fa-9759-93151c1afa08", + "name": "geb_96_tiprack_1000ul_G12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.5625, + "y": 17.5625, + "z": 18.25 + }, + "position3d": { + "x": 110.5625, + "y": 17.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_G12#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_G12#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_G12#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_G12#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.5625, + "y": 17.5625, + "z": 18.25 + } + }, + { + "id": "geb_96_tiprack_1000ul_H12", + "uuid": "214345ab-e6a2-47d2-9414-28dcb98b31cd", + "name": "geb_96_tiprack_1000ul_H12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ade189c1-6fe0-4cc5-87b3-3a673d89ee3a", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.275, + "height": 5.275 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.5625, + "y": 8.5625, + "z": 18.25 + }, + "position3d": { + "x": 110.5625, + "y": 8.5625, + "z": 18.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.275, + "size_y": 5.275, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_H12#1", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_H12#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_1000ul_H12#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_1000ul_H12#0", + "total_tip_length": 87.9, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 11.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.5625, + "y": 8.5625, + "z": 18.25 + } + } + ] + }, + { + "id": "geb_96_tiprack_10ul", + "category": [ + "tip_racks" + ], + "class": { + "module": "pylabrobot.resources.opentrons.tip_racks:geb_96_tiprack_10ul", + "type": "pylabrobot" + }, + "description": "Geb 96 tiprack 10ul", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/opentrons/tip_racks.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "geb_96_tiprack_10ul", + "uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "name": "geb_96_tiprack_10ul", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "tip_rack", + "class": "", + "pose": { + "size": { + "depth": 52.25, + "width": 127.75, + "height": 85.5 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipRack", + "size_x": 127.75, + "size_y": 85.5, + "size_z": 52.25, + "category": "tip_rack", + "model": "GEB 96 Tip Rack 10 µL", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "geb_96_tiprack_10ul_A1", + "B1": "geb_96_tiprack_10ul_B1", + "C1": "geb_96_tiprack_10ul_C1", + "D1": "geb_96_tiprack_10ul_D1", + "E1": "geb_96_tiprack_10ul_E1", + "F1": "geb_96_tiprack_10ul_F1", + "G1": "geb_96_tiprack_10ul_G1", + "H1": "geb_96_tiprack_10ul_H1", + "A2": "geb_96_tiprack_10ul_A2", + "B2": "geb_96_tiprack_10ul_B2", + "C2": "geb_96_tiprack_10ul_C2", + "D2": "geb_96_tiprack_10ul_D2", + "E2": "geb_96_tiprack_10ul_E2", + "F2": "geb_96_tiprack_10ul_F2", + "G2": "geb_96_tiprack_10ul_G2", + "H2": "geb_96_tiprack_10ul_H2", + "A3": "geb_96_tiprack_10ul_A3", + "B3": "geb_96_tiprack_10ul_B3", + "C3": "geb_96_tiprack_10ul_C3", + "D3": "geb_96_tiprack_10ul_D3", + "E3": "geb_96_tiprack_10ul_E3", + "F3": "geb_96_tiprack_10ul_F3", + "G3": "geb_96_tiprack_10ul_G3", + "H3": "geb_96_tiprack_10ul_H3", + "A4": "geb_96_tiprack_10ul_A4", + "B4": "geb_96_tiprack_10ul_B4", + "C4": "geb_96_tiprack_10ul_C4", + "D4": "geb_96_tiprack_10ul_D4", + "E4": "geb_96_tiprack_10ul_E4", + "F4": "geb_96_tiprack_10ul_F4", + "G4": "geb_96_tiprack_10ul_G4", + "H4": "geb_96_tiprack_10ul_H4", + "A5": "geb_96_tiprack_10ul_A5", + "B5": "geb_96_tiprack_10ul_B5", + "C5": "geb_96_tiprack_10ul_C5", + "D5": "geb_96_tiprack_10ul_D5", + "E5": "geb_96_tiprack_10ul_E5", + "F5": "geb_96_tiprack_10ul_F5", + "G5": "geb_96_tiprack_10ul_G5", + "H5": "geb_96_tiprack_10ul_H5", + "A6": "geb_96_tiprack_10ul_A6", + "B6": "geb_96_tiprack_10ul_B6", + "C6": "geb_96_tiprack_10ul_C6", + "D6": "geb_96_tiprack_10ul_D6", + "E6": "geb_96_tiprack_10ul_E6", + "F6": "geb_96_tiprack_10ul_F6", + "G6": "geb_96_tiprack_10ul_G6", + "H6": "geb_96_tiprack_10ul_H6", + "A7": "geb_96_tiprack_10ul_A7", + "B7": "geb_96_tiprack_10ul_B7", + "C7": "geb_96_tiprack_10ul_C7", + "D7": "geb_96_tiprack_10ul_D7", + "E7": "geb_96_tiprack_10ul_E7", + "F7": "geb_96_tiprack_10ul_F7", + "G7": "geb_96_tiprack_10ul_G7", + "H7": "geb_96_tiprack_10ul_H7", + "A8": "geb_96_tiprack_10ul_A8", + "B8": "geb_96_tiprack_10ul_B8", + "C8": "geb_96_tiprack_10ul_C8", + "D8": "geb_96_tiprack_10ul_D8", + "E8": "geb_96_tiprack_10ul_E8", + "F8": "geb_96_tiprack_10ul_F8", + "G8": "geb_96_tiprack_10ul_G8", + "H8": "geb_96_tiprack_10ul_H8", + "A9": "geb_96_tiprack_10ul_A9", + "B9": "geb_96_tiprack_10ul_B9", + "C9": "geb_96_tiprack_10ul_C9", + "D9": "geb_96_tiprack_10ul_D9", + "E9": "geb_96_tiprack_10ul_E9", + "F9": "geb_96_tiprack_10ul_F9", + "G9": "geb_96_tiprack_10ul_G9", + "H9": "geb_96_tiprack_10ul_H9", + "A10": "geb_96_tiprack_10ul_A10", + "B10": "geb_96_tiprack_10ul_B10", + "C10": "geb_96_tiprack_10ul_C10", + "D10": "geb_96_tiprack_10ul_D10", + "E10": "geb_96_tiprack_10ul_E10", + "F10": "geb_96_tiprack_10ul_F10", + "G10": "geb_96_tiprack_10ul_G10", + "H10": "geb_96_tiprack_10ul_H10", + "A11": "geb_96_tiprack_10ul_A11", + "B11": "geb_96_tiprack_10ul_B11", + "C11": "geb_96_tiprack_10ul_C11", + "D11": "geb_96_tiprack_10ul_D11", + "E11": "geb_96_tiprack_10ul_E11", + "F11": "geb_96_tiprack_10ul_F11", + "G11": "geb_96_tiprack_10ul_G11", + "H11": "geb_96_tiprack_10ul_H11", + "A12": "geb_96_tiprack_10ul_A12", + "B12": "geb_96_tiprack_10ul_B12", + "C12": "geb_96_tiprack_10ul_C12", + "D12": "geb_96_tiprack_10ul_D12", + "E12": "geb_96_tiprack_10ul_E12", + "F12": "geb_96_tiprack_10ul_F12", + "G12": "geb_96_tiprack_10ul_G12", + "H12": "geb_96_tiprack_10ul_H12" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "geb_96_tiprack_10ul_A1", + "uuid": "1df82cfd-7ea4-4fcf-acf5-26f529292161", + "name": "geb_96_tiprack_10ul_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 13.1565, + "y": 73.0265, + "z": 22.25 + }, + "position3d": { + "x": 13.1565, + "y": 73.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_A1#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_A1#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_A1#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_A1#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 13.1565, + "y": 73.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_B1", + "uuid": "0d002cc4-151b-4c29-8805-3da600c71c13", + "name": "geb_96_tiprack_10ul_B1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 13.1565, + "y": 64.0265, + "z": 22.25 + }, + "position3d": { + "x": 13.1565, + "y": 64.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_B1#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_B1#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_B1#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_B1#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 13.1565, + "y": 64.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_C1", + "uuid": "8beccd92-a449-4c3d-a9b0-6c21ec91471d", + "name": "geb_96_tiprack_10ul_C1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 13.1565, + "y": 55.0265, + "z": 22.25 + }, + "position3d": { + "x": 13.1565, + "y": 55.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_C1#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_C1#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_C1#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_C1#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 13.1565, + "y": 55.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_D1", + "uuid": "f9be1b06-5254-4e5b-8a0d-497f3edd141b", + "name": "geb_96_tiprack_10ul_D1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 13.1565, + "y": 46.0265, + "z": 22.25 + }, + "position3d": { + "x": 13.1565, + "y": 46.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_D1#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_D1#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_D1#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_D1#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 13.1565, + "y": 46.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_E1", + "uuid": "254aba9c-6f3f-4916-97b0-178322566b35", + "name": "geb_96_tiprack_10ul_E1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 13.1565, + "y": 37.0265, + "z": 22.25 + }, + "position3d": { + "x": 13.1565, + "y": 37.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_E1#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_E1#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_E1#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_E1#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 13.1565, + "y": 37.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_F1", + "uuid": "064b63da-277b-4193-a8bb-a179ea899d12", + "name": "geb_96_tiprack_10ul_F1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 13.1565, + "y": 28.0265, + "z": 22.25 + }, + "position3d": { + "x": 13.1565, + "y": 28.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_F1#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_F1#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_F1#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_F1#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 13.1565, + "y": 28.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_G1", + "uuid": "afc5f508-8875-4e5f-b26e-46321a55580e", + "name": "geb_96_tiprack_10ul_G1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 13.1565, + "y": 19.0265, + "z": 22.25 + }, + "position3d": { + "x": 13.1565, + "y": 19.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_G1#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_G1#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_G1#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_G1#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 13.1565, + "y": 19.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_H1", + "uuid": "42a60ce9-ccea-47d5-b86f-acb1be4bd27f", + "name": "geb_96_tiprack_10ul_H1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 13.1565, + "y": 10.0265, + "z": 22.25 + }, + "position3d": { + "x": 13.1565, + "y": 10.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_H1#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_H1#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_H1#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_H1#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 13.1565, + "y": 10.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_A2", + "uuid": "41e30521-5202-4a1f-b777-7f244fc739d3", + "name": "geb_96_tiprack_10ul_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 22.1565, + "y": 73.0265, + "z": 22.25 + }, + "position3d": { + "x": 22.1565, + "y": 73.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_A2#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_A2#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_A2#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_A2#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 22.1565, + "y": 73.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_B2", + "uuid": "e5a3391e-25ed-467e-bc54-02425203cdd5", + "name": "geb_96_tiprack_10ul_B2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 22.1565, + "y": 64.0265, + "z": 22.25 + }, + "position3d": { + "x": 22.1565, + "y": 64.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_B2#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_B2#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_B2#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_B2#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 22.1565, + "y": 64.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_C2", + "uuid": "e9bfc91c-2f88-4447-86de-bc66fc461e9a", + "name": "geb_96_tiprack_10ul_C2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 22.1565, + "y": 55.0265, + "z": 22.25 + }, + "position3d": { + "x": 22.1565, + "y": 55.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_C2#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_C2#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_C2#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_C2#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 22.1565, + "y": 55.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_D2", + "uuid": "cbee5c15-fe88-4ae6-a822-8924d0938156", + "name": "geb_96_tiprack_10ul_D2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 22.1565, + "y": 46.0265, + "z": 22.25 + }, + "position3d": { + "x": 22.1565, + "y": 46.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_D2#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_D2#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_D2#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_D2#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 22.1565, + "y": 46.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_E2", + "uuid": "989a5535-73f1-4c96-9ec2-76e14bae20d0", + "name": "geb_96_tiprack_10ul_E2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 22.1565, + "y": 37.0265, + "z": 22.25 + }, + "position3d": { + "x": 22.1565, + "y": 37.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_E2#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_E2#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_E2#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_E2#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 22.1565, + "y": 37.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_F2", + "uuid": "96454fc9-e476-4729-a46e-cf3d7bdbab61", + "name": "geb_96_tiprack_10ul_F2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 22.1565, + "y": 28.0265, + "z": 22.25 + }, + "position3d": { + "x": 22.1565, + "y": 28.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_F2#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_F2#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_F2#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_F2#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 22.1565, + "y": 28.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_G2", + "uuid": "ddd3d7ed-e783-4fcc-a2da-bcae7ef5e43b", + "name": "geb_96_tiprack_10ul_G2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 22.1565, + "y": 19.0265, + "z": 22.25 + }, + "position3d": { + "x": 22.1565, + "y": 19.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_G2#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_G2#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_G2#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_G2#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 22.1565, + "y": 19.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_H2", + "uuid": "f52291d3-fc87-46f5-a5f2-09e803eb9d10", + "name": "geb_96_tiprack_10ul_H2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 22.1565, + "y": 10.0265, + "z": 22.25 + }, + "position3d": { + "x": 22.1565, + "y": 10.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_H2#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_H2#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_H2#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_H2#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 22.1565, + "y": 10.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_A3", + "uuid": "766a766a-bdd3-4adc-87a9-cf4bc561ca01", + "name": "geb_96_tiprack_10ul_A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 31.1565, + "y": 73.0265, + "z": 22.25 + }, + "position3d": { + "x": 31.1565, + "y": 73.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_A3#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_A3#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_A3#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_A3#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 31.1565, + "y": 73.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_B3", + "uuid": "9c99485a-5b1a-4be5-9e88-467ba56da834", + "name": "geb_96_tiprack_10ul_B3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 31.1565, + "y": 64.0265, + "z": 22.25 + }, + "position3d": { + "x": 31.1565, + "y": 64.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_B3#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_B3#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_B3#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_B3#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 31.1565, + "y": 64.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_C3", + "uuid": "6d548c46-f6c3-4f51-9ee6-2f28456f1372", + "name": "geb_96_tiprack_10ul_C3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 31.1565, + "y": 55.0265, + "z": 22.25 + }, + "position3d": { + "x": 31.1565, + "y": 55.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_C3#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_C3#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_C3#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_C3#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 31.1565, + "y": 55.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_D3", + "uuid": "c30de556-cb3b-4368-a860-71bbf3be0189", + "name": "geb_96_tiprack_10ul_D3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 31.1565, + "y": 46.0265, + "z": 22.25 + }, + "position3d": { + "x": 31.1565, + "y": 46.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_D3#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_D3#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_D3#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_D3#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 31.1565, + "y": 46.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_E3", + "uuid": "4cca019d-d198-4b94-a7cf-0f36265b14c9", + "name": "geb_96_tiprack_10ul_E3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 31.1565, + "y": 37.0265, + "z": 22.25 + }, + "position3d": { + "x": 31.1565, + "y": 37.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_E3#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_E3#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_E3#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_E3#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 31.1565, + "y": 37.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_F3", + "uuid": "0f1594fe-6a76-4726-9747-0a486abc1fd9", + "name": "geb_96_tiprack_10ul_F3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 31.1565, + "y": 28.0265, + "z": 22.25 + }, + "position3d": { + "x": 31.1565, + "y": 28.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_F3#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_F3#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_F3#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_F3#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 31.1565, + "y": 28.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_G3", + "uuid": "ab84bb28-e8b7-4c82-b8d8-f16f5e6b3c1b", + "name": "geb_96_tiprack_10ul_G3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 31.1565, + "y": 19.0265, + "z": 22.25 + }, + "position3d": { + "x": 31.1565, + "y": 19.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_G3#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_G3#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_G3#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_G3#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 31.1565, + "y": 19.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_H3", + "uuid": "281a2d65-4f1b-4ffb-b726-39b4ea56bcfe", + "name": "geb_96_tiprack_10ul_H3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 31.1565, + "y": 10.0265, + "z": 22.25 + }, + "position3d": { + "x": 31.1565, + "y": 10.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_H3#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_H3#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_H3#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_H3#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 31.1565, + "y": 10.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_A4", + "uuid": "78af3076-59bb-42b6-aa23-2fe616e63554", + "name": "geb_96_tiprack_10ul_A4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 40.1565, + "y": 73.0265, + "z": 22.25 + }, + "position3d": { + "x": 40.1565, + "y": 73.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_A4#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_A4#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_A4#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_A4#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 40.1565, + "y": 73.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_B4", + "uuid": "01cdc3e4-b4b8-4695-865e-caad77f9723e", + "name": "geb_96_tiprack_10ul_B4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 40.1565, + "y": 64.0265, + "z": 22.25 + }, + "position3d": { + "x": 40.1565, + "y": 64.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_B4#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_B4#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_B4#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_B4#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 40.1565, + "y": 64.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_C4", + "uuid": "22a4652e-f614-4491-a149-31bb8dbf5050", + "name": "geb_96_tiprack_10ul_C4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 40.1565, + "y": 55.0265, + "z": 22.25 + }, + "position3d": { + "x": 40.1565, + "y": 55.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_C4#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_C4#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_C4#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_C4#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 40.1565, + "y": 55.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_D4", + "uuid": "8d7efd19-a52a-434a-95db-20c5310ccec2", + "name": "geb_96_tiprack_10ul_D4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 40.1565, + "y": 46.0265, + "z": 22.25 + }, + "position3d": { + "x": 40.1565, + "y": 46.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_D4#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_D4#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_D4#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_D4#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 40.1565, + "y": 46.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_E4", + "uuid": "f6d3e083-19b6-4149-95f1-a310d8f7ccae", + "name": "geb_96_tiprack_10ul_E4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 40.1565, + "y": 37.0265, + "z": 22.25 + }, + "position3d": { + "x": 40.1565, + "y": 37.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_E4#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_E4#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_E4#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_E4#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 40.1565, + "y": 37.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_F4", + "uuid": "a1b3f305-a38f-4478-9c07-5da59363b45a", + "name": "geb_96_tiprack_10ul_F4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 40.1565, + "y": 28.0265, + "z": 22.25 + }, + "position3d": { + "x": 40.1565, + "y": 28.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_F4#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_F4#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_F4#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_F4#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 40.1565, + "y": 28.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_G4", + "uuid": "be86a5b1-10e3-489c-80f0-a2ccb53a5759", + "name": "geb_96_tiprack_10ul_G4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 40.1565, + "y": 19.0265, + "z": 22.25 + }, + "position3d": { + "x": 40.1565, + "y": 19.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_G4#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_G4#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_G4#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_G4#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 40.1565, + "y": 19.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_H4", + "uuid": "d356cc07-e9f8-4316-8636-4c37811c334c", + "name": "geb_96_tiprack_10ul_H4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 40.1565, + "y": 10.0265, + "z": 22.25 + }, + "position3d": { + "x": 40.1565, + "y": 10.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_H4#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_H4#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_H4#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_H4#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 40.1565, + "y": 10.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_A5", + "uuid": "7cce212b-e489-42a0-b915-303d31e9534d", + "name": "geb_96_tiprack_10ul_A5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 49.1565, + "y": 73.0265, + "z": 22.25 + }, + "position3d": { + "x": 49.1565, + "y": 73.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_A5#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_A5#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_A5#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_A5#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 49.1565, + "y": 73.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_B5", + "uuid": "877c125d-f582-463c-b74e-fdd8b1dad6ec", + "name": "geb_96_tiprack_10ul_B5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 49.1565, + "y": 64.0265, + "z": 22.25 + }, + "position3d": { + "x": 49.1565, + "y": 64.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_B5#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_B5#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_B5#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_B5#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 49.1565, + "y": 64.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_C5", + "uuid": "060f11d5-533c-417f-80fc-a3e890d2e513", + "name": "geb_96_tiprack_10ul_C5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 49.1565, + "y": 55.0265, + "z": 22.25 + }, + "position3d": { + "x": 49.1565, + "y": 55.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_C5#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_C5#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_C5#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_C5#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 49.1565, + "y": 55.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_D5", + "uuid": "d064755d-ac94-4c88-be2b-ecf4a4abcf98", + "name": "geb_96_tiprack_10ul_D5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 49.1565, + "y": 46.0265, + "z": 22.25 + }, + "position3d": { + "x": 49.1565, + "y": 46.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_D5#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_D5#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_D5#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_D5#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 49.1565, + "y": 46.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_E5", + "uuid": "1fa0bbb1-1a5f-4117-a79e-4fe40423614f", + "name": "geb_96_tiprack_10ul_E5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 49.1565, + "y": 37.0265, + "z": 22.25 + }, + "position3d": { + "x": 49.1565, + "y": 37.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_E5#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_E5#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_E5#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_E5#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 49.1565, + "y": 37.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_F5", + "uuid": "57d69083-366b-4aca-bd2d-f0d14aa99d1a", + "name": "geb_96_tiprack_10ul_F5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 49.1565, + "y": 28.0265, + "z": 22.25 + }, + "position3d": { + "x": 49.1565, + "y": 28.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_F5#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_F5#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_F5#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_F5#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 49.1565, + "y": 28.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_G5", + "uuid": "1a636f5a-383a-4f21-b5f1-d21e416b4a47", + "name": "geb_96_tiprack_10ul_G5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 49.1565, + "y": 19.0265, + "z": 22.25 + }, + "position3d": { + "x": 49.1565, + "y": 19.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_G5#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_G5#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_G5#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_G5#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 49.1565, + "y": 19.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_H5", + "uuid": "a9f75117-306d-4706-906c-80ad739248b8", + "name": "geb_96_tiprack_10ul_H5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 49.1565, + "y": 10.0265, + "z": 22.25 + }, + "position3d": { + "x": 49.1565, + "y": 10.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_H5#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_H5#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_H5#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_H5#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 49.1565, + "y": 10.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_A6", + "uuid": "14f997c9-a966-42e1-8288-a90c06c175e5", + "name": "geb_96_tiprack_10ul_A6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 58.1565, + "y": 73.0265, + "z": 22.25 + }, + "position3d": { + "x": 58.1565, + "y": 73.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_A6#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_A6#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_A6#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_A6#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 58.1565, + "y": 73.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_B6", + "uuid": "2b3437b4-6d93-4ad0-b61d-5dcbc51a896e", + "name": "geb_96_tiprack_10ul_B6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 58.1565, + "y": 64.0265, + "z": 22.25 + }, + "position3d": { + "x": 58.1565, + "y": 64.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_B6#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_B6#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_B6#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_B6#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 58.1565, + "y": 64.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_C6", + "uuid": "cfd2df1a-ee8b-4e66-b801-65f0c3b6e876", + "name": "geb_96_tiprack_10ul_C6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 58.1565, + "y": 55.0265, + "z": 22.25 + }, + "position3d": { + "x": 58.1565, + "y": 55.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_C6#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_C6#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_C6#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_C6#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 58.1565, + "y": 55.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_D6", + "uuid": "78535413-c94d-4f7a-8c4b-0fd24ed3decd", + "name": "geb_96_tiprack_10ul_D6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 58.1565, + "y": 46.0265, + "z": 22.25 + }, + "position3d": { + "x": 58.1565, + "y": 46.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_D6#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_D6#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_D6#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_D6#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 58.1565, + "y": 46.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_E6", + "uuid": "0cf67d00-26bd-4df0-86a4-cd24b6602d78", + "name": "geb_96_tiprack_10ul_E6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 58.1565, + "y": 37.0265, + "z": 22.25 + }, + "position3d": { + "x": 58.1565, + "y": 37.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_E6#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_E6#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_E6#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_E6#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 58.1565, + "y": 37.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_F6", + "uuid": "08540598-7cb2-405c-a3ad-fdb9ffbb5309", + "name": "geb_96_tiprack_10ul_F6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 58.1565, + "y": 28.0265, + "z": 22.25 + }, + "position3d": { + "x": 58.1565, + "y": 28.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_F6#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_F6#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_F6#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_F6#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 58.1565, + "y": 28.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_G6", + "uuid": "61f4093f-2796-4863-b5f8-86f75c061fad", + "name": "geb_96_tiprack_10ul_G6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 58.1565, + "y": 19.0265, + "z": 22.25 + }, + "position3d": { + "x": 58.1565, + "y": 19.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_G6#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_G6#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_G6#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_G6#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 58.1565, + "y": 19.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_H6", + "uuid": "5550d0cc-d912-4c4e-a75f-18ccf7864388", + "name": "geb_96_tiprack_10ul_H6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 58.1565, + "y": 10.0265, + "z": 22.25 + }, + "position3d": { + "x": 58.1565, + "y": 10.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_H6#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_H6#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_H6#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_H6#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 58.1565, + "y": 10.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_A7", + "uuid": "460eb922-ee56-43ba-9f8a-2c3c4dfb501b", + "name": "geb_96_tiprack_10ul_A7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 67.1565, + "y": 73.0265, + "z": 22.25 + }, + "position3d": { + "x": 67.1565, + "y": 73.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_A7#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_A7#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_A7#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_A7#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 67.1565, + "y": 73.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_B7", + "uuid": "04e7e165-e777-4925-a067-c037ce3135c4", + "name": "geb_96_tiprack_10ul_B7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 67.1565, + "y": 64.0265, + "z": 22.25 + }, + "position3d": { + "x": 67.1565, + "y": 64.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_B7#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_B7#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_B7#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_B7#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 67.1565, + "y": 64.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_C7", + "uuid": "265b1f58-78ac-43dd-8f6a-cab8d3cb8328", + "name": "geb_96_tiprack_10ul_C7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 67.1565, + "y": 55.0265, + "z": 22.25 + }, + "position3d": { + "x": 67.1565, + "y": 55.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_C7#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_C7#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_C7#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_C7#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 67.1565, + "y": 55.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_D7", + "uuid": "0bc557e7-ec65-4c41-9bfa-6dc787133b94", + "name": "geb_96_tiprack_10ul_D7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 67.1565, + "y": 46.0265, + "z": 22.25 + }, + "position3d": { + "x": 67.1565, + "y": 46.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_D7#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_D7#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_D7#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_D7#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 67.1565, + "y": 46.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_E7", + "uuid": "14b9e5ee-125b-4362-8d43-e8c0becbe1c0", + "name": "geb_96_tiprack_10ul_E7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 67.1565, + "y": 37.0265, + "z": 22.25 + }, + "position3d": { + "x": 67.1565, + "y": 37.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_E7#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_E7#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_E7#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_E7#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 67.1565, + "y": 37.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_F7", + "uuid": "1aed5f9d-d6ec-4451-b70a-0aff0f321e4b", + "name": "geb_96_tiprack_10ul_F7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 67.1565, + "y": 28.0265, + "z": 22.25 + }, + "position3d": { + "x": 67.1565, + "y": 28.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_F7#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_F7#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_F7#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_F7#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 67.1565, + "y": 28.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_G7", + "uuid": "0d817a87-0af2-4bd9-acdb-73300c855fa4", + "name": "geb_96_tiprack_10ul_G7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 67.1565, + "y": 19.0265, + "z": 22.25 + }, + "position3d": { + "x": 67.1565, + "y": 19.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_G7#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_G7#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_G7#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_G7#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 67.1565, + "y": 19.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_H7", + "uuid": "4b7906bc-e73a-4b1a-a9b0-a87de3283db9", + "name": "geb_96_tiprack_10ul_H7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 67.1565, + "y": 10.0265, + "z": 22.25 + }, + "position3d": { + "x": 67.1565, + "y": 10.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_H7#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_H7#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_H7#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_H7#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 67.1565, + "y": 10.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_A8", + "uuid": "983e691e-ef48-48bf-ab39-1ae5d7cc32fe", + "name": "geb_96_tiprack_10ul_A8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 76.1565, + "y": 73.0265, + "z": 22.25 + }, + "position3d": { + "x": 76.1565, + "y": 73.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_A8#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_A8#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_A8#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_A8#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 76.1565, + "y": 73.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_B8", + "uuid": "fd694cbd-c619-452a-8ce3-57f46cbdccdf", + "name": "geb_96_tiprack_10ul_B8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 76.1565, + "y": 64.0265, + "z": 22.25 + }, + "position3d": { + "x": 76.1565, + "y": 64.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_B8#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_B8#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_B8#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_B8#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 76.1565, + "y": 64.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_C8", + "uuid": "76272027-08ab-4bd0-ac48-2358044d7c9b", + "name": "geb_96_tiprack_10ul_C8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 76.1565, + "y": 55.0265, + "z": 22.25 + }, + "position3d": { + "x": 76.1565, + "y": 55.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_C8#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_C8#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_C8#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_C8#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 76.1565, + "y": 55.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_D8", + "uuid": "4b2ed3fb-ea38-4293-a270-80c5a0bfaa39", + "name": "geb_96_tiprack_10ul_D8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 76.1565, + "y": 46.0265, + "z": 22.25 + }, + "position3d": { + "x": 76.1565, + "y": 46.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_D8#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_D8#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_D8#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_D8#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 76.1565, + "y": 46.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_E8", + "uuid": "2cdfeab5-3f9e-4fda-b5fa-ada338d2dc97", + "name": "geb_96_tiprack_10ul_E8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 76.1565, + "y": 37.0265, + "z": 22.25 + }, + "position3d": { + "x": 76.1565, + "y": 37.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_E8#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_E8#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_E8#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_E8#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 76.1565, + "y": 37.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_F8", + "uuid": "891fc330-4f5c-4379-9c4c-6c4e2e814685", + "name": "geb_96_tiprack_10ul_F8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 76.1565, + "y": 28.0265, + "z": 22.25 + }, + "position3d": { + "x": 76.1565, + "y": 28.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_F8#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_F8#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_F8#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_F8#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 76.1565, + "y": 28.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_G8", + "uuid": "575504fa-beae-4628-be52-8a8a42fb0e5c", + "name": "geb_96_tiprack_10ul_G8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 76.1565, + "y": 19.0265, + "z": 22.25 + }, + "position3d": { + "x": 76.1565, + "y": 19.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_G8#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_G8#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_G8#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_G8#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 76.1565, + "y": 19.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_H8", + "uuid": "87f8a49d-7939-49db-827e-ca2b898d2de8", + "name": "geb_96_tiprack_10ul_H8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 76.1565, + "y": 10.0265, + "z": 22.25 + }, + "position3d": { + "x": 76.1565, + "y": 10.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_H8#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_H8#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_H8#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_H8#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 76.1565, + "y": 10.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_A9", + "uuid": "3e6c9d64-51bb-4500-b560-ff7a52d48b06", + "name": "geb_96_tiprack_10ul_A9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 85.1565, + "y": 73.0265, + "z": 22.25 + }, + "position3d": { + "x": 85.1565, + "y": 73.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_A9#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_A9#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_A9#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_A9#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 85.1565, + "y": 73.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_B9", + "uuid": "5a2f71e0-84c2-4254-9b19-14a24d5beef1", + "name": "geb_96_tiprack_10ul_B9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 85.1565, + "y": 64.0265, + "z": 22.25 + }, + "position3d": { + "x": 85.1565, + "y": 64.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_B9#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_B9#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_B9#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_B9#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 85.1565, + "y": 64.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_C9", + "uuid": "694cc06c-4114-4643-b21e-2e695fd4a2ef", + "name": "geb_96_tiprack_10ul_C9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 85.1565, + "y": 55.0265, + "z": 22.25 + }, + "position3d": { + "x": 85.1565, + "y": 55.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_C9#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_C9#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_C9#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_C9#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 85.1565, + "y": 55.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_D9", + "uuid": "4a4d3139-6347-4787-8124-8e42c8f840df", + "name": "geb_96_tiprack_10ul_D9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 85.1565, + "y": 46.0265, + "z": 22.25 + }, + "position3d": { + "x": 85.1565, + "y": 46.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_D9#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_D9#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_D9#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_D9#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 85.1565, + "y": 46.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_E9", + "uuid": "9fa8b6df-980d-4adb-943a-dea243ff4264", + "name": "geb_96_tiprack_10ul_E9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 85.1565, + "y": 37.0265, + "z": 22.25 + }, + "position3d": { + "x": 85.1565, + "y": 37.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_E9#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_E9#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_E9#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_E9#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 85.1565, + "y": 37.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_F9", + "uuid": "fe5cc063-8f4d-4543-8391-ec311d1cf974", + "name": "geb_96_tiprack_10ul_F9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 85.1565, + "y": 28.0265, + "z": 22.25 + }, + "position3d": { + "x": 85.1565, + "y": 28.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_F9#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_F9#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_F9#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_F9#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 85.1565, + "y": 28.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_G9", + "uuid": "eb4b099e-8f1b-48af-9506-e69c4954b3b2", + "name": "geb_96_tiprack_10ul_G9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 85.1565, + "y": 19.0265, + "z": 22.25 + }, + "position3d": { + "x": 85.1565, + "y": 19.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_G9#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_G9#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_G9#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_G9#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 85.1565, + "y": 19.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_H9", + "uuid": "aaec30e6-0057-4530-a8b0-e9b43d4166b5", + "name": "geb_96_tiprack_10ul_H9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 85.1565, + "y": 10.0265, + "z": 22.25 + }, + "position3d": { + "x": 85.1565, + "y": 10.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_H9#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_H9#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_H9#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_H9#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 85.1565, + "y": 10.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_A10", + "uuid": "ed0f2283-6df9-414d-b493-04419beb1d21", + "name": "geb_96_tiprack_10ul_A10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.1565, + "y": 73.0265, + "z": 22.25 + }, + "position3d": { + "x": 94.1565, + "y": 73.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_A10#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_A10#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_A10#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_A10#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.1565, + "y": 73.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_B10", + "uuid": "5d64d0c4-206c-45ad-8ecd-8a949fa39876", + "name": "geb_96_tiprack_10ul_B10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.1565, + "y": 64.0265, + "z": 22.25 + }, + "position3d": { + "x": 94.1565, + "y": 64.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_B10#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_B10#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_B10#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_B10#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.1565, + "y": 64.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_C10", + "uuid": "7f1f1fe7-a829-440d-b0e9-bb950844e486", + "name": "geb_96_tiprack_10ul_C10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.1565, + "y": 55.0265, + "z": 22.25 + }, + "position3d": { + "x": 94.1565, + "y": 55.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_C10#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_C10#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_C10#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_C10#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.1565, + "y": 55.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_D10", + "uuid": "a67ae70e-0923-454c-a51d-5f126bd6802f", + "name": "geb_96_tiprack_10ul_D10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.1565, + "y": 46.0265, + "z": 22.25 + }, + "position3d": { + "x": 94.1565, + "y": 46.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_D10#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_D10#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_D10#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_D10#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.1565, + "y": 46.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_E10", + "uuid": "2a3617b6-fa3c-437f-a815-469034ff5556", + "name": "geb_96_tiprack_10ul_E10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.1565, + "y": 37.0265, + "z": 22.25 + }, + "position3d": { + "x": 94.1565, + "y": 37.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_E10#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_E10#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_E10#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_E10#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.1565, + "y": 37.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_F10", + "uuid": "9e3af02a-3ece-4b34-a50f-07603f1c1b57", + "name": "geb_96_tiprack_10ul_F10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.1565, + "y": 28.0265, + "z": 22.25 + }, + "position3d": { + "x": 94.1565, + "y": 28.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_F10#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_F10#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_F10#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_F10#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.1565, + "y": 28.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_G10", + "uuid": "e03a9af7-4dea-470f-8917-8904ce2428d8", + "name": "geb_96_tiprack_10ul_G10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.1565, + "y": 19.0265, + "z": 22.25 + }, + "position3d": { + "x": 94.1565, + "y": 19.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_G10#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_G10#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_G10#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_G10#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.1565, + "y": 19.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_H10", + "uuid": "6bb1133f-07f4-4a91-9a7f-14bebf476e0f", + "name": "geb_96_tiprack_10ul_H10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.1565, + "y": 10.0265, + "z": 22.25 + }, + "position3d": { + "x": 94.1565, + "y": 10.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_H10#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_H10#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_H10#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_H10#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.1565, + "y": 10.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_A11", + "uuid": "6632bbf9-f7e9-4638-8500-21ec7bf1d03f", + "name": "geb_96_tiprack_10ul_A11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 103.1565, + "y": 73.0265, + "z": 22.25 + }, + "position3d": { + "x": 103.1565, + "y": 73.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_A11#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_A11#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_A11#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_A11#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 103.1565, + "y": 73.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_B11", + "uuid": "17e90383-50e4-4604-a982-587c0162fa70", + "name": "geb_96_tiprack_10ul_B11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 103.1565, + "y": 64.0265, + "z": 22.25 + }, + "position3d": { + "x": 103.1565, + "y": 64.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_B11#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_B11#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_B11#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_B11#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 103.1565, + "y": 64.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_C11", + "uuid": "23ee8faa-47b0-4c37-b70f-3e76286ace40", + "name": "geb_96_tiprack_10ul_C11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 103.1565, + "y": 55.0265, + "z": 22.25 + }, + "position3d": { + "x": 103.1565, + "y": 55.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_C11#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_C11#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_C11#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_C11#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 103.1565, + "y": 55.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_D11", + "uuid": "c19c8d3c-56b5-40f0-a669-240c859e78ea", + "name": "geb_96_tiprack_10ul_D11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 103.1565, + "y": 46.0265, + "z": 22.25 + }, + "position3d": { + "x": 103.1565, + "y": 46.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_D11#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_D11#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_D11#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_D11#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 103.1565, + "y": 46.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_E11", + "uuid": "e17b4a1b-1838-4922-9930-f99573eaea21", + "name": "geb_96_tiprack_10ul_E11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 103.1565, + "y": 37.0265, + "z": 22.25 + }, + "position3d": { + "x": 103.1565, + "y": 37.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_E11#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_E11#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_E11#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_E11#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 103.1565, + "y": 37.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_F11", + "uuid": "9690798a-3a8b-409e-b07b-93137c873808", + "name": "geb_96_tiprack_10ul_F11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 103.1565, + "y": 28.0265, + "z": 22.25 + }, + "position3d": { + "x": 103.1565, + "y": 28.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_F11#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_F11#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_F11#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_F11#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 103.1565, + "y": 28.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_G11", + "uuid": "2bc508f0-48c8-49c3-ad31-6e9e76c19b37", + "name": "geb_96_tiprack_10ul_G11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 103.1565, + "y": 19.0265, + "z": 22.25 + }, + "position3d": { + "x": 103.1565, + "y": 19.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_G11#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_G11#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_G11#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_G11#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 103.1565, + "y": 19.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_H11", + "uuid": "4362bea4-5910-4896-bcc6-27a11bb56516", + "name": "geb_96_tiprack_10ul_H11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 103.1565, + "y": 10.0265, + "z": 22.25 + }, + "position3d": { + "x": 103.1565, + "y": 10.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_H11#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_H11#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_H11#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_H11#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 103.1565, + "y": 10.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_A12", + "uuid": "9f0cbbb2-ad29-4bb5-a42d-e5131381a4c0", + "name": "geb_96_tiprack_10ul_A12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 112.1565, + "y": 73.0265, + "z": 22.25 + }, + "position3d": { + "x": 112.1565, + "y": 73.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_A12#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_A12#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_A12#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_A12#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 112.1565, + "y": 73.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_B12", + "uuid": "6f440be7-ade5-4a6c-87c6-42de8ba85d9e", + "name": "geb_96_tiprack_10ul_B12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 112.1565, + "y": 64.0265, + "z": 22.25 + }, + "position3d": { + "x": 112.1565, + "y": 64.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_B12#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_B12#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_B12#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_B12#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 112.1565, + "y": 64.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_C12", + "uuid": "3e7c28e4-f1dd-4568-be6b-1ae911376303", + "name": "geb_96_tiprack_10ul_C12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 112.1565, + "y": 55.0265, + "z": 22.25 + }, + "position3d": { + "x": 112.1565, + "y": 55.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_C12#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_C12#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_C12#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_C12#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 112.1565, + "y": 55.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_D12", + "uuid": "e6c8f171-dfad-4ed2-8d7b-72e408b3c773", + "name": "geb_96_tiprack_10ul_D12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 112.1565, + "y": 46.0265, + "z": 22.25 + }, + "position3d": { + "x": 112.1565, + "y": 46.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_D12#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_D12#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_D12#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_D12#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 112.1565, + "y": 46.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_E12", + "uuid": "e5095d8f-cfea-4113-a390-ae5f7189d79c", + "name": "geb_96_tiprack_10ul_E12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 112.1565, + "y": 37.0265, + "z": 22.25 + }, + "position3d": { + "x": 112.1565, + "y": 37.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_E12#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_E12#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_E12#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_E12#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 112.1565, + "y": 37.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_F12", + "uuid": "a1e27322-221b-4d71-995b-dcc35f06a13b", + "name": "geb_96_tiprack_10ul_F12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 112.1565, + "y": 28.0265, + "z": 22.25 + }, + "position3d": { + "x": 112.1565, + "y": 28.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_F12#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_F12#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_F12#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_F12#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 112.1565, + "y": 28.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_G12", + "uuid": "d0011c86-e596-4426-9275-f000c830a833", + "name": "geb_96_tiprack_10ul_G12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 112.1565, + "y": 19.0265, + "z": 22.25 + }, + "position3d": { + "x": 112.1565, + "y": 19.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_G12#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_G12#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_G12#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_G12#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 112.1565, + "y": 19.0265, + "z": 22.25 + } + }, + { + "id": "geb_96_tiprack_10ul_H12", + "uuid": "41f5e0e6-5a04-4e1f-bc19-e161d9b85486", + "name": "geb_96_tiprack_10ul_H12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3c9ff283-ccbb-40be-857a-8ce7302af398", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.447, + "height": 2.447 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 112.1565, + "y": 10.0265, + "z": 22.25 + }, + "position3d": { + "x": 112.1565, + "y": 10.0265, + "z": 22.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.447, + "size_y": 2.447, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_H12#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_H12#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + }, + "tip_state": { + "thing": "geb_96_tiprack_10ul_H12#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "geb_96_tiprack_10ul_H12#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 6.2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 112.1565, + "y": 10.0265, + "z": 22.25 + } + } + ] + }, + { + "id": "opentrons_96_filtertiprack_1000ul", + "category": [ + "tip_racks" + ], + "class": { + "module": "pylabrobot.resources.opentrons.tip_racks:opentrons_96_filtertiprack_1000ul", + "type": "pylabrobot" + }, + "description": "Opentrons 96 filtertiprack 1000ul", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/opentrons/tip_racks.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "model": { + "children_mesh": "generic_labware_tube_10_75/meshes/0_base.stl", + "children_mesh_tf": [ + 0.0018, + 0.0018, + 0, + -1.5708, + 0, + 0 + ], + "mesh": "tecan_nested_tip_rack/meshes/plate.stl", + "mesh_tf": [ + 0.064, + 0.043, + 0, + -1.5708, + 0, + 1.5708 + ], + "path": "https://leap-lab.oss-cn-zhangjiakou.aliyuncs.com/uni-lab/resources/tecan_nested_tip_rack/modal.xacro", + "type": "resource" + }, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "opentrons_96_filtertiprack_1000ul", + "uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "name": "opentrons_96_filtertiprack_1000ul", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "tip_rack", + "class": "", + "pose": { + "size": { + "depth": 97.47, + "width": 127.76, + "height": 85.48 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipRack", + "size_x": 127.76, + "size_y": 85.48, + "size_z": 97.47, + "category": "tip_rack", + "model": "Opentrons OT-2 96 Filter Tip Rack 1000 µL", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "opentrons_96_filtertiprack_1000ul_A1", + "B1": "opentrons_96_filtertiprack_1000ul_B1", + "C1": "opentrons_96_filtertiprack_1000ul_C1", + "D1": "opentrons_96_filtertiprack_1000ul_D1", + "E1": "opentrons_96_filtertiprack_1000ul_E1", + "F1": "opentrons_96_filtertiprack_1000ul_F1", + "G1": "opentrons_96_filtertiprack_1000ul_G1", + "H1": "opentrons_96_filtertiprack_1000ul_H1", + "A2": "opentrons_96_filtertiprack_1000ul_A2", + "B2": "opentrons_96_filtertiprack_1000ul_B2", + "C2": "opentrons_96_filtertiprack_1000ul_C2", + "D2": "opentrons_96_filtertiprack_1000ul_D2", + "E2": "opentrons_96_filtertiprack_1000ul_E2", + "F2": "opentrons_96_filtertiprack_1000ul_F2", + "G2": "opentrons_96_filtertiprack_1000ul_G2", + "H2": "opentrons_96_filtertiprack_1000ul_H2", + "A3": "opentrons_96_filtertiprack_1000ul_A3", + "B3": "opentrons_96_filtertiprack_1000ul_B3", + "C3": "opentrons_96_filtertiprack_1000ul_C3", + "D3": "opentrons_96_filtertiprack_1000ul_D3", + "E3": "opentrons_96_filtertiprack_1000ul_E3", + "F3": "opentrons_96_filtertiprack_1000ul_F3", + "G3": "opentrons_96_filtertiprack_1000ul_G3", + "H3": "opentrons_96_filtertiprack_1000ul_H3", + "A4": "opentrons_96_filtertiprack_1000ul_A4", + "B4": "opentrons_96_filtertiprack_1000ul_B4", + "C4": "opentrons_96_filtertiprack_1000ul_C4", + "D4": "opentrons_96_filtertiprack_1000ul_D4", + "E4": "opentrons_96_filtertiprack_1000ul_E4", + "F4": "opentrons_96_filtertiprack_1000ul_F4", + "G4": "opentrons_96_filtertiprack_1000ul_G4", + "H4": "opentrons_96_filtertiprack_1000ul_H4", + "A5": "opentrons_96_filtertiprack_1000ul_A5", + "B5": "opentrons_96_filtertiprack_1000ul_B5", + "C5": "opentrons_96_filtertiprack_1000ul_C5", + "D5": "opentrons_96_filtertiprack_1000ul_D5", + "E5": "opentrons_96_filtertiprack_1000ul_E5", + "F5": "opentrons_96_filtertiprack_1000ul_F5", + "G5": "opentrons_96_filtertiprack_1000ul_G5", + "H5": "opentrons_96_filtertiprack_1000ul_H5", + "A6": "opentrons_96_filtertiprack_1000ul_A6", + "B6": "opentrons_96_filtertiprack_1000ul_B6", + "C6": "opentrons_96_filtertiprack_1000ul_C6", + "D6": "opentrons_96_filtertiprack_1000ul_D6", + "E6": "opentrons_96_filtertiprack_1000ul_E6", + "F6": "opentrons_96_filtertiprack_1000ul_F6", + "G6": "opentrons_96_filtertiprack_1000ul_G6", + "H6": "opentrons_96_filtertiprack_1000ul_H6", + "A7": "opentrons_96_filtertiprack_1000ul_A7", + "B7": "opentrons_96_filtertiprack_1000ul_B7", + "C7": "opentrons_96_filtertiprack_1000ul_C7", + "D7": "opentrons_96_filtertiprack_1000ul_D7", + "E7": "opentrons_96_filtertiprack_1000ul_E7", + "F7": "opentrons_96_filtertiprack_1000ul_F7", + "G7": "opentrons_96_filtertiprack_1000ul_G7", + "H7": "opentrons_96_filtertiprack_1000ul_H7", + "A8": "opentrons_96_filtertiprack_1000ul_A8", + "B8": "opentrons_96_filtertiprack_1000ul_B8", + "C8": "opentrons_96_filtertiprack_1000ul_C8", + "D8": "opentrons_96_filtertiprack_1000ul_D8", + "E8": "opentrons_96_filtertiprack_1000ul_E8", + "F8": "opentrons_96_filtertiprack_1000ul_F8", + "G8": "opentrons_96_filtertiprack_1000ul_G8", + "H8": "opentrons_96_filtertiprack_1000ul_H8", + "A9": "opentrons_96_filtertiprack_1000ul_A9", + "B9": "opentrons_96_filtertiprack_1000ul_B9", + "C9": "opentrons_96_filtertiprack_1000ul_C9", + "D9": "opentrons_96_filtertiprack_1000ul_D9", + "E9": "opentrons_96_filtertiprack_1000ul_E9", + "F9": "opentrons_96_filtertiprack_1000ul_F9", + "G9": "opentrons_96_filtertiprack_1000ul_G9", + "H9": "opentrons_96_filtertiprack_1000ul_H9", + "A10": "opentrons_96_filtertiprack_1000ul_A10", + "B10": "opentrons_96_filtertiprack_1000ul_B10", + "C10": "opentrons_96_filtertiprack_1000ul_C10", + "D10": "opentrons_96_filtertiprack_1000ul_D10", + "E10": "opentrons_96_filtertiprack_1000ul_E10", + "F10": "opentrons_96_filtertiprack_1000ul_F10", + "G10": "opentrons_96_filtertiprack_1000ul_G10", + "H10": "opentrons_96_filtertiprack_1000ul_H10", + "A11": "opentrons_96_filtertiprack_1000ul_A11", + "B11": "opentrons_96_filtertiprack_1000ul_B11", + "C11": "opentrons_96_filtertiprack_1000ul_C11", + "D11": "opentrons_96_filtertiprack_1000ul_D11", + "E11": "opentrons_96_filtertiprack_1000ul_E11", + "F11": "opentrons_96_filtertiprack_1000ul_F11", + "G11": "opentrons_96_filtertiprack_1000ul_G11", + "H11": "opentrons_96_filtertiprack_1000ul_H11", + "A12": "opentrons_96_filtertiprack_1000ul_A12", + "B12": "opentrons_96_filtertiprack_1000ul_B12", + "C12": "opentrons_96_filtertiprack_1000ul_C12", + "D12": "opentrons_96_filtertiprack_1000ul_D12", + "E12": "opentrons_96_filtertiprack_1000ul_E12", + "F12": "opentrons_96_filtertiprack_1000ul_F12", + "G12": "opentrons_96_filtertiprack_1000ul_G12", + "H12": "opentrons_96_filtertiprack_1000ul_H12" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_A1", + "uuid": "900f0070-19bd-4930-b084-b7b747a2e45f", + "name": "opentrons_96_filtertiprack_1000ul_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.804, + "y": 71.704, + "z": 9.47 + }, + "position3d": { + "x": 11.804, + "y": 71.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_A1#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_A1#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_A1#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_A1#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.804, + "y": 71.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_B1", + "uuid": "2336ab60-9dbf-4595-b818-3c2253774329", + "name": "opentrons_96_filtertiprack_1000ul_B1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.804, + "y": 62.704, + "z": 9.47 + }, + "position3d": { + "x": 11.804, + "y": 62.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_B1#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_B1#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_B1#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_B1#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.804, + "y": 62.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_C1", + "uuid": "e63fe4af-1587-4d72-a484-e0697c752590", + "name": "opentrons_96_filtertiprack_1000ul_C1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.804, + "y": 53.704, + "z": 9.47 + }, + "position3d": { + "x": 11.804, + "y": 53.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_C1#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_C1#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_C1#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_C1#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.804, + "y": 53.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_D1", + "uuid": "79e1ea96-450f-4dde-93a1-5e5cc8efdcc6", + "name": "opentrons_96_filtertiprack_1000ul_D1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.804, + "y": 44.704, + "z": 9.47 + }, + "position3d": { + "x": 11.804, + "y": 44.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_D1#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_D1#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_D1#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_D1#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.804, + "y": 44.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_E1", + "uuid": "a21aed65-de42-46a1-8319-fd89953ef843", + "name": "opentrons_96_filtertiprack_1000ul_E1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.804, + "y": 35.704, + "z": 9.47 + }, + "position3d": { + "x": 11.804, + "y": 35.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_E1#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_E1#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_E1#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_E1#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.804, + "y": 35.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_F1", + "uuid": "8dfb2db3-6be7-47b5-9ff6-ba8313aa37e2", + "name": "opentrons_96_filtertiprack_1000ul_F1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.804, + "y": 26.704, + "z": 9.47 + }, + "position3d": { + "x": 11.804, + "y": 26.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_F1#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_F1#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_F1#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_F1#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.804, + "y": 26.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_G1", + "uuid": "eb15af24-c094-4527-92ea-50d3c3d82d86", + "name": "opentrons_96_filtertiprack_1000ul_G1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.804, + "y": 17.704, + "z": 9.47 + }, + "position3d": { + "x": 11.804, + "y": 17.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_G1#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_G1#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_G1#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_G1#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.804, + "y": 17.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_H1", + "uuid": "cf4f3c15-f288-4231-abd8-eaa511ed4cda", + "name": "opentrons_96_filtertiprack_1000ul_H1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.804, + "y": 8.704, + "z": 9.47 + }, + "position3d": { + "x": 11.804, + "y": 8.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_H1#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_H1#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_H1#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_H1#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.804, + "y": 8.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_A2", + "uuid": "f1dadad7-3d93-4234-b467-92649cae77cf", + "name": "opentrons_96_filtertiprack_1000ul_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.804, + "y": 71.704, + "z": 9.47 + }, + "position3d": { + "x": 20.804, + "y": 71.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_A2#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_A2#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_A2#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_A2#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.804, + "y": 71.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_B2", + "uuid": "eded5f76-121f-4810-ae64-f63f6292c5cb", + "name": "opentrons_96_filtertiprack_1000ul_B2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.804, + "y": 62.704, + "z": 9.47 + }, + "position3d": { + "x": 20.804, + "y": 62.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_B2#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_B2#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_B2#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_B2#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.804, + "y": 62.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_C2", + "uuid": "1601f0fe-1aa9-4d89-b03a-2788da50a63c", + "name": "opentrons_96_filtertiprack_1000ul_C2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.804, + "y": 53.704, + "z": 9.47 + }, + "position3d": { + "x": 20.804, + "y": 53.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_C2#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_C2#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_C2#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_C2#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.804, + "y": 53.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_D2", + "uuid": "ee6ba743-b1ff-42e4-9518-d4c29743c10a", + "name": "opentrons_96_filtertiprack_1000ul_D2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.804, + "y": 44.704, + "z": 9.47 + }, + "position3d": { + "x": 20.804, + "y": 44.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_D2#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_D2#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_D2#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_D2#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.804, + "y": 44.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_E2", + "uuid": "10f09abb-2b7a-425a-a9c3-fb3b7dda5bdc", + "name": "opentrons_96_filtertiprack_1000ul_E2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.804, + "y": 35.704, + "z": 9.47 + }, + "position3d": { + "x": 20.804, + "y": 35.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_E2#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_E2#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_E2#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_E2#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.804, + "y": 35.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_F2", + "uuid": "10620553-8467-4a0f-9ce8-73547b35f242", + "name": "opentrons_96_filtertiprack_1000ul_F2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.804, + "y": 26.704, + "z": 9.47 + }, + "position3d": { + "x": 20.804, + "y": 26.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_F2#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_F2#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_F2#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_F2#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.804, + "y": 26.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_G2", + "uuid": "b0bd5664-a972-47ae-a3d3-2ad3ff25af01", + "name": "opentrons_96_filtertiprack_1000ul_G2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.804, + "y": 17.704, + "z": 9.47 + }, + "position3d": { + "x": 20.804, + "y": 17.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_G2#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_G2#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_G2#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_G2#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.804, + "y": 17.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_H2", + "uuid": "745ea60f-b87d-4de7-b806-1b0178f6b9d7", + "name": "opentrons_96_filtertiprack_1000ul_H2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.804, + "y": 8.704, + "z": 9.47 + }, + "position3d": { + "x": 20.804, + "y": 8.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_H2#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_H2#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_H2#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_H2#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.804, + "y": 8.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_A3", + "uuid": "cebd96d8-6074-4f88-a6ef-b699d8a6cdc8", + "name": "opentrons_96_filtertiprack_1000ul_A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.804, + "y": 71.704, + "z": 9.47 + }, + "position3d": { + "x": 29.804, + "y": 71.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_A3#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_A3#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_A3#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_A3#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.804, + "y": 71.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_B3", + "uuid": "980985b0-bc15-4cf5-a398-6386a12e89a4", + "name": "opentrons_96_filtertiprack_1000ul_B3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.804, + "y": 62.704, + "z": 9.47 + }, + "position3d": { + "x": 29.804, + "y": 62.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_B3#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_B3#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_B3#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_B3#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.804, + "y": 62.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_C3", + "uuid": "5307ae8e-5109-4208-b58b-452aca5da6ee", + "name": "opentrons_96_filtertiprack_1000ul_C3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.804, + "y": 53.704, + "z": 9.47 + }, + "position3d": { + "x": 29.804, + "y": 53.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_C3#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_C3#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_C3#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_C3#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.804, + "y": 53.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_D3", + "uuid": "9e89a3ba-8495-41fd-8bfc-7c94c39de2f0", + "name": "opentrons_96_filtertiprack_1000ul_D3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.804, + "y": 44.704, + "z": 9.47 + }, + "position3d": { + "x": 29.804, + "y": 44.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_D3#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_D3#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_D3#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_D3#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.804, + "y": 44.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_E3", + "uuid": "37b26e7c-e175-4f3b-a8c5-4c76cea95631", + "name": "opentrons_96_filtertiprack_1000ul_E3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.804, + "y": 35.704, + "z": 9.47 + }, + "position3d": { + "x": 29.804, + "y": 35.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_E3#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_E3#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_E3#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_E3#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.804, + "y": 35.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_F3", + "uuid": "f5e8cc8e-da2b-421b-8d5e-10059490d1bc", + "name": "opentrons_96_filtertiprack_1000ul_F3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.804, + "y": 26.704, + "z": 9.47 + }, + "position3d": { + "x": 29.804, + "y": 26.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_F3#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_F3#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_F3#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_F3#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.804, + "y": 26.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_G3", + "uuid": "c846e4c6-1a1c-4db1-82af-22b7e04d51fa", + "name": "opentrons_96_filtertiprack_1000ul_G3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.804, + "y": 17.704, + "z": 9.47 + }, + "position3d": { + "x": 29.804, + "y": 17.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_G3#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_G3#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_G3#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_G3#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.804, + "y": 17.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_H3", + "uuid": "80811f6b-95d4-4c88-94b0-b6450c5f800b", + "name": "opentrons_96_filtertiprack_1000ul_H3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.804, + "y": 8.704, + "z": 9.47 + }, + "position3d": { + "x": 29.804, + "y": 8.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_H3#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_H3#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_H3#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_H3#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.804, + "y": 8.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_A4", + "uuid": "565ecf87-c419-407c-96e3-773a4a6af142", + "name": "opentrons_96_filtertiprack_1000ul_A4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.804, + "y": 71.704, + "z": 9.47 + }, + "position3d": { + "x": 38.804, + "y": 71.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_A4#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_A4#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_A4#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_A4#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.804, + "y": 71.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_B4", + "uuid": "cff548e3-0642-416e-a5e9-14c63d012aaf", + "name": "opentrons_96_filtertiprack_1000ul_B4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.804, + "y": 62.704, + "z": 9.47 + }, + "position3d": { + "x": 38.804, + "y": 62.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_B4#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_B4#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_B4#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_B4#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.804, + "y": 62.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_C4", + "uuid": "86a2f7dc-5a32-4342-b1aa-f7da98d9a3df", + "name": "opentrons_96_filtertiprack_1000ul_C4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.804, + "y": 53.704, + "z": 9.47 + }, + "position3d": { + "x": 38.804, + "y": 53.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_C4#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_C4#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_C4#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_C4#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.804, + "y": 53.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_D4", + "uuid": "9e3ad6ba-f227-454a-af8c-3261bf77b530", + "name": "opentrons_96_filtertiprack_1000ul_D4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.804, + "y": 44.704, + "z": 9.47 + }, + "position3d": { + "x": 38.804, + "y": 44.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_D4#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_D4#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_D4#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_D4#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.804, + "y": 44.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_E4", + "uuid": "d0afbecf-cdf9-4d7d-9474-4b1fdb32d28d", + "name": "opentrons_96_filtertiprack_1000ul_E4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.804, + "y": 35.704, + "z": 9.47 + }, + "position3d": { + "x": 38.804, + "y": 35.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_E4#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_E4#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_E4#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_E4#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.804, + "y": 35.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_F4", + "uuid": "82cc62cb-bfb9-4ea1-95a6-847b16b0636d", + "name": "opentrons_96_filtertiprack_1000ul_F4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.804, + "y": 26.704, + "z": 9.47 + }, + "position3d": { + "x": 38.804, + "y": 26.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_F4#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_F4#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_F4#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_F4#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.804, + "y": 26.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_G4", + "uuid": "468e738f-faff-4398-8544-18801ed9ff6c", + "name": "opentrons_96_filtertiprack_1000ul_G4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.804, + "y": 17.704, + "z": 9.47 + }, + "position3d": { + "x": 38.804, + "y": 17.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_G4#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_G4#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_G4#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_G4#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.804, + "y": 17.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_H4", + "uuid": "b4c42a7e-97af-434c-8596-8689244ac736", + "name": "opentrons_96_filtertiprack_1000ul_H4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.804, + "y": 8.704, + "z": 9.47 + }, + "position3d": { + "x": 38.804, + "y": 8.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_H4#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_H4#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_H4#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_H4#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.804, + "y": 8.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_A5", + "uuid": "69e638a7-9bc4-4918-a823-00a3a3ee372d", + "name": "opentrons_96_filtertiprack_1000ul_A5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.804, + "y": 71.704, + "z": 9.47 + }, + "position3d": { + "x": 47.804, + "y": 71.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_A5#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_A5#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_A5#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_A5#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.804, + "y": 71.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_B5", + "uuid": "6f71551c-59a6-48c8-abab-a6376148fbbf", + "name": "opentrons_96_filtertiprack_1000ul_B5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.804, + "y": 62.704, + "z": 9.47 + }, + "position3d": { + "x": 47.804, + "y": 62.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_B5#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_B5#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_B5#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_B5#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.804, + "y": 62.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_C5", + "uuid": "bbf0aec1-f210-4239-a6ad-13dbeeaac98e", + "name": "opentrons_96_filtertiprack_1000ul_C5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.804, + "y": 53.704, + "z": 9.47 + }, + "position3d": { + "x": 47.804, + "y": 53.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_C5#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_C5#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_C5#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_C5#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.804, + "y": 53.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_D5", + "uuid": "b298964b-67ef-497b-9819-6e826036939d", + "name": "opentrons_96_filtertiprack_1000ul_D5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.804, + "y": 44.704, + "z": 9.47 + }, + "position3d": { + "x": 47.804, + "y": 44.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_D5#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_D5#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_D5#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_D5#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.804, + "y": 44.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_E5", + "uuid": "9aadeb8a-9796-4fe0-a74b-4b3c3f2dbe8a", + "name": "opentrons_96_filtertiprack_1000ul_E5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.804, + "y": 35.704, + "z": 9.47 + }, + "position3d": { + "x": 47.804, + "y": 35.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_E5#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_E5#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_E5#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_E5#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.804, + "y": 35.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_F5", + "uuid": "5e8359d7-5606-494a-b0af-7617ad0c5e5f", + "name": "opentrons_96_filtertiprack_1000ul_F5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.804, + "y": 26.704, + "z": 9.47 + }, + "position3d": { + "x": 47.804, + "y": 26.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_F5#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_F5#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_F5#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_F5#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.804, + "y": 26.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_G5", + "uuid": "22a2db90-6915-4714-b731-6566a26b5169", + "name": "opentrons_96_filtertiprack_1000ul_G5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.804, + "y": 17.704, + "z": 9.47 + }, + "position3d": { + "x": 47.804, + "y": 17.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_G5#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_G5#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_G5#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_G5#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.804, + "y": 17.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_H5", + "uuid": "3d52ad8d-aade-41a2-86ae-d03d518174f3", + "name": "opentrons_96_filtertiprack_1000ul_H5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.804, + "y": 8.704, + "z": 9.47 + }, + "position3d": { + "x": 47.804, + "y": 8.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_H5#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_H5#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_H5#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_H5#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.804, + "y": 8.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_A6", + "uuid": "0db85fb5-108a-4c17-979c-91a0aa8b6568", + "name": "opentrons_96_filtertiprack_1000ul_A6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.804, + "y": 71.704, + "z": 9.47 + }, + "position3d": { + "x": 56.804, + "y": 71.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_A6#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_A6#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_A6#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_A6#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.804, + "y": 71.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_B6", + "uuid": "d44efcac-0a42-4d66-aa51-dc1390795f0f", + "name": "opentrons_96_filtertiprack_1000ul_B6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.804, + "y": 62.704, + "z": 9.47 + }, + "position3d": { + "x": 56.804, + "y": 62.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_B6#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_B6#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_B6#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_B6#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.804, + "y": 62.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_C6", + "uuid": "fdd3a510-7ec3-41a5-8008-57d97308af3d", + "name": "opentrons_96_filtertiprack_1000ul_C6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.804, + "y": 53.704, + "z": 9.47 + }, + "position3d": { + "x": 56.804, + "y": 53.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_C6#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_C6#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_C6#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_C6#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.804, + "y": 53.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_D6", + "uuid": "bb540bba-bc6d-46ca-91a8-c438736e6cc8", + "name": "opentrons_96_filtertiprack_1000ul_D6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.804, + "y": 44.704, + "z": 9.47 + }, + "position3d": { + "x": 56.804, + "y": 44.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_D6#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_D6#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_D6#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_D6#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.804, + "y": 44.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_E6", + "uuid": "262d65bc-203c-4512-9899-a35784ee332f", + "name": "opentrons_96_filtertiprack_1000ul_E6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.804, + "y": 35.704, + "z": 9.47 + }, + "position3d": { + "x": 56.804, + "y": 35.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_E6#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_E6#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_E6#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_E6#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.804, + "y": 35.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_F6", + "uuid": "f025d6c6-9c43-431b-bd71-35694f45a090", + "name": "opentrons_96_filtertiprack_1000ul_F6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.804, + "y": 26.704, + "z": 9.47 + }, + "position3d": { + "x": 56.804, + "y": 26.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_F6#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_F6#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_F6#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_F6#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.804, + "y": 26.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_G6", + "uuid": "0b6226b8-6cc7-474e-b6a4-ea99a0de01b9", + "name": "opentrons_96_filtertiprack_1000ul_G6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.804, + "y": 17.704, + "z": 9.47 + }, + "position3d": { + "x": 56.804, + "y": 17.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_G6#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_G6#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_G6#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_G6#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.804, + "y": 17.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_H6", + "uuid": "a604260c-c0a4-4121-b148-05ef7d1da233", + "name": "opentrons_96_filtertiprack_1000ul_H6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.804, + "y": 8.704, + "z": 9.47 + }, + "position3d": { + "x": 56.804, + "y": 8.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_H6#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_H6#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_H6#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_H6#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.804, + "y": 8.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_A7", + "uuid": "179fad50-1a9a-4714-a0b1-9f5150bd361d", + "name": "opentrons_96_filtertiprack_1000ul_A7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.804, + "y": 71.704, + "z": 9.47 + }, + "position3d": { + "x": 65.804, + "y": 71.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_A7#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_A7#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_A7#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_A7#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.804, + "y": 71.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_B7", + "uuid": "ad5e7455-7d34-4f08-82d1-6b2516d197c6", + "name": "opentrons_96_filtertiprack_1000ul_B7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.804, + "y": 62.704, + "z": 9.47 + }, + "position3d": { + "x": 65.804, + "y": 62.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_B7#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_B7#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_B7#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_B7#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.804, + "y": 62.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_C7", + "uuid": "6cdb99ac-e8d2-4cd8-a548-536d580a9968", + "name": "opentrons_96_filtertiprack_1000ul_C7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.804, + "y": 53.704, + "z": 9.47 + }, + "position3d": { + "x": 65.804, + "y": 53.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_C7#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_C7#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_C7#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_C7#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.804, + "y": 53.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_D7", + "uuid": "d95dfd9a-d377-45b2-b39f-5990ab0bc10e", + "name": "opentrons_96_filtertiprack_1000ul_D7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.804, + "y": 44.704, + "z": 9.47 + }, + "position3d": { + "x": 65.804, + "y": 44.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_D7#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_D7#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_D7#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_D7#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.804, + "y": 44.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_E7", + "uuid": "11c613aa-313b-4600-8ec7-12f36da7863d", + "name": "opentrons_96_filtertiprack_1000ul_E7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.804, + "y": 35.704, + "z": 9.47 + }, + "position3d": { + "x": 65.804, + "y": 35.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_E7#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_E7#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_E7#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_E7#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.804, + "y": 35.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_F7", + "uuid": "59b79240-d5ea-4c3a-abcd-15b92f13f1f1", + "name": "opentrons_96_filtertiprack_1000ul_F7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.804, + "y": 26.704, + "z": 9.47 + }, + "position3d": { + "x": 65.804, + "y": 26.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_F7#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_F7#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_F7#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_F7#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.804, + "y": 26.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_G7", + "uuid": "6765e7fa-f762-4cf2-96db-fd7dd1c3a5e0", + "name": "opentrons_96_filtertiprack_1000ul_G7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.804, + "y": 17.704, + "z": 9.47 + }, + "position3d": { + "x": 65.804, + "y": 17.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_G7#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_G7#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_G7#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_G7#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.804, + "y": 17.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_H7", + "uuid": "63764712-ba5d-429a-b0a2-1769843e76ce", + "name": "opentrons_96_filtertiprack_1000ul_H7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.804, + "y": 8.704, + "z": 9.47 + }, + "position3d": { + "x": 65.804, + "y": 8.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_H7#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_H7#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_H7#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_H7#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.804, + "y": 8.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_A8", + "uuid": "8ecf3fd4-3866-496b-8b10-77133dbfac9f", + "name": "opentrons_96_filtertiprack_1000ul_A8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.804, + "y": 71.704, + "z": 9.47 + }, + "position3d": { + "x": 74.804, + "y": 71.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_A8#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_A8#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_A8#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_A8#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.804, + "y": 71.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_B8", + "uuid": "5632d808-a8af-478c-8a9f-bb15022385fd", + "name": "opentrons_96_filtertiprack_1000ul_B8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.804, + "y": 62.704, + "z": 9.47 + }, + "position3d": { + "x": 74.804, + "y": 62.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_B8#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_B8#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_B8#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_B8#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.804, + "y": 62.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_C8", + "uuid": "6ab11e4c-354b-4f59-9753-05a5d84b5823", + "name": "opentrons_96_filtertiprack_1000ul_C8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.804, + "y": 53.704, + "z": 9.47 + }, + "position3d": { + "x": 74.804, + "y": 53.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_C8#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_C8#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_C8#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_C8#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.804, + "y": 53.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_D8", + "uuid": "ee15f39b-4688-4217-9efc-b2f6b9fedf5d", + "name": "opentrons_96_filtertiprack_1000ul_D8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.804, + "y": 44.704, + "z": 9.47 + }, + "position3d": { + "x": 74.804, + "y": 44.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_D8#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_D8#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_D8#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_D8#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.804, + "y": 44.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_E8", + "uuid": "4d4ca46e-1994-47bc-a6a9-f4c43b2e94fc", + "name": "opentrons_96_filtertiprack_1000ul_E8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.804, + "y": 35.704, + "z": 9.47 + }, + "position3d": { + "x": 74.804, + "y": 35.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_E8#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_E8#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_E8#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_E8#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.804, + "y": 35.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_F8", + "uuid": "feb39d80-cf05-4d1f-92cd-58c391496bd8", + "name": "opentrons_96_filtertiprack_1000ul_F8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.804, + "y": 26.704, + "z": 9.47 + }, + "position3d": { + "x": 74.804, + "y": 26.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_F8#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_F8#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_F8#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_F8#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.804, + "y": 26.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_G8", + "uuid": "cbd617a0-995a-417b-bd9e-b604b1942bcf", + "name": "opentrons_96_filtertiprack_1000ul_G8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.804, + "y": 17.704, + "z": 9.47 + }, + "position3d": { + "x": 74.804, + "y": 17.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_G8#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_G8#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_G8#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_G8#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.804, + "y": 17.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_H8", + "uuid": "42f7330b-9c8c-4109-8a09-5e36284ea104", + "name": "opentrons_96_filtertiprack_1000ul_H8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.804, + "y": 8.704, + "z": 9.47 + }, + "position3d": { + "x": 74.804, + "y": 8.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_H8#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_H8#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_H8#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_H8#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.804, + "y": 8.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_A9", + "uuid": "3caca354-2ba2-4c74-aaf0-3f5e3bddf431", + "name": "opentrons_96_filtertiprack_1000ul_A9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.804, + "y": 71.704, + "z": 9.47 + }, + "position3d": { + "x": 83.804, + "y": 71.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_A9#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_A9#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_A9#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_A9#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.804, + "y": 71.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_B9", + "uuid": "2590bac4-5f90-4740-8280-8a74a169ce04", + "name": "opentrons_96_filtertiprack_1000ul_B9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.804, + "y": 62.704, + "z": 9.47 + }, + "position3d": { + "x": 83.804, + "y": 62.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_B9#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_B9#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_B9#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_B9#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.804, + "y": 62.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_C9", + "uuid": "41714bfa-f311-476b-ad9c-93d06a2ecc57", + "name": "opentrons_96_filtertiprack_1000ul_C9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.804, + "y": 53.704, + "z": 9.47 + }, + "position3d": { + "x": 83.804, + "y": 53.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_C9#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_C9#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_C9#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_C9#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.804, + "y": 53.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_D9", + "uuid": "5c2ec30c-11b4-452e-abd5-520a9009089f", + "name": "opentrons_96_filtertiprack_1000ul_D9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.804, + "y": 44.704, + "z": 9.47 + }, + "position3d": { + "x": 83.804, + "y": 44.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_D9#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_D9#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_D9#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_D9#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.804, + "y": 44.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_E9", + "uuid": "bcc9c5f2-db08-4a6d-852d-b489dcd0e7e3", + "name": "opentrons_96_filtertiprack_1000ul_E9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.804, + "y": 35.704, + "z": 9.47 + }, + "position3d": { + "x": 83.804, + "y": 35.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_E9#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_E9#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_E9#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_E9#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.804, + "y": 35.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_F9", + "uuid": "dad8e9c6-eeb7-49cc-ac49-76703cede204", + "name": "opentrons_96_filtertiprack_1000ul_F9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.804, + "y": 26.704, + "z": 9.47 + }, + "position3d": { + "x": 83.804, + "y": 26.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_F9#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_F9#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_F9#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_F9#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.804, + "y": 26.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_G9", + "uuid": "6adda345-72ef-4da7-ba19-2066530e727d", + "name": "opentrons_96_filtertiprack_1000ul_G9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.804, + "y": 17.704, + "z": 9.47 + }, + "position3d": { + "x": 83.804, + "y": 17.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_G9#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_G9#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_G9#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_G9#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.804, + "y": 17.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_H9", + "uuid": "f0c377ea-72c5-4a24-a5be-36b632c5ab68", + "name": "opentrons_96_filtertiprack_1000ul_H9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.804, + "y": 8.704, + "z": 9.47 + }, + "position3d": { + "x": 83.804, + "y": 8.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_H9#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_H9#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_H9#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_H9#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.804, + "y": 8.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_A10", + "uuid": "7954c385-ff40-43fd-9a55-dc258c5d4660", + "name": "opentrons_96_filtertiprack_1000ul_A10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.804, + "y": 71.704, + "z": 9.47 + }, + "position3d": { + "x": 92.804, + "y": 71.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_A10#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_A10#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_A10#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_A10#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.804, + "y": 71.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_B10", + "uuid": "27c7a277-470e-4084-a32e-dded6dcee426", + "name": "opentrons_96_filtertiprack_1000ul_B10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.804, + "y": 62.704, + "z": 9.47 + }, + "position3d": { + "x": 92.804, + "y": 62.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_B10#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_B10#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_B10#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_B10#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.804, + "y": 62.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_C10", + "uuid": "4085a68a-a718-4aa0-9798-0f25389f2771", + "name": "opentrons_96_filtertiprack_1000ul_C10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.804, + "y": 53.704, + "z": 9.47 + }, + "position3d": { + "x": 92.804, + "y": 53.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_C10#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_C10#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_C10#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_C10#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.804, + "y": 53.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_D10", + "uuid": "87a75591-2f3b-4577-b669-d4caf108fbc0", + "name": "opentrons_96_filtertiprack_1000ul_D10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.804, + "y": 44.704, + "z": 9.47 + }, + "position3d": { + "x": 92.804, + "y": 44.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_D10#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_D10#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_D10#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_D10#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.804, + "y": 44.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_E10", + "uuid": "adb219d7-50a3-4aaa-ae9c-f0867c577072", + "name": "opentrons_96_filtertiprack_1000ul_E10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.804, + "y": 35.704, + "z": 9.47 + }, + "position3d": { + "x": 92.804, + "y": 35.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_E10#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_E10#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_E10#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_E10#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.804, + "y": 35.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_F10", + "uuid": "5d16e4fe-e83f-4a63-8b75-a1f74319d50a", + "name": "opentrons_96_filtertiprack_1000ul_F10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.804, + "y": 26.704, + "z": 9.47 + }, + "position3d": { + "x": 92.804, + "y": 26.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_F10#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_F10#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_F10#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_F10#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.804, + "y": 26.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_G10", + "uuid": "b45233fa-640c-4ee8-9f2e-572741af6ab5", + "name": "opentrons_96_filtertiprack_1000ul_G10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.804, + "y": 17.704, + "z": 9.47 + }, + "position3d": { + "x": 92.804, + "y": 17.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_G10#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_G10#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_G10#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_G10#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.804, + "y": 17.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_H10", + "uuid": "3ef2923d-e35a-4d2c-8bd8-27a16af6ab21", + "name": "opentrons_96_filtertiprack_1000ul_H10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.804, + "y": 8.704, + "z": 9.47 + }, + "position3d": { + "x": 92.804, + "y": 8.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_H10#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_H10#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_H10#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_H10#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.804, + "y": 8.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_A11", + "uuid": "f21309ae-97db-47f8-a3c0-1add6fa56d84", + "name": "opentrons_96_filtertiprack_1000ul_A11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.804, + "y": 71.704, + "z": 9.47 + }, + "position3d": { + "x": 101.804, + "y": 71.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_A11#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_A11#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_A11#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_A11#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.804, + "y": 71.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_B11", + "uuid": "3e040581-30c3-40d2-976c-1812d9179a60", + "name": "opentrons_96_filtertiprack_1000ul_B11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.804, + "y": 62.704, + "z": 9.47 + }, + "position3d": { + "x": 101.804, + "y": 62.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_B11#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_B11#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_B11#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_B11#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.804, + "y": 62.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_C11", + "uuid": "64eaa2bb-73de-41c3-94a8-2f9ce3d3616c", + "name": "opentrons_96_filtertiprack_1000ul_C11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.804, + "y": 53.704, + "z": 9.47 + }, + "position3d": { + "x": 101.804, + "y": 53.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_C11#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_C11#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_C11#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_C11#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.804, + "y": 53.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_D11", + "uuid": "1d637e65-d1e0-4f76-ab67-84267bbbac6d", + "name": "opentrons_96_filtertiprack_1000ul_D11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.804, + "y": 44.704, + "z": 9.47 + }, + "position3d": { + "x": 101.804, + "y": 44.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_D11#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_D11#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_D11#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_D11#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.804, + "y": 44.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_E11", + "uuid": "d0b7f5a6-de87-40b4-b414-d763d62114d7", + "name": "opentrons_96_filtertiprack_1000ul_E11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.804, + "y": 35.704, + "z": 9.47 + }, + "position3d": { + "x": 101.804, + "y": 35.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_E11#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_E11#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_E11#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_E11#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.804, + "y": 35.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_F11", + "uuid": "4cbffa5f-ed14-4996-a9dd-4e612cfb67a6", + "name": "opentrons_96_filtertiprack_1000ul_F11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.804, + "y": 26.704, + "z": 9.47 + }, + "position3d": { + "x": 101.804, + "y": 26.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_F11#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_F11#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_F11#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_F11#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.804, + "y": 26.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_G11", + "uuid": "e502c5ff-6221-483d-b216-202a158e7673", + "name": "opentrons_96_filtertiprack_1000ul_G11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.804, + "y": 17.704, + "z": 9.47 + }, + "position3d": { + "x": 101.804, + "y": 17.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_G11#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_G11#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_G11#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_G11#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.804, + "y": 17.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_H11", + "uuid": "62cabf6b-a5e7-431c-9327-0d3c057cb23b", + "name": "opentrons_96_filtertiprack_1000ul_H11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.804, + "y": 8.704, + "z": 9.47 + }, + "position3d": { + "x": 101.804, + "y": 8.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_H11#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_H11#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_H11#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_H11#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.804, + "y": 8.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_A12", + "uuid": "9ece3ecc-0316-434b-981f-e82e05806e71", + "name": "opentrons_96_filtertiprack_1000ul_A12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.804, + "y": 71.704, + "z": 9.47 + }, + "position3d": { + "x": 110.804, + "y": 71.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_A12#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_A12#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_A12#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_A12#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.804, + "y": 71.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_B12", + "uuid": "f0070c08-ba3d-4227-8825-e76f1b683c4b", + "name": "opentrons_96_filtertiprack_1000ul_B12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.804, + "y": 62.704, + "z": 9.47 + }, + "position3d": { + "x": 110.804, + "y": 62.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_B12#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_B12#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_B12#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_B12#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.804, + "y": 62.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_C12", + "uuid": "f8f5195e-94a2-4dc9-bd70-04de923b3bdc", + "name": "opentrons_96_filtertiprack_1000ul_C12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.804, + "y": 53.704, + "z": 9.47 + }, + "position3d": { + "x": 110.804, + "y": 53.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_C12#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_C12#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_C12#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_C12#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.804, + "y": 53.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_D12", + "uuid": "6e246d61-4fea-47b5-a621-73c1562919df", + "name": "opentrons_96_filtertiprack_1000ul_D12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.804, + "y": 44.704, + "z": 9.47 + }, + "position3d": { + "x": 110.804, + "y": 44.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_D12#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_D12#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_D12#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_D12#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.804, + "y": 44.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_E12", + "uuid": "b8733dd1-d32f-4a4a-b688-8d380c35afe1", + "name": "opentrons_96_filtertiprack_1000ul_E12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.804, + "y": 35.704, + "z": 9.47 + }, + "position3d": { + "x": 110.804, + "y": 35.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_E12#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_E12#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_E12#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_E12#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.804, + "y": 35.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_F12", + "uuid": "f9c8b21c-d61a-480c-833e-0f4bc0959ea8", + "name": "opentrons_96_filtertiprack_1000ul_F12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.804, + "y": 26.704, + "z": 9.47 + }, + "position3d": { + "x": 110.804, + "y": 26.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_F12#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_F12#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_F12#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_F12#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.804, + "y": 26.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_G12", + "uuid": "f73060d0-4f54-43bc-a0e9-434e4069b26d", + "name": "opentrons_96_filtertiprack_1000ul_G12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.804, + "y": 17.704, + "z": 9.47 + }, + "position3d": { + "x": 110.804, + "y": 17.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_G12#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_G12#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_G12#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_G12#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.804, + "y": 17.704, + "z": 9.47 + } + }, + { + "id": "opentrons_96_filtertiprack_1000ul_H12", + "uuid": "429ab888-7d22-428e-8426-9914f00adbd9", + "name": "opentrons_96_filtertiprack_1000ul_H12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "87b98427-8047-4e0b-9576-2010ac91bf81", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.804, + "y": 8.704, + "z": 9.47 + }, + "position3d": { + "x": 110.804, + "y": 8.704, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_H12#1", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_H12#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_1000ul_H12#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_1000ul_H12#0", + "total_tip_length": 88, + "has_filter": true, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.804, + "y": 8.704, + "z": 9.47 + } + } + ] + }, + { + "id": "opentrons_96_filtertiprack_10ul", + "category": [ + "tip_racks" + ], + "class": { + "module": "pylabrobot.resources.opentrons.tip_racks:opentrons_96_filtertiprack_10ul", + "type": "pylabrobot" + }, + "description": "Opentrons 96 filtertiprack 10ul", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/opentrons/tip_racks.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "opentrons_96_filtertiprack_10ul", + "uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "name": "opentrons_96_filtertiprack_10ul", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "tip_rack", + "class": "", + "pose": { + "size": { + "depth": 64.69, + "width": 127.76, + "height": 85.48 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipRack", + "size_x": 127.76, + "size_y": 85.48, + "size_z": 64.69, + "category": "tip_rack", + "model": "Opentrons OT-2 96 Filter Tip Rack 10 µL", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "opentrons_96_filtertiprack_10ul_A1", + "B1": "opentrons_96_filtertiprack_10ul_B1", + "C1": "opentrons_96_filtertiprack_10ul_C1", + "D1": "opentrons_96_filtertiprack_10ul_D1", + "E1": "opentrons_96_filtertiprack_10ul_E1", + "F1": "opentrons_96_filtertiprack_10ul_F1", + "G1": "opentrons_96_filtertiprack_10ul_G1", + "H1": "opentrons_96_filtertiprack_10ul_H1", + "A2": "opentrons_96_filtertiprack_10ul_A2", + "B2": "opentrons_96_filtertiprack_10ul_B2", + "C2": "opentrons_96_filtertiprack_10ul_C2", + "D2": "opentrons_96_filtertiprack_10ul_D2", + "E2": "opentrons_96_filtertiprack_10ul_E2", + "F2": "opentrons_96_filtertiprack_10ul_F2", + "G2": "opentrons_96_filtertiprack_10ul_G2", + "H2": "opentrons_96_filtertiprack_10ul_H2", + "A3": "opentrons_96_filtertiprack_10ul_A3", + "B3": "opentrons_96_filtertiprack_10ul_B3", + "C3": "opentrons_96_filtertiprack_10ul_C3", + "D3": "opentrons_96_filtertiprack_10ul_D3", + "E3": "opentrons_96_filtertiprack_10ul_E3", + "F3": "opentrons_96_filtertiprack_10ul_F3", + "G3": "opentrons_96_filtertiprack_10ul_G3", + "H3": "opentrons_96_filtertiprack_10ul_H3", + "A4": "opentrons_96_filtertiprack_10ul_A4", + "B4": "opentrons_96_filtertiprack_10ul_B4", + "C4": "opentrons_96_filtertiprack_10ul_C4", + "D4": "opentrons_96_filtertiprack_10ul_D4", + "E4": "opentrons_96_filtertiprack_10ul_E4", + "F4": "opentrons_96_filtertiprack_10ul_F4", + "G4": "opentrons_96_filtertiprack_10ul_G4", + "H4": "opentrons_96_filtertiprack_10ul_H4", + "A5": "opentrons_96_filtertiprack_10ul_A5", + "B5": "opentrons_96_filtertiprack_10ul_B5", + "C5": "opentrons_96_filtertiprack_10ul_C5", + "D5": "opentrons_96_filtertiprack_10ul_D5", + "E5": "opentrons_96_filtertiprack_10ul_E5", + "F5": "opentrons_96_filtertiprack_10ul_F5", + "G5": "opentrons_96_filtertiprack_10ul_G5", + "H5": "opentrons_96_filtertiprack_10ul_H5", + "A6": "opentrons_96_filtertiprack_10ul_A6", + "B6": "opentrons_96_filtertiprack_10ul_B6", + "C6": "opentrons_96_filtertiprack_10ul_C6", + "D6": "opentrons_96_filtertiprack_10ul_D6", + "E6": "opentrons_96_filtertiprack_10ul_E6", + "F6": "opentrons_96_filtertiprack_10ul_F6", + "G6": "opentrons_96_filtertiprack_10ul_G6", + "H6": "opentrons_96_filtertiprack_10ul_H6", + "A7": "opentrons_96_filtertiprack_10ul_A7", + "B7": "opentrons_96_filtertiprack_10ul_B7", + "C7": "opentrons_96_filtertiprack_10ul_C7", + "D7": "opentrons_96_filtertiprack_10ul_D7", + "E7": "opentrons_96_filtertiprack_10ul_E7", + "F7": "opentrons_96_filtertiprack_10ul_F7", + "G7": "opentrons_96_filtertiprack_10ul_G7", + "H7": "opentrons_96_filtertiprack_10ul_H7", + "A8": "opentrons_96_filtertiprack_10ul_A8", + "B8": "opentrons_96_filtertiprack_10ul_B8", + "C8": "opentrons_96_filtertiprack_10ul_C8", + "D8": "opentrons_96_filtertiprack_10ul_D8", + "E8": "opentrons_96_filtertiprack_10ul_E8", + "F8": "opentrons_96_filtertiprack_10ul_F8", + "G8": "opentrons_96_filtertiprack_10ul_G8", + "H8": "opentrons_96_filtertiprack_10ul_H8", + "A9": "opentrons_96_filtertiprack_10ul_A9", + "B9": "opentrons_96_filtertiprack_10ul_B9", + "C9": "opentrons_96_filtertiprack_10ul_C9", + "D9": "opentrons_96_filtertiprack_10ul_D9", + "E9": "opentrons_96_filtertiprack_10ul_E9", + "F9": "opentrons_96_filtertiprack_10ul_F9", + "G9": "opentrons_96_filtertiprack_10ul_G9", + "H9": "opentrons_96_filtertiprack_10ul_H9", + "A10": "opentrons_96_filtertiprack_10ul_A10", + "B10": "opentrons_96_filtertiprack_10ul_B10", + "C10": "opentrons_96_filtertiprack_10ul_C10", + "D10": "opentrons_96_filtertiprack_10ul_D10", + "E10": "opentrons_96_filtertiprack_10ul_E10", + "F10": "opentrons_96_filtertiprack_10ul_F10", + "G10": "opentrons_96_filtertiprack_10ul_G10", + "H10": "opentrons_96_filtertiprack_10ul_H10", + "A11": "opentrons_96_filtertiprack_10ul_A11", + "B11": "opentrons_96_filtertiprack_10ul_B11", + "C11": "opentrons_96_filtertiprack_10ul_C11", + "D11": "opentrons_96_filtertiprack_10ul_D11", + "E11": "opentrons_96_filtertiprack_10ul_E11", + "F11": "opentrons_96_filtertiprack_10ul_F11", + "G11": "opentrons_96_filtertiprack_10ul_G11", + "H11": "opentrons_96_filtertiprack_10ul_H11", + "A12": "opentrons_96_filtertiprack_10ul_A12", + "B12": "opentrons_96_filtertiprack_10ul_B12", + "C12": "opentrons_96_filtertiprack_10ul_C12", + "D12": "opentrons_96_filtertiprack_10ul_D12", + "E12": "opentrons_96_filtertiprack_10ul_E12", + "F12": "opentrons_96_filtertiprack_10ul_F12", + "G12": "opentrons_96_filtertiprack_10ul_G12", + "H12": "opentrons_96_filtertiprack_10ul_H12" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_A1", + "uuid": "92b3b699-7489-417b-aa5b-7d190e7ddfdf", + "name": "opentrons_96_filtertiprack_10ul_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 13.204, + "y": 73.104, + "z": 25.49 + }, + "position3d": { + "x": 13.204, + "y": 73.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_A1#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_A1#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_A1#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_A1#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 13.204, + "y": 73.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_B1", + "uuid": "68365f8d-e824-4fcf-85b8-83c4ff104c45", + "name": "opentrons_96_filtertiprack_10ul_B1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 13.204, + "y": 64.104, + "z": 25.49 + }, + "position3d": { + "x": 13.204, + "y": 64.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_B1#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_B1#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_B1#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_B1#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 13.204, + "y": 64.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_C1", + "uuid": "48af0521-9507-451d-8883-20354e265148", + "name": "opentrons_96_filtertiprack_10ul_C1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 13.204, + "y": 55.104, + "z": 25.49 + }, + "position3d": { + "x": 13.204, + "y": 55.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_C1#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_C1#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_C1#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_C1#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 13.204, + "y": 55.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_D1", + "uuid": "34082e04-6eaf-49ed-86ca-ef204d014816", + "name": "opentrons_96_filtertiprack_10ul_D1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 13.204, + "y": 46.104, + "z": 25.49 + }, + "position3d": { + "x": 13.204, + "y": 46.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_D1#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_D1#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_D1#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_D1#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 13.204, + "y": 46.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_E1", + "uuid": "fe0d38dc-e886-4a5e-b811-bf03deb95bf7", + "name": "opentrons_96_filtertiprack_10ul_E1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 13.204, + "y": 37.104, + "z": 25.49 + }, + "position3d": { + "x": 13.204, + "y": 37.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_E1#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_E1#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_E1#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_E1#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 13.204, + "y": 37.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_F1", + "uuid": "0d71b8a8-7818-4014-b1f8-e1e35cc2d9a8", + "name": "opentrons_96_filtertiprack_10ul_F1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 13.204, + "y": 28.104, + "z": 25.49 + }, + "position3d": { + "x": 13.204, + "y": 28.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_F1#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_F1#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_F1#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_F1#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 13.204, + "y": 28.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_G1", + "uuid": "e4b77ef1-d16f-4693-82c5-71d8081ba87f", + "name": "opentrons_96_filtertiprack_10ul_G1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 13.204, + "y": 19.104, + "z": 25.49 + }, + "position3d": { + "x": 13.204, + "y": 19.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_G1#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_G1#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_G1#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_G1#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 13.204, + "y": 19.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_H1", + "uuid": "4993e7e8-784c-4acc-a098-6619594f5f12", + "name": "opentrons_96_filtertiprack_10ul_H1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 13.204, + "y": 10.104, + "z": 25.49 + }, + "position3d": { + "x": 13.204, + "y": 10.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_H1#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_H1#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_H1#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_H1#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 13.204, + "y": 10.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_A2", + "uuid": "00d0d166-c4e6-4902-b286-06ec1285d00e", + "name": "opentrons_96_filtertiprack_10ul_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 22.204, + "y": 73.104, + "z": 25.49 + }, + "position3d": { + "x": 22.204, + "y": 73.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_A2#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_A2#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_A2#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_A2#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 22.204, + "y": 73.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_B2", + "uuid": "1ae120d8-e1e2-40d1-b679-c3c4f3b6efbb", + "name": "opentrons_96_filtertiprack_10ul_B2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 22.204, + "y": 64.104, + "z": 25.49 + }, + "position3d": { + "x": 22.204, + "y": 64.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_B2#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_B2#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_B2#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_B2#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 22.204, + "y": 64.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_C2", + "uuid": "4c7d6f2f-62ee-4ea5-b4db-e6de8db3eddf", + "name": "opentrons_96_filtertiprack_10ul_C2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 22.204, + "y": 55.104, + "z": 25.49 + }, + "position3d": { + "x": 22.204, + "y": 55.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_C2#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_C2#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_C2#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_C2#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 22.204, + "y": 55.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_D2", + "uuid": "ab9cf101-4c27-4fc5-9311-9c0e02e87c19", + "name": "opentrons_96_filtertiprack_10ul_D2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 22.204, + "y": 46.104, + "z": 25.49 + }, + "position3d": { + "x": 22.204, + "y": 46.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_D2#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_D2#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_D2#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_D2#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 22.204, + "y": 46.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_E2", + "uuid": "64fe7446-a0bf-4439-b5a4-cbf87d3f9858", + "name": "opentrons_96_filtertiprack_10ul_E2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 22.204, + "y": 37.104, + "z": 25.49 + }, + "position3d": { + "x": 22.204, + "y": 37.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_E2#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_E2#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_E2#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_E2#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 22.204, + "y": 37.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_F2", + "uuid": "3789af0c-f3cb-45b5-9fd8-3dd5f9b951ca", + "name": "opentrons_96_filtertiprack_10ul_F2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 22.204, + "y": 28.104, + "z": 25.49 + }, + "position3d": { + "x": 22.204, + "y": 28.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_F2#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_F2#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_F2#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_F2#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 22.204, + "y": 28.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_G2", + "uuid": "91a8d7d6-2d11-4464-b8f4-2364453de22a", + "name": "opentrons_96_filtertiprack_10ul_G2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 22.204, + "y": 19.104, + "z": 25.49 + }, + "position3d": { + "x": 22.204, + "y": 19.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_G2#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_G2#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_G2#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_G2#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 22.204, + "y": 19.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_H2", + "uuid": "1d30f160-100b-4a48-b1fc-5e8d383a5286", + "name": "opentrons_96_filtertiprack_10ul_H2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 22.204, + "y": 10.104, + "z": 25.49 + }, + "position3d": { + "x": 22.204, + "y": 10.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_H2#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_H2#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_H2#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_H2#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 22.204, + "y": 10.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_A3", + "uuid": "836bd427-d572-4ae2-892d-3b53215800c5", + "name": "opentrons_96_filtertiprack_10ul_A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 31.204, + "y": 73.104, + "z": 25.49 + }, + "position3d": { + "x": 31.204, + "y": 73.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_A3#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_A3#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_A3#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_A3#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 31.204, + "y": 73.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_B3", + "uuid": "286920c8-cafd-401c-b361-3446987cbcb4", + "name": "opentrons_96_filtertiprack_10ul_B3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 31.204, + "y": 64.104, + "z": 25.49 + }, + "position3d": { + "x": 31.204, + "y": 64.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_B3#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_B3#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_B3#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_B3#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 31.204, + "y": 64.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_C3", + "uuid": "ca90ca17-c400-486c-a318-edb43ef70b53", + "name": "opentrons_96_filtertiprack_10ul_C3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 31.204, + "y": 55.104, + "z": 25.49 + }, + "position3d": { + "x": 31.204, + "y": 55.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_C3#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_C3#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_C3#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_C3#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 31.204, + "y": 55.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_D3", + "uuid": "92ea2d44-7894-4e3f-a77f-79ac68ebf0de", + "name": "opentrons_96_filtertiprack_10ul_D3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 31.204, + "y": 46.104, + "z": 25.49 + }, + "position3d": { + "x": 31.204, + "y": 46.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_D3#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_D3#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_D3#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_D3#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 31.204, + "y": 46.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_E3", + "uuid": "8c69865e-cd82-4213-88f0-0be38b2756c9", + "name": "opentrons_96_filtertiprack_10ul_E3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 31.204, + "y": 37.104, + "z": 25.49 + }, + "position3d": { + "x": 31.204, + "y": 37.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_E3#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_E3#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_E3#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_E3#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 31.204, + "y": 37.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_F3", + "uuid": "67746b55-8007-4b79-aa17-40d5164fab76", + "name": "opentrons_96_filtertiprack_10ul_F3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 31.204, + "y": 28.104, + "z": 25.49 + }, + "position3d": { + "x": 31.204, + "y": 28.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_F3#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_F3#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_F3#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_F3#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 31.204, + "y": 28.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_G3", + "uuid": "be5d1ca4-5062-4a63-8069-4617274b2bf7", + "name": "opentrons_96_filtertiprack_10ul_G3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 31.204, + "y": 19.104, + "z": 25.49 + }, + "position3d": { + "x": 31.204, + "y": 19.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_G3#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_G3#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_G3#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_G3#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 31.204, + "y": 19.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_H3", + "uuid": "89bf57ef-f1b1-4d4d-86cf-f45d46d7b2ac", + "name": "opentrons_96_filtertiprack_10ul_H3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 31.204, + "y": 10.104, + "z": 25.49 + }, + "position3d": { + "x": 31.204, + "y": 10.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_H3#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_H3#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_H3#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_H3#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 31.204, + "y": 10.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_A4", + "uuid": "fbf4e87e-43b1-4f06-980a-fc042d2705e6", + "name": "opentrons_96_filtertiprack_10ul_A4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 40.204, + "y": 73.104, + "z": 25.49 + }, + "position3d": { + "x": 40.204, + "y": 73.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_A4#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_A4#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_A4#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_A4#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 40.204, + "y": 73.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_B4", + "uuid": "ea3c2fb5-a845-446e-ae9e-eb340cceab9c", + "name": "opentrons_96_filtertiprack_10ul_B4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 40.204, + "y": 64.104, + "z": 25.49 + }, + "position3d": { + "x": 40.204, + "y": 64.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_B4#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_B4#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_B4#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_B4#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 40.204, + "y": 64.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_C4", + "uuid": "82801670-447e-4dc6-b87c-11d6f95315ce", + "name": "opentrons_96_filtertiprack_10ul_C4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 40.204, + "y": 55.104, + "z": 25.49 + }, + "position3d": { + "x": 40.204, + "y": 55.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_C4#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_C4#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_C4#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_C4#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 40.204, + "y": 55.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_D4", + "uuid": "8a890144-dc78-4b65-89cb-b58a9cad5011", + "name": "opentrons_96_filtertiprack_10ul_D4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 40.204, + "y": 46.104, + "z": 25.49 + }, + "position3d": { + "x": 40.204, + "y": 46.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_D4#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_D4#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_D4#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_D4#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 40.204, + "y": 46.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_E4", + "uuid": "3c3d2f33-69e9-4dd5-ba47-2269e428a600", + "name": "opentrons_96_filtertiprack_10ul_E4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 40.204, + "y": 37.104, + "z": 25.49 + }, + "position3d": { + "x": 40.204, + "y": 37.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_E4#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_E4#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_E4#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_E4#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 40.204, + "y": 37.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_F4", + "uuid": "846b50bc-33b1-455d-ae10-ca530c40ffb2", + "name": "opentrons_96_filtertiprack_10ul_F4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 40.204, + "y": 28.104, + "z": 25.49 + }, + "position3d": { + "x": 40.204, + "y": 28.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_F4#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_F4#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_F4#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_F4#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 40.204, + "y": 28.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_G4", + "uuid": "d5fe8274-2c8d-4b3f-9213-10a44eb03a27", + "name": "opentrons_96_filtertiprack_10ul_G4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 40.204, + "y": 19.104, + "z": 25.49 + }, + "position3d": { + "x": 40.204, + "y": 19.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_G4#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_G4#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_G4#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_G4#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 40.204, + "y": 19.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_H4", + "uuid": "994d6e6b-96b9-4826-a9b1-74601bcd53ef", + "name": "opentrons_96_filtertiprack_10ul_H4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 40.204, + "y": 10.104, + "z": 25.49 + }, + "position3d": { + "x": 40.204, + "y": 10.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_H4#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_H4#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_H4#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_H4#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 40.204, + "y": 10.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_A5", + "uuid": "6c973051-83a1-46c4-ac2b-9e9b1a347715", + "name": "opentrons_96_filtertiprack_10ul_A5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 49.204, + "y": 73.104, + "z": 25.49 + }, + "position3d": { + "x": 49.204, + "y": 73.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_A5#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_A5#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_A5#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_A5#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 49.204, + "y": 73.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_B5", + "uuid": "0fe2a4fc-b17c-4cdc-96d7-ef735dc4090f", + "name": "opentrons_96_filtertiprack_10ul_B5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 49.204, + "y": 64.104, + "z": 25.49 + }, + "position3d": { + "x": 49.204, + "y": 64.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_B5#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_B5#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_B5#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_B5#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 49.204, + "y": 64.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_C5", + "uuid": "aad6da42-beea-423d-ae59-cabea90929f9", + "name": "opentrons_96_filtertiprack_10ul_C5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 49.204, + "y": 55.104, + "z": 25.49 + }, + "position3d": { + "x": 49.204, + "y": 55.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_C5#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_C5#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_C5#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_C5#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 49.204, + "y": 55.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_D5", + "uuid": "76b09961-5dc4-47a9-8d53-57d2e0b39e95", + "name": "opentrons_96_filtertiprack_10ul_D5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 49.204, + "y": 46.104, + "z": 25.49 + }, + "position3d": { + "x": 49.204, + "y": 46.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_D5#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_D5#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_D5#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_D5#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 49.204, + "y": 46.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_E5", + "uuid": "fa4c0681-961a-492b-8875-a52b1be3c126", + "name": "opentrons_96_filtertiprack_10ul_E5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 49.204, + "y": 37.104, + "z": 25.49 + }, + "position3d": { + "x": 49.204, + "y": 37.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_E5#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_E5#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_E5#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_E5#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 49.204, + "y": 37.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_F5", + "uuid": "474b3365-6d99-4879-89ac-c414e905ea30", + "name": "opentrons_96_filtertiprack_10ul_F5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 49.204, + "y": 28.104, + "z": 25.49 + }, + "position3d": { + "x": 49.204, + "y": 28.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_F5#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_F5#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_F5#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_F5#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 49.204, + "y": 28.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_G5", + "uuid": "15c2c3bf-8a08-4b71-a0b7-d435a2294e5b", + "name": "opentrons_96_filtertiprack_10ul_G5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 49.204, + "y": 19.104, + "z": 25.49 + }, + "position3d": { + "x": 49.204, + "y": 19.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_G5#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_G5#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_G5#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_G5#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 49.204, + "y": 19.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_H5", + "uuid": "0e2e4f8d-c99b-479c-9386-2174630d10f8", + "name": "opentrons_96_filtertiprack_10ul_H5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 49.204, + "y": 10.104, + "z": 25.49 + }, + "position3d": { + "x": 49.204, + "y": 10.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_H5#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_H5#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_H5#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_H5#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 49.204, + "y": 10.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_A6", + "uuid": "413e0b10-44f4-43ab-8623-d5db601777a9", + "name": "opentrons_96_filtertiprack_10ul_A6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 58.204, + "y": 73.104, + "z": 25.49 + }, + "position3d": { + "x": 58.204, + "y": 73.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_A6#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_A6#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_A6#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_A6#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 58.204, + "y": 73.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_B6", + "uuid": "f10dd031-e897-4c34-89b1-caca8d4212c5", + "name": "opentrons_96_filtertiprack_10ul_B6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 58.204, + "y": 64.104, + "z": 25.49 + }, + "position3d": { + "x": 58.204, + "y": 64.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_B6#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_B6#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_B6#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_B6#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 58.204, + "y": 64.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_C6", + "uuid": "13e169d7-fc41-41d3-a52b-a3b903e43450", + "name": "opentrons_96_filtertiprack_10ul_C6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 58.204, + "y": 55.104, + "z": 25.49 + }, + "position3d": { + "x": 58.204, + "y": 55.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_C6#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_C6#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_C6#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_C6#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 58.204, + "y": 55.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_D6", + "uuid": "3444f966-f7eb-4cdb-971d-1f149cfeb7ca", + "name": "opentrons_96_filtertiprack_10ul_D6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 58.204, + "y": 46.104, + "z": 25.49 + }, + "position3d": { + "x": 58.204, + "y": 46.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_D6#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_D6#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_D6#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_D6#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 58.204, + "y": 46.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_E6", + "uuid": "40c73240-7369-454a-a79f-f82e0a9aef38", + "name": "opentrons_96_filtertiprack_10ul_E6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 58.204, + "y": 37.104, + "z": 25.49 + }, + "position3d": { + "x": 58.204, + "y": 37.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_E6#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_E6#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_E6#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_E6#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 58.204, + "y": 37.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_F6", + "uuid": "3da94389-77ee-417a-ad32-d39ba196a0c7", + "name": "opentrons_96_filtertiprack_10ul_F6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 58.204, + "y": 28.104, + "z": 25.49 + }, + "position3d": { + "x": 58.204, + "y": 28.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_F6#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_F6#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_F6#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_F6#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 58.204, + "y": 28.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_G6", + "uuid": "9322857f-15b1-47b4-9886-fe6361b4d08d", + "name": "opentrons_96_filtertiprack_10ul_G6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 58.204, + "y": 19.104, + "z": 25.49 + }, + "position3d": { + "x": 58.204, + "y": 19.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_G6#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_G6#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_G6#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_G6#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 58.204, + "y": 19.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_H6", + "uuid": "3698062f-5036-44ba-91c6-06c8c35849ac", + "name": "opentrons_96_filtertiprack_10ul_H6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 58.204, + "y": 10.104, + "z": 25.49 + }, + "position3d": { + "x": 58.204, + "y": 10.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_H6#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_H6#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_H6#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_H6#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 58.204, + "y": 10.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_A7", + "uuid": "2c72ee52-7134-4cb5-8596-0772a0085739", + "name": "opentrons_96_filtertiprack_10ul_A7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 67.204, + "y": 73.104, + "z": 25.49 + }, + "position3d": { + "x": 67.204, + "y": 73.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_A7#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_A7#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_A7#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_A7#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 67.204, + "y": 73.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_B7", + "uuid": "3b0afe00-63e0-4fab-b271-10c4d19cc15c", + "name": "opentrons_96_filtertiprack_10ul_B7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 67.204, + "y": 64.104, + "z": 25.49 + }, + "position3d": { + "x": 67.204, + "y": 64.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_B7#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_B7#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_B7#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_B7#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 67.204, + "y": 64.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_C7", + "uuid": "a7f3c54c-6055-4665-a6fd-449bb906862e", + "name": "opentrons_96_filtertiprack_10ul_C7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 67.204, + "y": 55.104, + "z": 25.49 + }, + "position3d": { + "x": 67.204, + "y": 55.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_C7#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_C7#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_C7#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_C7#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 67.204, + "y": 55.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_D7", + "uuid": "e9263cf2-fcac-44ec-a03e-227591655fe3", + "name": "opentrons_96_filtertiprack_10ul_D7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 67.204, + "y": 46.104, + "z": 25.49 + }, + "position3d": { + "x": 67.204, + "y": 46.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_D7#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_D7#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_D7#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_D7#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 67.204, + "y": 46.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_E7", + "uuid": "9370b560-1a16-4503-b5e9-6a31c23740c2", + "name": "opentrons_96_filtertiprack_10ul_E7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 67.204, + "y": 37.104, + "z": 25.49 + }, + "position3d": { + "x": 67.204, + "y": 37.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_E7#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_E7#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_E7#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_E7#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 67.204, + "y": 37.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_F7", + "uuid": "94c41a52-9588-441b-8e86-8c6db37b28f9", + "name": "opentrons_96_filtertiprack_10ul_F7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 67.204, + "y": 28.104, + "z": 25.49 + }, + "position3d": { + "x": 67.204, + "y": 28.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_F7#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_F7#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_F7#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_F7#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 67.204, + "y": 28.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_G7", + "uuid": "ec1a815f-3451-4290-99bc-66b18aadd9f6", + "name": "opentrons_96_filtertiprack_10ul_G7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 67.204, + "y": 19.104, + "z": 25.49 + }, + "position3d": { + "x": 67.204, + "y": 19.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_G7#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_G7#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_G7#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_G7#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 67.204, + "y": 19.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_H7", + "uuid": "b8d98049-41e7-44a9-9c86-72b78ad250cb", + "name": "opentrons_96_filtertiprack_10ul_H7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 67.204, + "y": 10.104, + "z": 25.49 + }, + "position3d": { + "x": 67.204, + "y": 10.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_H7#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_H7#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_H7#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_H7#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 67.204, + "y": 10.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_A8", + "uuid": "c80cfd1a-131b-4288-be88-68d06a92f495", + "name": "opentrons_96_filtertiprack_10ul_A8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 76.204, + "y": 73.104, + "z": 25.49 + }, + "position3d": { + "x": 76.204, + "y": 73.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_A8#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_A8#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_A8#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_A8#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 76.204, + "y": 73.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_B8", + "uuid": "e17e12c1-aef2-4a44-8a28-f95f8139bf09", + "name": "opentrons_96_filtertiprack_10ul_B8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 76.204, + "y": 64.104, + "z": 25.49 + }, + "position3d": { + "x": 76.204, + "y": 64.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_B8#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_B8#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_B8#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_B8#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 76.204, + "y": 64.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_C8", + "uuid": "133e343d-7013-4b83-ab90-2d44363414e3", + "name": "opentrons_96_filtertiprack_10ul_C8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 76.204, + "y": 55.104, + "z": 25.49 + }, + "position3d": { + "x": 76.204, + "y": 55.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_C8#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_C8#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_C8#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_C8#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 76.204, + "y": 55.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_D8", + "uuid": "189b0f6f-caba-4c78-bc1c-037eeb16f4e1", + "name": "opentrons_96_filtertiprack_10ul_D8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 76.204, + "y": 46.104, + "z": 25.49 + }, + "position3d": { + "x": 76.204, + "y": 46.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_D8#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_D8#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_D8#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_D8#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 76.204, + "y": 46.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_E8", + "uuid": "e8b8e7bd-876b-4a7e-9cc0-dae7874b9e79", + "name": "opentrons_96_filtertiprack_10ul_E8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 76.204, + "y": 37.104, + "z": 25.49 + }, + "position3d": { + "x": 76.204, + "y": 37.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_E8#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_E8#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_E8#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_E8#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 76.204, + "y": 37.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_F8", + "uuid": "7f27e6fa-d6ad-48e1-9967-0638c576bfb4", + "name": "opentrons_96_filtertiprack_10ul_F8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 76.204, + "y": 28.104, + "z": 25.49 + }, + "position3d": { + "x": 76.204, + "y": 28.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_F8#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_F8#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_F8#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_F8#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 76.204, + "y": 28.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_G8", + "uuid": "60732f9b-36cf-4c57-b22d-14de72bb37e0", + "name": "opentrons_96_filtertiprack_10ul_G8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 76.204, + "y": 19.104, + "z": 25.49 + }, + "position3d": { + "x": 76.204, + "y": 19.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_G8#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_G8#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_G8#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_G8#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 76.204, + "y": 19.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_H8", + "uuid": "ddfdeb05-d14f-4242-b418-1f57b919a59b", + "name": "opentrons_96_filtertiprack_10ul_H8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 76.204, + "y": 10.104, + "z": 25.49 + }, + "position3d": { + "x": 76.204, + "y": 10.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_H8#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_H8#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_H8#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_H8#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 76.204, + "y": 10.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_A9", + "uuid": "85efa8f5-7571-4868-8f58-768176ae0efa", + "name": "opentrons_96_filtertiprack_10ul_A9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 85.204, + "y": 73.104, + "z": 25.49 + }, + "position3d": { + "x": 85.204, + "y": 73.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_A9#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_A9#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_A9#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_A9#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 85.204, + "y": 73.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_B9", + "uuid": "80b1412b-79dc-40bd-97e1-b6dd3c1cde5e", + "name": "opentrons_96_filtertiprack_10ul_B9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 85.204, + "y": 64.104, + "z": 25.49 + }, + "position3d": { + "x": 85.204, + "y": 64.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_B9#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_B9#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_B9#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_B9#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 85.204, + "y": 64.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_C9", + "uuid": "6782cd03-a37b-4c52-85ba-c2875a9be8fe", + "name": "opentrons_96_filtertiprack_10ul_C9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 85.204, + "y": 55.104, + "z": 25.49 + }, + "position3d": { + "x": 85.204, + "y": 55.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_C9#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_C9#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_C9#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_C9#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 85.204, + "y": 55.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_D9", + "uuid": "4ca29ad1-53d9-4b20-9e6e-4c31f7240f4d", + "name": "opentrons_96_filtertiprack_10ul_D9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 85.204, + "y": 46.104, + "z": 25.49 + }, + "position3d": { + "x": 85.204, + "y": 46.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_D9#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_D9#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_D9#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_D9#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 85.204, + "y": 46.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_E9", + "uuid": "eabd284a-ca89-48ef-ba6b-68e491d87492", + "name": "opentrons_96_filtertiprack_10ul_E9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 85.204, + "y": 37.104, + "z": 25.49 + }, + "position3d": { + "x": 85.204, + "y": 37.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_E9#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_E9#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_E9#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_E9#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 85.204, + "y": 37.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_F9", + "uuid": "4b49b3b0-a0af-4853-a48f-4294c6b7336b", + "name": "opentrons_96_filtertiprack_10ul_F9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 85.204, + "y": 28.104, + "z": 25.49 + }, + "position3d": { + "x": 85.204, + "y": 28.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_F9#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_F9#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_F9#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_F9#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 85.204, + "y": 28.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_G9", + "uuid": "cd8da620-933c-48a6-80e1-c612730227bc", + "name": "opentrons_96_filtertiprack_10ul_G9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 85.204, + "y": 19.104, + "z": 25.49 + }, + "position3d": { + "x": 85.204, + "y": 19.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_G9#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_G9#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_G9#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_G9#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 85.204, + "y": 19.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_H9", + "uuid": "3efd0953-ae0b-428b-b639-9c1fc806dab9", + "name": "opentrons_96_filtertiprack_10ul_H9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 85.204, + "y": 10.104, + "z": 25.49 + }, + "position3d": { + "x": 85.204, + "y": 10.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_H9#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_H9#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_H9#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_H9#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 85.204, + "y": 10.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_A10", + "uuid": "d6863e51-855e-4622-af90-1391fb5d7da9", + "name": "opentrons_96_filtertiprack_10ul_A10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.204, + "y": 73.104, + "z": 25.49 + }, + "position3d": { + "x": 94.204, + "y": 73.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_A10#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_A10#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_A10#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_A10#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.204, + "y": 73.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_B10", + "uuid": "03ea79c7-00d9-4b0a-9e67-a038d4ea9c56", + "name": "opentrons_96_filtertiprack_10ul_B10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.204, + "y": 64.104, + "z": 25.49 + }, + "position3d": { + "x": 94.204, + "y": 64.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_B10#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_B10#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_B10#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_B10#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.204, + "y": 64.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_C10", + "uuid": "4ec1e942-51fa-4b3c-91e4-2f2a5396d24e", + "name": "opentrons_96_filtertiprack_10ul_C10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.204, + "y": 55.104, + "z": 25.49 + }, + "position3d": { + "x": 94.204, + "y": 55.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_C10#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_C10#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_C10#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_C10#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.204, + "y": 55.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_D10", + "uuid": "78ead5c6-922b-4018-899d-6e2563bacfec", + "name": "opentrons_96_filtertiprack_10ul_D10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.204, + "y": 46.104, + "z": 25.49 + }, + "position3d": { + "x": 94.204, + "y": 46.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_D10#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_D10#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_D10#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_D10#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.204, + "y": 46.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_E10", + "uuid": "c16dc171-b9cd-4900-b473-40b773faf583", + "name": "opentrons_96_filtertiprack_10ul_E10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.204, + "y": 37.104, + "z": 25.49 + }, + "position3d": { + "x": 94.204, + "y": 37.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_E10#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_E10#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_E10#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_E10#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.204, + "y": 37.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_F10", + "uuid": "b41d5abf-660f-4c03-9e56-6c7cbdf4009c", + "name": "opentrons_96_filtertiprack_10ul_F10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.204, + "y": 28.104, + "z": 25.49 + }, + "position3d": { + "x": 94.204, + "y": 28.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_F10#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_F10#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_F10#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_F10#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.204, + "y": 28.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_G10", + "uuid": "99ae9862-78b0-45f3-968c-e353684406db", + "name": "opentrons_96_filtertiprack_10ul_G10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.204, + "y": 19.104, + "z": 25.49 + }, + "position3d": { + "x": 94.204, + "y": 19.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_G10#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_G10#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_G10#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_G10#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.204, + "y": 19.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_H10", + "uuid": "a095dd33-b771-4715-afdd-14d1f9fffbeb", + "name": "opentrons_96_filtertiprack_10ul_H10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.204, + "y": 10.104, + "z": 25.49 + }, + "position3d": { + "x": 94.204, + "y": 10.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_H10#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_H10#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_H10#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_H10#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.204, + "y": 10.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_A11", + "uuid": "26916e32-eb3a-4a45-9f03-0f8abad7fd0a", + "name": "opentrons_96_filtertiprack_10ul_A11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 103.204, + "y": 73.104, + "z": 25.49 + }, + "position3d": { + "x": 103.204, + "y": 73.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_A11#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_A11#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_A11#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_A11#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 103.204, + "y": 73.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_B11", + "uuid": "ab23ee52-c8d5-4ef7-b26e-f9da7471d40b", + "name": "opentrons_96_filtertiprack_10ul_B11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 103.204, + "y": 64.104, + "z": 25.49 + }, + "position3d": { + "x": 103.204, + "y": 64.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_B11#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_B11#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_B11#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_B11#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 103.204, + "y": 64.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_C11", + "uuid": "85241082-3537-4836-be88-68d06ed350c7", + "name": "opentrons_96_filtertiprack_10ul_C11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 103.204, + "y": 55.104, + "z": 25.49 + }, + "position3d": { + "x": 103.204, + "y": 55.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_C11#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_C11#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_C11#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_C11#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 103.204, + "y": 55.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_D11", + "uuid": "65b911bb-fb45-4a69-962f-536950a35752", + "name": "opentrons_96_filtertiprack_10ul_D11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 103.204, + "y": 46.104, + "z": 25.49 + }, + "position3d": { + "x": 103.204, + "y": 46.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_D11#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_D11#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_D11#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_D11#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 103.204, + "y": 46.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_E11", + "uuid": "e4075eee-9f8a-4151-8e5e-5e948fd61b6c", + "name": "opentrons_96_filtertiprack_10ul_E11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 103.204, + "y": 37.104, + "z": 25.49 + }, + "position3d": { + "x": 103.204, + "y": 37.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_E11#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_E11#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_E11#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_E11#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 103.204, + "y": 37.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_F11", + "uuid": "acaf06f9-925f-46e2-b1db-f4d342a92a65", + "name": "opentrons_96_filtertiprack_10ul_F11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 103.204, + "y": 28.104, + "z": 25.49 + }, + "position3d": { + "x": 103.204, + "y": 28.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_F11#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_F11#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_F11#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_F11#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 103.204, + "y": 28.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_G11", + "uuid": "c0c25141-8ab6-49fb-ac21-d995ef4f8a4a", + "name": "opentrons_96_filtertiprack_10ul_G11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 103.204, + "y": 19.104, + "z": 25.49 + }, + "position3d": { + "x": 103.204, + "y": 19.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_G11#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_G11#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_G11#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_G11#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 103.204, + "y": 19.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_H11", + "uuid": "c45080ba-e390-49a5-894f-a7bec1b77439", + "name": "opentrons_96_filtertiprack_10ul_H11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 103.204, + "y": 10.104, + "z": 25.49 + }, + "position3d": { + "x": 103.204, + "y": 10.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_H11#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_H11#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_H11#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_H11#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 103.204, + "y": 10.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_A12", + "uuid": "9e229a49-94ad-4823-ad90-35e59909747d", + "name": "opentrons_96_filtertiprack_10ul_A12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 112.204, + "y": 73.104, + "z": 25.49 + }, + "position3d": { + "x": 112.204, + "y": 73.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_A12#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_A12#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_A12#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_A12#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 112.204, + "y": 73.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_B12", + "uuid": "d6b65958-a171-432e-b185-35981073c012", + "name": "opentrons_96_filtertiprack_10ul_B12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 112.204, + "y": 64.104, + "z": 25.49 + }, + "position3d": { + "x": 112.204, + "y": 64.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_B12#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_B12#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_B12#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_B12#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 112.204, + "y": 64.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_C12", + "uuid": "340c358d-f910-46e8-aef5-160d6d0a04dd", + "name": "opentrons_96_filtertiprack_10ul_C12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 112.204, + "y": 55.104, + "z": 25.49 + }, + "position3d": { + "x": 112.204, + "y": 55.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_C12#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_C12#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_C12#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_C12#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 112.204, + "y": 55.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_D12", + "uuid": "9b272205-174e-4d3f-bc58-78607595c48c", + "name": "opentrons_96_filtertiprack_10ul_D12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 112.204, + "y": 46.104, + "z": 25.49 + }, + "position3d": { + "x": 112.204, + "y": 46.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_D12#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_D12#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_D12#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_D12#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 112.204, + "y": 46.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_E12", + "uuid": "53549ff4-49e4-41f3-aee9-2fce9d392271", + "name": "opentrons_96_filtertiprack_10ul_E12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 112.204, + "y": 37.104, + "z": 25.49 + }, + "position3d": { + "x": 112.204, + "y": 37.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_E12#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_E12#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_E12#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_E12#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 112.204, + "y": 37.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_F12", + "uuid": "cad5411d-1aca-4d35-9dbe-863100ad5c20", + "name": "opentrons_96_filtertiprack_10ul_F12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 112.204, + "y": 28.104, + "z": 25.49 + }, + "position3d": { + "x": 112.204, + "y": 28.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_F12#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_F12#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_F12#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_F12#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 112.204, + "y": 28.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_G12", + "uuid": "73a9835c-4cae-4f0c-9fba-53086ac572cf", + "name": "opentrons_96_filtertiprack_10ul_G12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 112.204, + "y": 19.104, + "z": 25.49 + }, + "position3d": { + "x": 112.204, + "y": 19.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_G12#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_G12#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_G12#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_G12#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 112.204, + "y": 19.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_10ul_H12", + "uuid": "9d2ec5d4-fb8f-4926-befb-0255120dea3c", + "name": "opentrons_96_filtertiprack_10ul_H12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5b3c19d9-fddf-4ef5-bb27-ac9ce0a7d61b", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 112.204, + "y": 10.104, + "z": 25.49 + }, + "position3d": { + "x": 112.204, + "y": 10.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_H12#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_H12#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_10ul_H12#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_10ul_H12#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 112.204, + "y": 10.104, + "z": 25.49 + } + } + ] + }, + { + "id": "opentrons_96_filtertiprack_200ul", + "category": [ + "tip_racks" + ], + "class": { + "module": "pylabrobot.resources.opentrons.tip_racks:opentrons_96_filtertiprack_200ul", + "type": "pylabrobot" + }, + "description": "Opentrons 96 filtertiprack 200ul", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/opentrons/tip_racks.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "opentrons_96_filtertiprack_200ul", + "uuid": "f70300be-805f-48c9-b452-df1e83045134", + "name": "opentrons_96_filtertiprack_200ul", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "tip_rack", + "class": "", + "pose": { + "size": { + "depth": 64.49, + "width": 127.76, + "height": 85.48 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipRack", + "size_x": 127.76, + "size_y": 85.48, + "size_z": 64.49, + "category": "tip_rack", + "model": "Opentrons OT-2 96 Filter Tip Rack 200 µL", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "opentrons_96_filtertiprack_200ul_A1", + "B1": "opentrons_96_filtertiprack_200ul_B1", + "C1": "opentrons_96_filtertiprack_200ul_C1", + "D1": "opentrons_96_filtertiprack_200ul_D1", + "E1": "opentrons_96_filtertiprack_200ul_E1", + "F1": "opentrons_96_filtertiprack_200ul_F1", + "G1": "opentrons_96_filtertiprack_200ul_G1", + "H1": "opentrons_96_filtertiprack_200ul_H1", + "A2": "opentrons_96_filtertiprack_200ul_A2", + "B2": "opentrons_96_filtertiprack_200ul_B2", + "C2": "opentrons_96_filtertiprack_200ul_C2", + "D2": "opentrons_96_filtertiprack_200ul_D2", + "E2": "opentrons_96_filtertiprack_200ul_E2", + "F2": "opentrons_96_filtertiprack_200ul_F2", + "G2": "opentrons_96_filtertiprack_200ul_G2", + "H2": "opentrons_96_filtertiprack_200ul_H2", + "A3": "opentrons_96_filtertiprack_200ul_A3", + "B3": "opentrons_96_filtertiprack_200ul_B3", + "C3": "opentrons_96_filtertiprack_200ul_C3", + "D3": "opentrons_96_filtertiprack_200ul_D3", + "E3": "opentrons_96_filtertiprack_200ul_E3", + "F3": "opentrons_96_filtertiprack_200ul_F3", + "G3": "opentrons_96_filtertiprack_200ul_G3", + "H3": "opentrons_96_filtertiprack_200ul_H3", + "A4": "opentrons_96_filtertiprack_200ul_A4", + "B4": "opentrons_96_filtertiprack_200ul_B4", + "C4": "opentrons_96_filtertiprack_200ul_C4", + "D4": "opentrons_96_filtertiprack_200ul_D4", + "E4": "opentrons_96_filtertiprack_200ul_E4", + "F4": "opentrons_96_filtertiprack_200ul_F4", + "G4": "opentrons_96_filtertiprack_200ul_G4", + "H4": "opentrons_96_filtertiprack_200ul_H4", + "A5": "opentrons_96_filtertiprack_200ul_A5", + "B5": "opentrons_96_filtertiprack_200ul_B5", + "C5": "opentrons_96_filtertiprack_200ul_C5", + "D5": "opentrons_96_filtertiprack_200ul_D5", + "E5": "opentrons_96_filtertiprack_200ul_E5", + "F5": "opentrons_96_filtertiprack_200ul_F5", + "G5": "opentrons_96_filtertiprack_200ul_G5", + "H5": "opentrons_96_filtertiprack_200ul_H5", + "A6": "opentrons_96_filtertiprack_200ul_A6", + "B6": "opentrons_96_filtertiprack_200ul_B6", + "C6": "opentrons_96_filtertiprack_200ul_C6", + "D6": "opentrons_96_filtertiprack_200ul_D6", + "E6": "opentrons_96_filtertiprack_200ul_E6", + "F6": "opentrons_96_filtertiprack_200ul_F6", + "G6": "opentrons_96_filtertiprack_200ul_G6", + "H6": "opentrons_96_filtertiprack_200ul_H6", + "A7": "opentrons_96_filtertiprack_200ul_A7", + "B7": "opentrons_96_filtertiprack_200ul_B7", + "C7": "opentrons_96_filtertiprack_200ul_C7", + "D7": "opentrons_96_filtertiprack_200ul_D7", + "E7": "opentrons_96_filtertiprack_200ul_E7", + "F7": "opentrons_96_filtertiprack_200ul_F7", + "G7": "opentrons_96_filtertiprack_200ul_G7", + "H7": "opentrons_96_filtertiprack_200ul_H7", + "A8": "opentrons_96_filtertiprack_200ul_A8", + "B8": "opentrons_96_filtertiprack_200ul_B8", + "C8": "opentrons_96_filtertiprack_200ul_C8", + "D8": "opentrons_96_filtertiprack_200ul_D8", + "E8": "opentrons_96_filtertiprack_200ul_E8", + "F8": "opentrons_96_filtertiprack_200ul_F8", + "G8": "opentrons_96_filtertiprack_200ul_G8", + "H8": "opentrons_96_filtertiprack_200ul_H8", + "A9": "opentrons_96_filtertiprack_200ul_A9", + "B9": "opentrons_96_filtertiprack_200ul_B9", + "C9": "opentrons_96_filtertiprack_200ul_C9", + "D9": "opentrons_96_filtertiprack_200ul_D9", + "E9": "opentrons_96_filtertiprack_200ul_E9", + "F9": "opentrons_96_filtertiprack_200ul_F9", + "G9": "opentrons_96_filtertiprack_200ul_G9", + "H9": "opentrons_96_filtertiprack_200ul_H9", + "A10": "opentrons_96_filtertiprack_200ul_A10", + "B10": "opentrons_96_filtertiprack_200ul_B10", + "C10": "opentrons_96_filtertiprack_200ul_C10", + "D10": "opentrons_96_filtertiprack_200ul_D10", + "E10": "opentrons_96_filtertiprack_200ul_E10", + "F10": "opentrons_96_filtertiprack_200ul_F10", + "G10": "opentrons_96_filtertiprack_200ul_G10", + "H10": "opentrons_96_filtertiprack_200ul_H10", + "A11": "opentrons_96_filtertiprack_200ul_A11", + "B11": "opentrons_96_filtertiprack_200ul_B11", + "C11": "opentrons_96_filtertiprack_200ul_C11", + "D11": "opentrons_96_filtertiprack_200ul_D11", + "E11": "opentrons_96_filtertiprack_200ul_E11", + "F11": "opentrons_96_filtertiprack_200ul_F11", + "G11": "opentrons_96_filtertiprack_200ul_G11", + "H11": "opentrons_96_filtertiprack_200ul_H11", + "A12": "opentrons_96_filtertiprack_200ul_A12", + "B12": "opentrons_96_filtertiprack_200ul_B12", + "C12": "opentrons_96_filtertiprack_200ul_C12", + "D12": "opentrons_96_filtertiprack_200ul_D12", + "E12": "opentrons_96_filtertiprack_200ul_E12", + "F12": "opentrons_96_filtertiprack_200ul_F12", + "G12": "opentrons_96_filtertiprack_200ul_G12", + "H12": "opentrons_96_filtertiprack_200ul_H12" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_A1", + "uuid": "a12eb81e-c66f-4ffd-bfbc-43f6c293690c", + "name": "opentrons_96_filtertiprack_200ul_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 12.531, + "y": 72.391, + "z": 5.39 + }, + "position3d": { + "x": 12.531, + "y": 72.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_A1#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_A1#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_A1#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_A1#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 12.531, + "y": 72.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_B1", + "uuid": "cc493305-2b21-428f-9ba7-69249dc96252", + "name": "opentrons_96_filtertiprack_200ul_B1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 12.531, + "y": 63.391, + "z": 5.39 + }, + "position3d": { + "x": 12.531, + "y": 63.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_B1#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_B1#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_B1#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_B1#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 12.531, + "y": 63.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_C1", + "uuid": "09d25ec6-47d7-4500-8031-4487b9ec8056", + "name": "opentrons_96_filtertiprack_200ul_C1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 12.531, + "y": 54.391, + "z": 5.39 + }, + "position3d": { + "x": 12.531, + "y": 54.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_C1#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_C1#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_C1#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_C1#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 12.531, + "y": 54.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_D1", + "uuid": "12582374-5c1d-4d57-a926-1221b4114389", + "name": "opentrons_96_filtertiprack_200ul_D1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 12.531, + "y": 45.391, + "z": 5.39 + }, + "position3d": { + "x": 12.531, + "y": 45.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_D1#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_D1#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_D1#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_D1#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 12.531, + "y": 45.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_E1", + "uuid": "a0d8700c-c715-48ce-b3c2-e3cc507b8e03", + "name": "opentrons_96_filtertiprack_200ul_E1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 12.531, + "y": 36.391, + "z": 5.39 + }, + "position3d": { + "x": 12.531, + "y": 36.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_E1#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_E1#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_E1#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_E1#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 12.531, + "y": 36.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_F1", + "uuid": "7640bd86-227f-444b-bf17-8499af68f084", + "name": "opentrons_96_filtertiprack_200ul_F1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 12.531, + "y": 27.391, + "z": 5.39 + }, + "position3d": { + "x": 12.531, + "y": 27.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_F1#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_F1#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_F1#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_F1#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 12.531, + "y": 27.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_G1", + "uuid": "0055bb90-b8b0-4188-aacd-fc9d60502bfd", + "name": "opentrons_96_filtertiprack_200ul_G1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 12.531, + "y": 18.391, + "z": 5.39 + }, + "position3d": { + "x": 12.531, + "y": 18.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_G1#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_G1#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_G1#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_G1#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 12.531, + "y": 18.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_H1", + "uuid": "eee10160-4b78-4976-95c6-fe20b41879b3", + "name": "opentrons_96_filtertiprack_200ul_H1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 12.531, + "y": 9.391, + "z": 5.39 + }, + "position3d": { + "x": 12.531, + "y": 9.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_H1#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_H1#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_H1#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_H1#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 12.531, + "y": 9.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_A2", + "uuid": "996ca82c-c2bb-4e89-9a39-6308c9905517", + "name": "opentrons_96_filtertiprack_200ul_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 21.531, + "y": 72.391, + "z": 5.39 + }, + "position3d": { + "x": 21.531, + "y": 72.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_A2#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_A2#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_A2#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_A2#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 21.531, + "y": 72.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_B2", + "uuid": "976d2d5f-2cf5-4246-b612-696c56ee2704", + "name": "opentrons_96_filtertiprack_200ul_B2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 21.531, + "y": 63.391, + "z": 5.39 + }, + "position3d": { + "x": 21.531, + "y": 63.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_B2#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_B2#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_B2#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_B2#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 21.531, + "y": 63.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_C2", + "uuid": "6612f909-6463-498d-9cde-e08ac588c967", + "name": "opentrons_96_filtertiprack_200ul_C2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 21.531, + "y": 54.391, + "z": 5.39 + }, + "position3d": { + "x": 21.531, + "y": 54.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_C2#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_C2#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_C2#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_C2#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 21.531, + "y": 54.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_D2", + "uuid": "7885d4ba-2aba-4a96-a48d-80753fc8c243", + "name": "opentrons_96_filtertiprack_200ul_D2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 21.531, + "y": 45.391, + "z": 5.39 + }, + "position3d": { + "x": 21.531, + "y": 45.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_D2#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_D2#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_D2#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_D2#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 21.531, + "y": 45.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_E2", + "uuid": "f8c52b82-2030-4e11-bed7-a7b7d54c01d7", + "name": "opentrons_96_filtertiprack_200ul_E2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 21.531, + "y": 36.391, + "z": 5.39 + }, + "position3d": { + "x": 21.531, + "y": 36.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_E2#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_E2#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_E2#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_E2#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 21.531, + "y": 36.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_F2", + "uuid": "fa5704c4-93e7-46c8-8bd2-630804ca4475", + "name": "opentrons_96_filtertiprack_200ul_F2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 21.531, + "y": 27.391, + "z": 5.39 + }, + "position3d": { + "x": 21.531, + "y": 27.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_F2#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_F2#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_F2#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_F2#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 21.531, + "y": 27.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_G2", + "uuid": "d664cf5e-7489-45b0-8185-00e3fc62d97c", + "name": "opentrons_96_filtertiprack_200ul_G2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 21.531, + "y": 18.391, + "z": 5.39 + }, + "position3d": { + "x": 21.531, + "y": 18.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_G2#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_G2#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_G2#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_G2#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 21.531, + "y": 18.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_H2", + "uuid": "b1337aef-8bbd-4e35-a4fb-ec8f89f79900", + "name": "opentrons_96_filtertiprack_200ul_H2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 21.531, + "y": 9.391, + "z": 5.39 + }, + "position3d": { + "x": 21.531, + "y": 9.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_H2#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_H2#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_H2#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_H2#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 21.531, + "y": 9.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_A3", + "uuid": "5193dd60-a300-4f0d-a7c8-3c37ce046de3", + "name": "opentrons_96_filtertiprack_200ul_A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 30.531, + "y": 72.391, + "z": 5.39 + }, + "position3d": { + "x": 30.531, + "y": 72.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_A3#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_A3#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_A3#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_A3#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 30.531, + "y": 72.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_B3", + "uuid": "b30d5831-048a-4b02-b481-9f61491650c7", + "name": "opentrons_96_filtertiprack_200ul_B3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 30.531, + "y": 63.391, + "z": 5.39 + }, + "position3d": { + "x": 30.531, + "y": 63.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_B3#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_B3#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_B3#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_B3#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 30.531, + "y": 63.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_C3", + "uuid": "9fd8a470-d804-4ae0-90cb-77f02afc4770", + "name": "opentrons_96_filtertiprack_200ul_C3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 30.531, + "y": 54.391, + "z": 5.39 + }, + "position3d": { + "x": 30.531, + "y": 54.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_C3#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_C3#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_C3#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_C3#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 30.531, + "y": 54.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_D3", + "uuid": "0108aae3-fb43-4139-9196-d52ab295afbd", + "name": "opentrons_96_filtertiprack_200ul_D3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 30.531, + "y": 45.391, + "z": 5.39 + }, + "position3d": { + "x": 30.531, + "y": 45.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_D3#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_D3#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_D3#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_D3#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 30.531, + "y": 45.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_E3", + "uuid": "11c75d60-6fce-461b-822b-94430c531f1c", + "name": "opentrons_96_filtertiprack_200ul_E3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 30.531, + "y": 36.391, + "z": 5.39 + }, + "position3d": { + "x": 30.531, + "y": 36.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_E3#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_E3#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_E3#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_E3#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 30.531, + "y": 36.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_F3", + "uuid": "1e0edcb0-40f3-4d16-ac99-592df0654eed", + "name": "opentrons_96_filtertiprack_200ul_F3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 30.531, + "y": 27.391, + "z": 5.39 + }, + "position3d": { + "x": 30.531, + "y": 27.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_F3#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_F3#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_F3#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_F3#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 30.531, + "y": 27.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_G3", + "uuid": "867a948c-cb7f-48b2-a96b-44cb79d49dc2", + "name": "opentrons_96_filtertiprack_200ul_G3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 30.531, + "y": 18.391, + "z": 5.39 + }, + "position3d": { + "x": 30.531, + "y": 18.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_G3#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_G3#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_G3#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_G3#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 30.531, + "y": 18.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_H3", + "uuid": "8a0b6d2f-8754-4f78-8a5b-e0c41eca530a", + "name": "opentrons_96_filtertiprack_200ul_H3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 30.531, + "y": 9.391, + "z": 5.39 + }, + "position3d": { + "x": 30.531, + "y": 9.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_H3#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_H3#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_H3#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_H3#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 30.531, + "y": 9.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_A4", + "uuid": "8e7c0202-55aa-4186-b890-26af360d5ef0", + "name": "opentrons_96_filtertiprack_200ul_A4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 39.531, + "y": 72.391, + "z": 5.39 + }, + "position3d": { + "x": 39.531, + "y": 72.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_A4#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_A4#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_A4#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_A4#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 39.531, + "y": 72.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_B4", + "uuid": "26c9ecec-77c2-42dc-8323-b7227b218850", + "name": "opentrons_96_filtertiprack_200ul_B4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 39.531, + "y": 63.391, + "z": 5.39 + }, + "position3d": { + "x": 39.531, + "y": 63.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_B4#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_B4#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_B4#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_B4#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 39.531, + "y": 63.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_C4", + "uuid": "a1e03727-16df-4ebd-b58a-bc388a75a216", + "name": "opentrons_96_filtertiprack_200ul_C4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 39.531, + "y": 54.391, + "z": 5.39 + }, + "position3d": { + "x": 39.531, + "y": 54.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_C4#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_C4#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_C4#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_C4#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 39.531, + "y": 54.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_D4", + "uuid": "92327fed-66f2-46dd-88ee-17981dad89fa", + "name": "opentrons_96_filtertiprack_200ul_D4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 39.531, + "y": 45.391, + "z": 5.39 + }, + "position3d": { + "x": 39.531, + "y": 45.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_D4#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_D4#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_D4#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_D4#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 39.531, + "y": 45.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_E4", + "uuid": "7c4a5dfb-019b-480a-a5fa-5d4e15a779f0", + "name": "opentrons_96_filtertiprack_200ul_E4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 39.531, + "y": 36.391, + "z": 5.39 + }, + "position3d": { + "x": 39.531, + "y": 36.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_E4#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_E4#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_E4#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_E4#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 39.531, + "y": 36.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_F4", + "uuid": "bfbbd2f8-1185-46eb-b6b3-889d3a8e0a08", + "name": "opentrons_96_filtertiprack_200ul_F4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 39.531, + "y": 27.391, + "z": 5.39 + }, + "position3d": { + "x": 39.531, + "y": 27.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_F4#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_F4#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_F4#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_F4#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 39.531, + "y": 27.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_G4", + "uuid": "a7d0f806-cc47-43a1-b2cd-3215ac660bfe", + "name": "opentrons_96_filtertiprack_200ul_G4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 39.531, + "y": 18.391, + "z": 5.39 + }, + "position3d": { + "x": 39.531, + "y": 18.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_G4#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_G4#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_G4#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_G4#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 39.531, + "y": 18.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_H4", + "uuid": "45bb6748-5ced-43c7-8694-0b7a719b4b13", + "name": "opentrons_96_filtertiprack_200ul_H4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 39.531, + "y": 9.391, + "z": 5.39 + }, + "position3d": { + "x": 39.531, + "y": 9.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_H4#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_H4#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_H4#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_H4#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 39.531, + "y": 9.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_A5", + "uuid": "0af182e4-e732-4fd9-8bd1-e624d27b44ab", + "name": "opentrons_96_filtertiprack_200ul_A5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 48.531, + "y": 72.391, + "z": 5.39 + }, + "position3d": { + "x": 48.531, + "y": 72.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_A5#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_A5#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_A5#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_A5#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 48.531, + "y": 72.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_B5", + "uuid": "11b1b292-ca36-4321-8863-f0f723318fbd", + "name": "opentrons_96_filtertiprack_200ul_B5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 48.531, + "y": 63.391, + "z": 5.39 + }, + "position3d": { + "x": 48.531, + "y": 63.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_B5#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_B5#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_B5#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_B5#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 48.531, + "y": 63.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_C5", + "uuid": "1a6e000f-a2f1-4a39-8b58-aff2c4fc390f", + "name": "opentrons_96_filtertiprack_200ul_C5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 48.531, + "y": 54.391, + "z": 5.39 + }, + "position3d": { + "x": 48.531, + "y": 54.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_C5#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_C5#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_C5#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_C5#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 48.531, + "y": 54.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_D5", + "uuid": "b40d156a-6e23-44e0-8b41-ea577f448fb4", + "name": "opentrons_96_filtertiprack_200ul_D5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 48.531, + "y": 45.391, + "z": 5.39 + }, + "position3d": { + "x": 48.531, + "y": 45.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_D5#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_D5#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_D5#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_D5#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 48.531, + "y": 45.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_E5", + "uuid": "35bf927a-65cd-4aad-8d18-bf5984f37593", + "name": "opentrons_96_filtertiprack_200ul_E5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 48.531, + "y": 36.391, + "z": 5.39 + }, + "position3d": { + "x": 48.531, + "y": 36.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_E5#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_E5#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_E5#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_E5#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 48.531, + "y": 36.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_F5", + "uuid": "828181ff-b8b3-499c-9cd8-4e57a543ec77", + "name": "opentrons_96_filtertiprack_200ul_F5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 48.531, + "y": 27.391, + "z": 5.39 + }, + "position3d": { + "x": 48.531, + "y": 27.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_F5#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_F5#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_F5#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_F5#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 48.531, + "y": 27.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_G5", + "uuid": "339a07e1-8250-4c80-b713-ec349d65bc5b", + "name": "opentrons_96_filtertiprack_200ul_G5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 48.531, + "y": 18.391, + "z": 5.39 + }, + "position3d": { + "x": 48.531, + "y": 18.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_G5#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_G5#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_G5#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_G5#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 48.531, + "y": 18.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_H5", + "uuid": "d9eaf2bc-1eb5-4a57-9cb6-9f7be380ff4c", + "name": "opentrons_96_filtertiprack_200ul_H5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 48.531, + "y": 9.391, + "z": 5.39 + }, + "position3d": { + "x": 48.531, + "y": 9.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_H5#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_H5#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_H5#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_H5#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 48.531, + "y": 9.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_A6", + "uuid": "9f332704-3597-4851-a72e-1ac3382110cf", + "name": "opentrons_96_filtertiprack_200ul_A6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 57.531, + "y": 72.391, + "z": 5.39 + }, + "position3d": { + "x": 57.531, + "y": 72.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_A6#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_A6#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_A6#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_A6#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 57.531, + "y": 72.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_B6", + "uuid": "f880c8db-ff5c-4e77-9d33-282dcbeef478", + "name": "opentrons_96_filtertiprack_200ul_B6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 57.531, + "y": 63.391, + "z": 5.39 + }, + "position3d": { + "x": 57.531, + "y": 63.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_B6#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_B6#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_B6#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_B6#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 57.531, + "y": 63.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_C6", + "uuid": "00d5b254-9354-4b57-8e4d-18d764365a9a", + "name": "opentrons_96_filtertiprack_200ul_C6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 57.531, + "y": 54.391, + "z": 5.39 + }, + "position3d": { + "x": 57.531, + "y": 54.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_C6#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_C6#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_C6#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_C6#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 57.531, + "y": 54.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_D6", + "uuid": "3da7ddb0-4c5f-4da7-9dc7-0d297fac82e5", + "name": "opentrons_96_filtertiprack_200ul_D6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 57.531, + "y": 45.391, + "z": 5.39 + }, + "position3d": { + "x": 57.531, + "y": 45.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_D6#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_D6#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_D6#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_D6#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 57.531, + "y": 45.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_E6", + "uuid": "8c211543-dd81-4df8-a977-367a6e088bee", + "name": "opentrons_96_filtertiprack_200ul_E6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 57.531, + "y": 36.391, + "z": 5.39 + }, + "position3d": { + "x": 57.531, + "y": 36.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_E6#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_E6#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_E6#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_E6#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 57.531, + "y": 36.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_F6", + "uuid": "e441c16f-17ee-4513-a7fb-6b25c057d3fa", + "name": "opentrons_96_filtertiprack_200ul_F6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 57.531, + "y": 27.391, + "z": 5.39 + }, + "position3d": { + "x": 57.531, + "y": 27.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_F6#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_F6#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_F6#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_F6#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 57.531, + "y": 27.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_G6", + "uuid": "5f003599-284c-4e06-a20c-d84cb2e4a577", + "name": "opentrons_96_filtertiprack_200ul_G6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 57.531, + "y": 18.391, + "z": 5.39 + }, + "position3d": { + "x": 57.531, + "y": 18.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_G6#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_G6#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_G6#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_G6#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 57.531, + "y": 18.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_H6", + "uuid": "6f248f94-dc4d-462f-aa3e-6e22a59cbb06", + "name": "opentrons_96_filtertiprack_200ul_H6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 57.531, + "y": 9.391, + "z": 5.39 + }, + "position3d": { + "x": 57.531, + "y": 9.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_H6#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_H6#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_H6#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_H6#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 57.531, + "y": 9.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_A7", + "uuid": "4083f1c7-4eb4-44bd-8ac4-c60a4b2726d5", + "name": "opentrons_96_filtertiprack_200ul_A7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 66.531, + "y": 72.391, + "z": 5.39 + }, + "position3d": { + "x": 66.531, + "y": 72.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_A7#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_A7#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_A7#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_A7#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 66.531, + "y": 72.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_B7", + "uuid": "6fe6b917-d2e1-4f26-9edb-929fcfbf4a79", + "name": "opentrons_96_filtertiprack_200ul_B7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 66.531, + "y": 63.391, + "z": 5.39 + }, + "position3d": { + "x": 66.531, + "y": 63.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_B7#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_B7#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_B7#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_B7#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 66.531, + "y": 63.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_C7", + "uuid": "c42d00f9-18a2-48d7-8557-58a880cd0333", + "name": "opentrons_96_filtertiprack_200ul_C7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 66.531, + "y": 54.391, + "z": 5.39 + }, + "position3d": { + "x": 66.531, + "y": 54.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_C7#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_C7#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_C7#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_C7#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 66.531, + "y": 54.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_D7", + "uuid": "dbb66f1e-ecfa-448e-8baa-50b9d2e1b53b", + "name": "opentrons_96_filtertiprack_200ul_D7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 66.531, + "y": 45.391, + "z": 5.39 + }, + "position3d": { + "x": 66.531, + "y": 45.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_D7#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_D7#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_D7#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_D7#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 66.531, + "y": 45.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_E7", + "uuid": "fd865a73-fe5b-4b4f-9134-d54550bfde24", + "name": "opentrons_96_filtertiprack_200ul_E7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 66.531, + "y": 36.391, + "z": 5.39 + }, + "position3d": { + "x": 66.531, + "y": 36.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_E7#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_E7#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_E7#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_E7#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 66.531, + "y": 36.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_F7", + "uuid": "e2102612-9f4a-40af-90db-bff9ac2640d1", + "name": "opentrons_96_filtertiprack_200ul_F7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 66.531, + "y": 27.391, + "z": 5.39 + }, + "position3d": { + "x": 66.531, + "y": 27.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_F7#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_F7#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_F7#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_F7#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 66.531, + "y": 27.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_G7", + "uuid": "6edddf9f-b391-4fa5-911a-dd87866c3bb0", + "name": "opentrons_96_filtertiprack_200ul_G7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 66.531, + "y": 18.391, + "z": 5.39 + }, + "position3d": { + "x": 66.531, + "y": 18.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_G7#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_G7#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_G7#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_G7#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 66.531, + "y": 18.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_H7", + "uuid": "a1f068bd-869d-4f28-aaf4-8bc7afe408f8", + "name": "opentrons_96_filtertiprack_200ul_H7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 66.531, + "y": 9.391, + "z": 5.39 + }, + "position3d": { + "x": 66.531, + "y": 9.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_H7#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_H7#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_H7#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_H7#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 66.531, + "y": 9.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_A8", + "uuid": "5e2df18e-9cb3-470a-af20-de1313a46746", + "name": "opentrons_96_filtertiprack_200ul_A8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 75.531, + "y": 72.391, + "z": 5.39 + }, + "position3d": { + "x": 75.531, + "y": 72.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_A8#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_A8#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_A8#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_A8#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 75.531, + "y": 72.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_B8", + "uuid": "a6245f71-d42c-436d-b25e-16501d2911de", + "name": "opentrons_96_filtertiprack_200ul_B8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 75.531, + "y": 63.391, + "z": 5.39 + }, + "position3d": { + "x": 75.531, + "y": 63.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_B8#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_B8#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_B8#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_B8#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 75.531, + "y": 63.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_C8", + "uuid": "8811c402-281e-4308-86c7-a368ea589d10", + "name": "opentrons_96_filtertiprack_200ul_C8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 75.531, + "y": 54.391, + "z": 5.39 + }, + "position3d": { + "x": 75.531, + "y": 54.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_C8#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_C8#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_C8#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_C8#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 75.531, + "y": 54.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_D8", + "uuid": "3be0ddb9-a6bc-464b-bbd4-66510334e096", + "name": "opentrons_96_filtertiprack_200ul_D8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 75.531, + "y": 45.391, + "z": 5.39 + }, + "position3d": { + "x": 75.531, + "y": 45.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_D8#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_D8#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_D8#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_D8#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 75.531, + "y": 45.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_E8", + "uuid": "6aa7cfd1-1d8c-421c-a941-6a703a6f6a09", + "name": "opentrons_96_filtertiprack_200ul_E8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 75.531, + "y": 36.391, + "z": 5.39 + }, + "position3d": { + "x": 75.531, + "y": 36.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_E8#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_E8#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_E8#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_E8#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 75.531, + "y": 36.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_F8", + "uuid": "3c859b4b-635e-4505-a6ac-2f07430b3cb8", + "name": "opentrons_96_filtertiprack_200ul_F8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 75.531, + "y": 27.391, + "z": 5.39 + }, + "position3d": { + "x": 75.531, + "y": 27.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_F8#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_F8#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_F8#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_F8#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 75.531, + "y": 27.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_G8", + "uuid": "92cb3961-6399-40f6-bbf1-2ae81d881b17", + "name": "opentrons_96_filtertiprack_200ul_G8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 75.531, + "y": 18.391, + "z": 5.39 + }, + "position3d": { + "x": 75.531, + "y": 18.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_G8#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_G8#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_G8#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_G8#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 75.531, + "y": 18.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_H8", + "uuid": "4a124bfb-a55f-484e-9327-cfc55aa45dcb", + "name": "opentrons_96_filtertiprack_200ul_H8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 75.531, + "y": 9.391, + "z": 5.39 + }, + "position3d": { + "x": 75.531, + "y": 9.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_H8#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_H8#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_H8#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_H8#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 75.531, + "y": 9.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_A9", + "uuid": "bb390d99-115a-4e85-8b38-cfc280165f54", + "name": "opentrons_96_filtertiprack_200ul_A9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 84.531, + "y": 72.391, + "z": 5.39 + }, + "position3d": { + "x": 84.531, + "y": 72.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_A9#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_A9#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_A9#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_A9#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 84.531, + "y": 72.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_B9", + "uuid": "f6e666d6-e952-4e7d-85d9-dd186fd9d47e", + "name": "opentrons_96_filtertiprack_200ul_B9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 84.531, + "y": 63.391, + "z": 5.39 + }, + "position3d": { + "x": 84.531, + "y": 63.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_B9#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_B9#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_B9#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_B9#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 84.531, + "y": 63.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_C9", + "uuid": "8a59197a-2041-4be2-9e34-c24083a2b466", + "name": "opentrons_96_filtertiprack_200ul_C9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 84.531, + "y": 54.391, + "z": 5.39 + }, + "position3d": { + "x": 84.531, + "y": 54.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_C9#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_C9#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_C9#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_C9#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 84.531, + "y": 54.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_D9", + "uuid": "46d91b7a-6665-4c86-8d8a-a40adf114581", + "name": "opentrons_96_filtertiprack_200ul_D9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 84.531, + "y": 45.391, + "z": 5.39 + }, + "position3d": { + "x": 84.531, + "y": 45.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_D9#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_D9#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_D9#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_D9#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 84.531, + "y": 45.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_E9", + "uuid": "0a89a130-3755-4183-954b-6f1e971b2c0e", + "name": "opentrons_96_filtertiprack_200ul_E9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 84.531, + "y": 36.391, + "z": 5.39 + }, + "position3d": { + "x": 84.531, + "y": 36.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_E9#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_E9#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_E9#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_E9#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 84.531, + "y": 36.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_F9", + "uuid": "ce4a3e3a-8dac-4f5b-9c88-1386699c28bc", + "name": "opentrons_96_filtertiprack_200ul_F9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 84.531, + "y": 27.391, + "z": 5.39 + }, + "position3d": { + "x": 84.531, + "y": 27.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_F9#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_F9#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_F9#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_F9#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 84.531, + "y": 27.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_G9", + "uuid": "63df3f3a-6d09-464a-9696-9d8ab37e856d", + "name": "opentrons_96_filtertiprack_200ul_G9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 84.531, + "y": 18.391, + "z": 5.39 + }, + "position3d": { + "x": 84.531, + "y": 18.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_G9#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_G9#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_G9#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_G9#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 84.531, + "y": 18.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_H9", + "uuid": "c29f549b-5c16-4222-b869-5835c77d1241", + "name": "opentrons_96_filtertiprack_200ul_H9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 84.531, + "y": 9.391, + "z": 5.39 + }, + "position3d": { + "x": 84.531, + "y": 9.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_H9#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_H9#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_H9#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_H9#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 84.531, + "y": 9.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_A10", + "uuid": "9b9d00d2-4ee2-4d12-a0d5-dfd83edd1eec", + "name": "opentrons_96_filtertiprack_200ul_A10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 93.531, + "y": 72.391, + "z": 5.39 + }, + "position3d": { + "x": 93.531, + "y": 72.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_A10#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_A10#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_A10#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_A10#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 93.531, + "y": 72.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_B10", + "uuid": "05d5da12-b499-4de9-a21d-073be2de08c2", + "name": "opentrons_96_filtertiprack_200ul_B10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 93.531, + "y": 63.391, + "z": 5.39 + }, + "position3d": { + "x": 93.531, + "y": 63.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_B10#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_B10#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_B10#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_B10#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 93.531, + "y": 63.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_C10", + "uuid": "fbe14c62-d500-4aee-9ca1-598d29b44164", + "name": "opentrons_96_filtertiprack_200ul_C10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 93.531, + "y": 54.391, + "z": 5.39 + }, + "position3d": { + "x": 93.531, + "y": 54.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_C10#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_C10#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_C10#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_C10#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 93.531, + "y": 54.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_D10", + "uuid": "2249baec-1f8f-41ac-ad41-553b7f4cf8d0", + "name": "opentrons_96_filtertiprack_200ul_D10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 93.531, + "y": 45.391, + "z": 5.39 + }, + "position3d": { + "x": 93.531, + "y": 45.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_D10#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_D10#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_D10#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_D10#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 93.531, + "y": 45.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_E10", + "uuid": "24178644-1258-4e51-a28e-a404494b7f73", + "name": "opentrons_96_filtertiprack_200ul_E10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 93.531, + "y": 36.391, + "z": 5.39 + }, + "position3d": { + "x": 93.531, + "y": 36.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_E10#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_E10#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_E10#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_E10#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 93.531, + "y": 36.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_F10", + "uuid": "5724911d-d5bc-4ce9-80f6-91619b0d16d1", + "name": "opentrons_96_filtertiprack_200ul_F10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 93.531, + "y": 27.391, + "z": 5.39 + }, + "position3d": { + "x": 93.531, + "y": 27.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_F10#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_F10#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_F10#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_F10#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 93.531, + "y": 27.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_G10", + "uuid": "ca3a750c-f7b9-4acd-a48d-c96ec70f4c35", + "name": "opentrons_96_filtertiprack_200ul_G10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 93.531, + "y": 18.391, + "z": 5.39 + }, + "position3d": { + "x": 93.531, + "y": 18.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_G10#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_G10#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_G10#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_G10#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 93.531, + "y": 18.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_H10", + "uuid": "64364fb4-9c4b-4463-a5fd-7fcb5dbd98f9", + "name": "opentrons_96_filtertiprack_200ul_H10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 93.531, + "y": 9.391, + "z": 5.39 + }, + "position3d": { + "x": 93.531, + "y": 9.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_H10#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_H10#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_H10#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_H10#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 93.531, + "y": 9.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_A11", + "uuid": "13ab45aa-40a3-4765-9a5a-b4fd02504981", + "name": "opentrons_96_filtertiprack_200ul_A11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 102.531, + "y": 72.391, + "z": 5.39 + }, + "position3d": { + "x": 102.531, + "y": 72.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_A11#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_A11#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_A11#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_A11#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 102.531, + "y": 72.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_B11", + "uuid": "6bc4e3b9-202f-45d3-8ae5-5baa2ec390ff", + "name": "opentrons_96_filtertiprack_200ul_B11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 102.531, + "y": 63.391, + "z": 5.39 + }, + "position3d": { + "x": 102.531, + "y": 63.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_B11#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_B11#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_B11#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_B11#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 102.531, + "y": 63.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_C11", + "uuid": "f485cd31-2795-46ea-903b-16e58d5ee621", + "name": "opentrons_96_filtertiprack_200ul_C11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 102.531, + "y": 54.391, + "z": 5.39 + }, + "position3d": { + "x": 102.531, + "y": 54.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_C11#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_C11#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_C11#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_C11#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 102.531, + "y": 54.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_D11", + "uuid": "b54f8d6d-c9a1-46b9-b7ec-d38a45ad7276", + "name": "opentrons_96_filtertiprack_200ul_D11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 102.531, + "y": 45.391, + "z": 5.39 + }, + "position3d": { + "x": 102.531, + "y": 45.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_D11#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_D11#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_D11#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_D11#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 102.531, + "y": 45.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_E11", + "uuid": "56587d34-ad5d-4894-a8ea-43d75045a944", + "name": "opentrons_96_filtertiprack_200ul_E11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 102.531, + "y": 36.391, + "z": 5.39 + }, + "position3d": { + "x": 102.531, + "y": 36.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_E11#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_E11#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_E11#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_E11#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 102.531, + "y": 36.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_F11", + "uuid": "0247808d-adce-43a6-b621-7b4743fd0542", + "name": "opentrons_96_filtertiprack_200ul_F11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 102.531, + "y": 27.391, + "z": 5.39 + }, + "position3d": { + "x": 102.531, + "y": 27.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_F11#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_F11#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_F11#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_F11#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 102.531, + "y": 27.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_G11", + "uuid": "31896a76-6208-4a05-8e45-848c1a2477d7", + "name": "opentrons_96_filtertiprack_200ul_G11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 102.531, + "y": 18.391, + "z": 5.39 + }, + "position3d": { + "x": 102.531, + "y": 18.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_G11#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_G11#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_G11#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_G11#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 102.531, + "y": 18.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_H11", + "uuid": "63a31f81-8521-425f-afc9-74613b1dda28", + "name": "opentrons_96_filtertiprack_200ul_H11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 102.531, + "y": 9.391, + "z": 5.39 + }, + "position3d": { + "x": 102.531, + "y": 9.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_H11#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_H11#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_H11#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_H11#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 102.531, + "y": 9.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_A12", + "uuid": "d37d5930-b0f8-495f-a877-41260f7bdbb0", + "name": "opentrons_96_filtertiprack_200ul_A12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 111.531, + "y": 72.391, + "z": 5.39 + }, + "position3d": { + "x": 111.531, + "y": 72.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_A12#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_A12#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_A12#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_A12#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 111.531, + "y": 72.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_B12", + "uuid": "fbe14323-aeda-40c1-9397-a5f3ba825e7e", + "name": "opentrons_96_filtertiprack_200ul_B12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 111.531, + "y": 63.391, + "z": 5.39 + }, + "position3d": { + "x": 111.531, + "y": 63.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_B12#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_B12#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_B12#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_B12#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 111.531, + "y": 63.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_C12", + "uuid": "606eac14-cc48-494a-857d-2e3b5cae94f7", + "name": "opentrons_96_filtertiprack_200ul_C12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 111.531, + "y": 54.391, + "z": 5.39 + }, + "position3d": { + "x": 111.531, + "y": 54.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_C12#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_C12#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_C12#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_C12#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 111.531, + "y": 54.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_D12", + "uuid": "1885ce73-8745-44f0-83d5-ffea5fc01b22", + "name": "opentrons_96_filtertiprack_200ul_D12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 111.531, + "y": 45.391, + "z": 5.39 + }, + "position3d": { + "x": 111.531, + "y": 45.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_D12#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_D12#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_D12#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_D12#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 111.531, + "y": 45.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_E12", + "uuid": "8b8318da-3bb9-492d-b61d-2fb7421afd1c", + "name": "opentrons_96_filtertiprack_200ul_E12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 111.531, + "y": 36.391, + "z": 5.39 + }, + "position3d": { + "x": 111.531, + "y": 36.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_E12#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_E12#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_E12#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_E12#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 111.531, + "y": 36.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_F12", + "uuid": "b255a120-5de0-435b-90e2-8a393b4547bf", + "name": "opentrons_96_filtertiprack_200ul_F12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 111.531, + "y": 27.391, + "z": 5.39 + }, + "position3d": { + "x": 111.531, + "y": 27.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_F12#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_F12#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_F12#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_F12#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 111.531, + "y": 27.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_G12", + "uuid": "fc4446c1-bc9a-4e34-8472-26678b90892d", + "name": "opentrons_96_filtertiprack_200ul_G12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 111.531, + "y": 18.391, + "z": 5.39 + }, + "position3d": { + "x": 111.531, + "y": 18.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_G12#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_G12#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_G12#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_G12#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 111.531, + "y": 18.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_filtertiprack_200ul_H12", + "uuid": "1d209383-ea19-45e5-b0d0-10b7f51e1749", + "name": "opentrons_96_filtertiprack_200ul_H12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f70300be-805f-48c9-b452-df1e83045134", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 111.531, + "y": 9.391, + "z": 5.39 + }, + "position3d": { + "x": 111.531, + "y": 9.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_H12#1", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_H12#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_200ul_H12#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_200ul_H12#0", + "total_tip_length": 59.3, + "has_filter": true, + "maximal_volume": 200, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 111.531, + "y": 9.391, + "z": 5.39 + } + } + ] + }, + { + "id": "opentrons_96_filtertiprack_20ul", + "category": [ + "tip_racks" + ], + "class": { + "module": "pylabrobot.resources.opentrons.tip_racks:opentrons_96_filtertiprack_20ul", + "type": "pylabrobot" + }, + "description": "Opentrons 96 filtertiprack 20ul", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/opentrons/tip_racks.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "opentrons_96_filtertiprack_20ul", + "uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "name": "opentrons_96_filtertiprack_20ul", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "tip_rack", + "class": "", + "pose": { + "size": { + "depth": 64.69, + "width": 127.76, + "height": 85.48 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipRack", + "size_x": 127.76, + "size_y": 85.48, + "size_z": 64.69, + "category": "tip_rack", + "model": "Opentrons OT-2 96 Filter Tip Rack 20 µL", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "opentrons_96_filtertiprack_20ul_A1", + "B1": "opentrons_96_filtertiprack_20ul_B1", + "C1": "opentrons_96_filtertiprack_20ul_C1", + "D1": "opentrons_96_filtertiprack_20ul_D1", + "E1": "opentrons_96_filtertiprack_20ul_E1", + "F1": "opentrons_96_filtertiprack_20ul_F1", + "G1": "opentrons_96_filtertiprack_20ul_G1", + "H1": "opentrons_96_filtertiprack_20ul_H1", + "A2": "opentrons_96_filtertiprack_20ul_A2", + "B2": "opentrons_96_filtertiprack_20ul_B2", + "C2": "opentrons_96_filtertiprack_20ul_C2", + "D2": "opentrons_96_filtertiprack_20ul_D2", + "E2": "opentrons_96_filtertiprack_20ul_E2", + "F2": "opentrons_96_filtertiprack_20ul_F2", + "G2": "opentrons_96_filtertiprack_20ul_G2", + "H2": "opentrons_96_filtertiprack_20ul_H2", + "A3": "opentrons_96_filtertiprack_20ul_A3", + "B3": "opentrons_96_filtertiprack_20ul_B3", + "C3": "opentrons_96_filtertiprack_20ul_C3", + "D3": "opentrons_96_filtertiprack_20ul_D3", + "E3": "opentrons_96_filtertiprack_20ul_E3", + "F3": "opentrons_96_filtertiprack_20ul_F3", + "G3": "opentrons_96_filtertiprack_20ul_G3", + "H3": "opentrons_96_filtertiprack_20ul_H3", + "A4": "opentrons_96_filtertiprack_20ul_A4", + "B4": "opentrons_96_filtertiprack_20ul_B4", + "C4": "opentrons_96_filtertiprack_20ul_C4", + "D4": "opentrons_96_filtertiprack_20ul_D4", + "E4": "opentrons_96_filtertiprack_20ul_E4", + "F4": "opentrons_96_filtertiprack_20ul_F4", + "G4": "opentrons_96_filtertiprack_20ul_G4", + "H4": "opentrons_96_filtertiprack_20ul_H4", + "A5": "opentrons_96_filtertiprack_20ul_A5", + "B5": "opentrons_96_filtertiprack_20ul_B5", + "C5": "opentrons_96_filtertiprack_20ul_C5", + "D5": "opentrons_96_filtertiprack_20ul_D5", + "E5": "opentrons_96_filtertiprack_20ul_E5", + "F5": "opentrons_96_filtertiprack_20ul_F5", + "G5": "opentrons_96_filtertiprack_20ul_G5", + "H5": "opentrons_96_filtertiprack_20ul_H5", + "A6": "opentrons_96_filtertiprack_20ul_A6", + "B6": "opentrons_96_filtertiprack_20ul_B6", + "C6": "opentrons_96_filtertiprack_20ul_C6", + "D6": "opentrons_96_filtertiprack_20ul_D6", + "E6": "opentrons_96_filtertiprack_20ul_E6", + "F6": "opentrons_96_filtertiprack_20ul_F6", + "G6": "opentrons_96_filtertiprack_20ul_G6", + "H6": "opentrons_96_filtertiprack_20ul_H6", + "A7": "opentrons_96_filtertiprack_20ul_A7", + "B7": "opentrons_96_filtertiprack_20ul_B7", + "C7": "opentrons_96_filtertiprack_20ul_C7", + "D7": "opentrons_96_filtertiprack_20ul_D7", + "E7": "opentrons_96_filtertiprack_20ul_E7", + "F7": "opentrons_96_filtertiprack_20ul_F7", + "G7": "opentrons_96_filtertiprack_20ul_G7", + "H7": "opentrons_96_filtertiprack_20ul_H7", + "A8": "opentrons_96_filtertiprack_20ul_A8", + "B8": "opentrons_96_filtertiprack_20ul_B8", + "C8": "opentrons_96_filtertiprack_20ul_C8", + "D8": "opentrons_96_filtertiprack_20ul_D8", + "E8": "opentrons_96_filtertiprack_20ul_E8", + "F8": "opentrons_96_filtertiprack_20ul_F8", + "G8": "opentrons_96_filtertiprack_20ul_G8", + "H8": "opentrons_96_filtertiprack_20ul_H8", + "A9": "opentrons_96_filtertiprack_20ul_A9", + "B9": "opentrons_96_filtertiprack_20ul_B9", + "C9": "opentrons_96_filtertiprack_20ul_C9", + "D9": "opentrons_96_filtertiprack_20ul_D9", + "E9": "opentrons_96_filtertiprack_20ul_E9", + "F9": "opentrons_96_filtertiprack_20ul_F9", + "G9": "opentrons_96_filtertiprack_20ul_G9", + "H9": "opentrons_96_filtertiprack_20ul_H9", + "A10": "opentrons_96_filtertiprack_20ul_A10", + "B10": "opentrons_96_filtertiprack_20ul_B10", + "C10": "opentrons_96_filtertiprack_20ul_C10", + "D10": "opentrons_96_filtertiprack_20ul_D10", + "E10": "opentrons_96_filtertiprack_20ul_E10", + "F10": "opentrons_96_filtertiprack_20ul_F10", + "G10": "opentrons_96_filtertiprack_20ul_G10", + "H10": "opentrons_96_filtertiprack_20ul_H10", + "A11": "opentrons_96_filtertiprack_20ul_A11", + "B11": "opentrons_96_filtertiprack_20ul_B11", + "C11": "opentrons_96_filtertiprack_20ul_C11", + "D11": "opentrons_96_filtertiprack_20ul_D11", + "E11": "opentrons_96_filtertiprack_20ul_E11", + "F11": "opentrons_96_filtertiprack_20ul_F11", + "G11": "opentrons_96_filtertiprack_20ul_G11", + "H11": "opentrons_96_filtertiprack_20ul_H11", + "A12": "opentrons_96_filtertiprack_20ul_A12", + "B12": "opentrons_96_filtertiprack_20ul_B12", + "C12": "opentrons_96_filtertiprack_20ul_C12", + "D12": "opentrons_96_filtertiprack_20ul_D12", + "E12": "opentrons_96_filtertiprack_20ul_E12", + "F12": "opentrons_96_filtertiprack_20ul_F12", + "G12": "opentrons_96_filtertiprack_20ul_G12", + "H12": "opentrons_96_filtertiprack_20ul_H12" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_A1", + "uuid": "156ce230-a219-4526-804b-53911f32fb7c", + "name": "opentrons_96_filtertiprack_20ul_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 13.204, + "y": 73.104, + "z": 25.49 + }, + "position3d": { + "x": 13.204, + "y": 73.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_A1#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_A1#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_A1#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_A1#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 13.204, + "y": 73.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_B1", + "uuid": "276a2de1-9a30-42da-bd90-a1677c203a02", + "name": "opentrons_96_filtertiprack_20ul_B1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 13.204, + "y": 64.104, + "z": 25.49 + }, + "position3d": { + "x": 13.204, + "y": 64.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_B1#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_B1#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_B1#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_B1#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 13.204, + "y": 64.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_C1", + "uuid": "87b6272b-bbd9-4d95-9326-569857f31fe9", + "name": "opentrons_96_filtertiprack_20ul_C1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 13.204, + "y": 55.104, + "z": 25.49 + }, + "position3d": { + "x": 13.204, + "y": 55.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_C1#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_C1#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_C1#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_C1#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 13.204, + "y": 55.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_D1", + "uuid": "d414e333-582d-4961-8e52-6e940104e863", + "name": "opentrons_96_filtertiprack_20ul_D1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 13.204, + "y": 46.104, + "z": 25.49 + }, + "position3d": { + "x": 13.204, + "y": 46.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_D1#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_D1#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_D1#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_D1#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 13.204, + "y": 46.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_E1", + "uuid": "ed5db21f-c0eb-4eb0-9538-6525c26d04f5", + "name": "opentrons_96_filtertiprack_20ul_E1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 13.204, + "y": 37.104, + "z": 25.49 + }, + "position3d": { + "x": 13.204, + "y": 37.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_E1#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_E1#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_E1#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_E1#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 13.204, + "y": 37.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_F1", + "uuid": "924cf35a-c42a-441f-9218-9b502ddddd2e", + "name": "opentrons_96_filtertiprack_20ul_F1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 13.204, + "y": 28.104, + "z": 25.49 + }, + "position3d": { + "x": 13.204, + "y": 28.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_F1#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_F1#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_F1#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_F1#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 13.204, + "y": 28.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_G1", + "uuid": "cedd6838-da55-4142-8e36-a3847c69dd4f", + "name": "opentrons_96_filtertiprack_20ul_G1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 13.204, + "y": 19.104, + "z": 25.49 + }, + "position3d": { + "x": 13.204, + "y": 19.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_G1#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_G1#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_G1#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_G1#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 13.204, + "y": 19.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_H1", + "uuid": "a7eac64a-56ce-477d-92bd-3acc92c75fb5", + "name": "opentrons_96_filtertiprack_20ul_H1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 13.204, + "y": 10.104, + "z": 25.49 + }, + "position3d": { + "x": 13.204, + "y": 10.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_H1#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_H1#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_H1#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_H1#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 13.204, + "y": 10.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_A2", + "uuid": "3f61e854-6465-4d96-a6b3-10a4bacde382", + "name": "opentrons_96_filtertiprack_20ul_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 22.204, + "y": 73.104, + "z": 25.49 + }, + "position3d": { + "x": 22.204, + "y": 73.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_A2#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_A2#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_A2#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_A2#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 22.204, + "y": 73.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_B2", + "uuid": "88285dc8-e1c2-4798-9e9c-0fbc89030f53", + "name": "opentrons_96_filtertiprack_20ul_B2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 22.204, + "y": 64.104, + "z": 25.49 + }, + "position3d": { + "x": 22.204, + "y": 64.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_B2#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_B2#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_B2#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_B2#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 22.204, + "y": 64.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_C2", + "uuid": "ebdb47ae-59e1-4f75-8181-ff4f41810a6f", + "name": "opentrons_96_filtertiprack_20ul_C2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 22.204, + "y": 55.104, + "z": 25.49 + }, + "position3d": { + "x": 22.204, + "y": 55.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_C2#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_C2#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_C2#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_C2#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 22.204, + "y": 55.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_D2", + "uuid": "f52db277-74c5-4cf9-bb79-ce1f778800c5", + "name": "opentrons_96_filtertiprack_20ul_D2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 22.204, + "y": 46.104, + "z": 25.49 + }, + "position3d": { + "x": 22.204, + "y": 46.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_D2#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_D2#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_D2#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_D2#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 22.204, + "y": 46.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_E2", + "uuid": "3c5d0ac9-0e13-450f-9b6a-f9176e7ad999", + "name": "opentrons_96_filtertiprack_20ul_E2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 22.204, + "y": 37.104, + "z": 25.49 + }, + "position3d": { + "x": 22.204, + "y": 37.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_E2#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_E2#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_E2#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_E2#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 22.204, + "y": 37.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_F2", + "uuid": "761ed287-c013-4d62-a196-41186ff6c795", + "name": "opentrons_96_filtertiprack_20ul_F2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 22.204, + "y": 28.104, + "z": 25.49 + }, + "position3d": { + "x": 22.204, + "y": 28.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_F2#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_F2#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_F2#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_F2#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 22.204, + "y": 28.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_G2", + "uuid": "c6ec8f0b-881a-4c89-a4cd-e7fe6e978ef0", + "name": "opentrons_96_filtertiprack_20ul_G2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 22.204, + "y": 19.104, + "z": 25.49 + }, + "position3d": { + "x": 22.204, + "y": 19.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_G2#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_G2#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_G2#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_G2#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 22.204, + "y": 19.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_H2", + "uuid": "7d90582f-41de-4833-be5f-9480c70ec95b", + "name": "opentrons_96_filtertiprack_20ul_H2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 22.204, + "y": 10.104, + "z": 25.49 + }, + "position3d": { + "x": 22.204, + "y": 10.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_H2#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_H2#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_H2#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_H2#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 22.204, + "y": 10.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_A3", + "uuid": "1d7f053b-637f-4b97-9ee4-615743dc29ac", + "name": "opentrons_96_filtertiprack_20ul_A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 31.204, + "y": 73.104, + "z": 25.49 + }, + "position3d": { + "x": 31.204, + "y": 73.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_A3#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_A3#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_A3#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_A3#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 31.204, + "y": 73.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_B3", + "uuid": "1cf03d41-de3f-49a1-82b9-65d94b3325bb", + "name": "opentrons_96_filtertiprack_20ul_B3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 31.204, + "y": 64.104, + "z": 25.49 + }, + "position3d": { + "x": 31.204, + "y": 64.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_B3#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_B3#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_B3#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_B3#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 31.204, + "y": 64.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_C3", + "uuid": "ae710ca2-81fc-4b59-9aef-e56cdbf65818", + "name": "opentrons_96_filtertiprack_20ul_C3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 31.204, + "y": 55.104, + "z": 25.49 + }, + "position3d": { + "x": 31.204, + "y": 55.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_C3#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_C3#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_C3#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_C3#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 31.204, + "y": 55.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_D3", + "uuid": "4e653b0d-86fb-4cab-8852-55a536043280", + "name": "opentrons_96_filtertiprack_20ul_D3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 31.204, + "y": 46.104, + "z": 25.49 + }, + "position3d": { + "x": 31.204, + "y": 46.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_D3#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_D3#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_D3#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_D3#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 31.204, + "y": 46.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_E3", + "uuid": "03521a9c-bcfb-4113-bf03-7b9c18461847", + "name": "opentrons_96_filtertiprack_20ul_E3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 31.204, + "y": 37.104, + "z": 25.49 + }, + "position3d": { + "x": 31.204, + "y": 37.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_E3#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_E3#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_E3#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_E3#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 31.204, + "y": 37.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_F3", + "uuid": "02f99c22-6708-47d4-bc57-d1efdcbd4222", + "name": "opentrons_96_filtertiprack_20ul_F3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 31.204, + "y": 28.104, + "z": 25.49 + }, + "position3d": { + "x": 31.204, + "y": 28.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_F3#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_F3#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_F3#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_F3#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 31.204, + "y": 28.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_G3", + "uuid": "b0c4e73f-629c-4b10-93ae-a2c7520e7d6d", + "name": "opentrons_96_filtertiprack_20ul_G3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 31.204, + "y": 19.104, + "z": 25.49 + }, + "position3d": { + "x": 31.204, + "y": 19.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_G3#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_G3#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_G3#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_G3#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 31.204, + "y": 19.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_H3", + "uuid": "8acb6a9f-b906-42ee-bbfd-407d9f82e7f3", + "name": "opentrons_96_filtertiprack_20ul_H3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 31.204, + "y": 10.104, + "z": 25.49 + }, + "position3d": { + "x": 31.204, + "y": 10.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_H3#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_H3#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_H3#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_H3#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 31.204, + "y": 10.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_A4", + "uuid": "a12b75c4-c1af-418c-9f30-34013ea62647", + "name": "opentrons_96_filtertiprack_20ul_A4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 40.204, + "y": 73.104, + "z": 25.49 + }, + "position3d": { + "x": 40.204, + "y": 73.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_A4#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_A4#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_A4#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_A4#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 40.204, + "y": 73.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_B4", + "uuid": "fa628257-8fda-49b0-b30a-5cc994f7a772", + "name": "opentrons_96_filtertiprack_20ul_B4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 40.204, + "y": 64.104, + "z": 25.49 + }, + "position3d": { + "x": 40.204, + "y": 64.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_B4#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_B4#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_B4#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_B4#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 40.204, + "y": 64.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_C4", + "uuid": "b4aeaf09-204e-42e5-938a-0c81ae7dda69", + "name": "opentrons_96_filtertiprack_20ul_C4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 40.204, + "y": 55.104, + "z": 25.49 + }, + "position3d": { + "x": 40.204, + "y": 55.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_C4#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_C4#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_C4#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_C4#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 40.204, + "y": 55.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_D4", + "uuid": "1eb049d3-9117-418c-b718-f0dbb95f6f9f", + "name": "opentrons_96_filtertiprack_20ul_D4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 40.204, + "y": 46.104, + "z": 25.49 + }, + "position3d": { + "x": 40.204, + "y": 46.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_D4#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_D4#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_D4#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_D4#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 40.204, + "y": 46.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_E4", + "uuid": "6682c2ac-6243-423e-8fd7-71d0d3a7bdf4", + "name": "opentrons_96_filtertiprack_20ul_E4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 40.204, + "y": 37.104, + "z": 25.49 + }, + "position3d": { + "x": 40.204, + "y": 37.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_E4#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_E4#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_E4#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_E4#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 40.204, + "y": 37.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_F4", + "uuid": "3d5c318c-9015-4332-80a6-de9ca4358fd8", + "name": "opentrons_96_filtertiprack_20ul_F4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 40.204, + "y": 28.104, + "z": 25.49 + }, + "position3d": { + "x": 40.204, + "y": 28.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_F4#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_F4#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_F4#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_F4#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 40.204, + "y": 28.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_G4", + "uuid": "f9030ca0-2160-4e2e-b6a5-5f51af0ffd6c", + "name": "opentrons_96_filtertiprack_20ul_G4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 40.204, + "y": 19.104, + "z": 25.49 + }, + "position3d": { + "x": 40.204, + "y": 19.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_G4#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_G4#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_G4#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_G4#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 40.204, + "y": 19.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_H4", + "uuid": "178e7172-ffa3-4dd4-83f6-203639d9fa75", + "name": "opentrons_96_filtertiprack_20ul_H4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 40.204, + "y": 10.104, + "z": 25.49 + }, + "position3d": { + "x": 40.204, + "y": 10.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_H4#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_H4#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_H4#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_H4#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 40.204, + "y": 10.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_A5", + "uuid": "5ff031c9-7747-4843-98c9-06517e38848a", + "name": "opentrons_96_filtertiprack_20ul_A5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 49.204, + "y": 73.104, + "z": 25.49 + }, + "position3d": { + "x": 49.204, + "y": 73.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_A5#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_A5#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_A5#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_A5#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 49.204, + "y": 73.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_B5", + "uuid": "8285c91f-bdb0-448a-8c85-4c22016a2807", + "name": "opentrons_96_filtertiprack_20ul_B5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 49.204, + "y": 64.104, + "z": 25.49 + }, + "position3d": { + "x": 49.204, + "y": 64.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_B5#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_B5#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_B5#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_B5#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 49.204, + "y": 64.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_C5", + "uuid": "594bfd81-d4cd-49da-9d37-3aec152657e4", + "name": "opentrons_96_filtertiprack_20ul_C5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 49.204, + "y": 55.104, + "z": 25.49 + }, + "position3d": { + "x": 49.204, + "y": 55.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_C5#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_C5#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_C5#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_C5#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 49.204, + "y": 55.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_D5", + "uuid": "dd9e89be-e479-4fca-9104-75e6faf14c1b", + "name": "opentrons_96_filtertiprack_20ul_D5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 49.204, + "y": 46.104, + "z": 25.49 + }, + "position3d": { + "x": 49.204, + "y": 46.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_D5#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_D5#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_D5#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_D5#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 49.204, + "y": 46.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_E5", + "uuid": "d3df3945-1f14-4d6b-94a4-cde5852e411f", + "name": "opentrons_96_filtertiprack_20ul_E5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 49.204, + "y": 37.104, + "z": 25.49 + }, + "position3d": { + "x": 49.204, + "y": 37.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_E5#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_E5#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_E5#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_E5#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 49.204, + "y": 37.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_F5", + "uuid": "0e20ec94-42ff-47b4-afdd-7b3b7f749ea9", + "name": "opentrons_96_filtertiprack_20ul_F5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 49.204, + "y": 28.104, + "z": 25.49 + }, + "position3d": { + "x": 49.204, + "y": 28.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_F5#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_F5#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_F5#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_F5#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 49.204, + "y": 28.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_G5", + "uuid": "7a659c6d-29a1-404c-adb0-e2eb001e6eea", + "name": "opentrons_96_filtertiprack_20ul_G5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 49.204, + "y": 19.104, + "z": 25.49 + }, + "position3d": { + "x": 49.204, + "y": 19.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_G5#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_G5#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_G5#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_G5#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 49.204, + "y": 19.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_H5", + "uuid": "22d4c928-8033-4319-a18b-8b37a28c4e27", + "name": "opentrons_96_filtertiprack_20ul_H5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 49.204, + "y": 10.104, + "z": 25.49 + }, + "position3d": { + "x": 49.204, + "y": 10.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_H5#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_H5#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_H5#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_H5#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 49.204, + "y": 10.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_A6", + "uuid": "fa0ef4fe-ba6c-4ac4-bdaf-acb652acc9f4", + "name": "opentrons_96_filtertiprack_20ul_A6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 58.204, + "y": 73.104, + "z": 25.49 + }, + "position3d": { + "x": 58.204, + "y": 73.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_A6#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_A6#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_A6#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_A6#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 58.204, + "y": 73.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_B6", + "uuid": "168f7dde-bd9b-48c5-8a72-1f06798fb049", + "name": "opentrons_96_filtertiprack_20ul_B6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 58.204, + "y": 64.104, + "z": 25.49 + }, + "position3d": { + "x": 58.204, + "y": 64.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_B6#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_B6#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_B6#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_B6#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 58.204, + "y": 64.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_C6", + "uuid": "f58c8649-8eb0-463d-affb-2ec561c206c3", + "name": "opentrons_96_filtertiprack_20ul_C6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 58.204, + "y": 55.104, + "z": 25.49 + }, + "position3d": { + "x": 58.204, + "y": 55.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_C6#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_C6#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_C6#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_C6#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 58.204, + "y": 55.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_D6", + "uuid": "d65b75d5-7073-4c94-9f62-b188e9dc5359", + "name": "opentrons_96_filtertiprack_20ul_D6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 58.204, + "y": 46.104, + "z": 25.49 + }, + "position3d": { + "x": 58.204, + "y": 46.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_D6#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_D6#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_D6#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_D6#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 58.204, + "y": 46.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_E6", + "uuid": "afbf0d61-824d-434b-98b5-fa522a71d182", + "name": "opentrons_96_filtertiprack_20ul_E6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 58.204, + "y": 37.104, + "z": 25.49 + }, + "position3d": { + "x": 58.204, + "y": 37.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_E6#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_E6#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_E6#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_E6#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 58.204, + "y": 37.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_F6", + "uuid": "3c5957bd-bd9b-4960-8bf0-f87c307980c5", + "name": "opentrons_96_filtertiprack_20ul_F6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 58.204, + "y": 28.104, + "z": 25.49 + }, + "position3d": { + "x": 58.204, + "y": 28.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_F6#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_F6#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_F6#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_F6#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 58.204, + "y": 28.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_G6", + "uuid": "0c2f11ed-9d5a-46fd-941d-38d18aba3c88", + "name": "opentrons_96_filtertiprack_20ul_G6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 58.204, + "y": 19.104, + "z": 25.49 + }, + "position3d": { + "x": 58.204, + "y": 19.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_G6#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_G6#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_G6#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_G6#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 58.204, + "y": 19.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_H6", + "uuid": "8178429c-bfb1-4315-91e0-baf7ca46b5af", + "name": "opentrons_96_filtertiprack_20ul_H6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 58.204, + "y": 10.104, + "z": 25.49 + }, + "position3d": { + "x": 58.204, + "y": 10.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_H6#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_H6#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_H6#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_H6#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 58.204, + "y": 10.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_A7", + "uuid": "5f643b63-ebf0-47e7-9541-56b66bc14eed", + "name": "opentrons_96_filtertiprack_20ul_A7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 67.204, + "y": 73.104, + "z": 25.49 + }, + "position3d": { + "x": 67.204, + "y": 73.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_A7#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_A7#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_A7#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_A7#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 67.204, + "y": 73.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_B7", + "uuid": "fb24f933-c363-46bc-9513-84576407c320", + "name": "opentrons_96_filtertiprack_20ul_B7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 67.204, + "y": 64.104, + "z": 25.49 + }, + "position3d": { + "x": 67.204, + "y": 64.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_B7#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_B7#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_B7#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_B7#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 67.204, + "y": 64.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_C7", + "uuid": "73df03c9-504a-4a79-80a2-514eb4b78879", + "name": "opentrons_96_filtertiprack_20ul_C7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 67.204, + "y": 55.104, + "z": 25.49 + }, + "position3d": { + "x": 67.204, + "y": 55.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_C7#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_C7#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_C7#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_C7#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 67.204, + "y": 55.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_D7", + "uuid": "39a57e7d-bf26-40d8-916e-9263b30c53ec", + "name": "opentrons_96_filtertiprack_20ul_D7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 67.204, + "y": 46.104, + "z": 25.49 + }, + "position3d": { + "x": 67.204, + "y": 46.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_D7#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_D7#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_D7#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_D7#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 67.204, + "y": 46.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_E7", + "uuid": "f5f896ef-d440-4023-844c-2d52556f3e8f", + "name": "opentrons_96_filtertiprack_20ul_E7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 67.204, + "y": 37.104, + "z": 25.49 + }, + "position3d": { + "x": 67.204, + "y": 37.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_E7#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_E7#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_E7#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_E7#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 67.204, + "y": 37.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_F7", + "uuid": "676748a6-dd6f-49a8-aa66-b86177d831e5", + "name": "opentrons_96_filtertiprack_20ul_F7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 67.204, + "y": 28.104, + "z": 25.49 + }, + "position3d": { + "x": 67.204, + "y": 28.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_F7#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_F7#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_F7#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_F7#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 67.204, + "y": 28.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_G7", + "uuid": "b69886c5-36a3-47e5-9eab-a912e9b393ec", + "name": "opentrons_96_filtertiprack_20ul_G7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 67.204, + "y": 19.104, + "z": 25.49 + }, + "position3d": { + "x": 67.204, + "y": 19.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_G7#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_G7#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_G7#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_G7#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 67.204, + "y": 19.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_H7", + "uuid": "8f7755a4-9048-46e4-8a30-e01599303c43", + "name": "opentrons_96_filtertiprack_20ul_H7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 67.204, + "y": 10.104, + "z": 25.49 + }, + "position3d": { + "x": 67.204, + "y": 10.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_H7#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_H7#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_H7#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_H7#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 67.204, + "y": 10.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_A8", + "uuid": "cb226314-d419-470f-a718-3af752bd13fd", + "name": "opentrons_96_filtertiprack_20ul_A8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 76.204, + "y": 73.104, + "z": 25.49 + }, + "position3d": { + "x": 76.204, + "y": 73.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_A8#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_A8#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_A8#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_A8#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 76.204, + "y": 73.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_B8", + "uuid": "28fb2efc-39e7-4622-8c03-f2bbbf26759d", + "name": "opentrons_96_filtertiprack_20ul_B8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 76.204, + "y": 64.104, + "z": 25.49 + }, + "position3d": { + "x": 76.204, + "y": 64.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_B8#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_B8#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_B8#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_B8#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 76.204, + "y": 64.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_C8", + "uuid": "920acb80-0be8-41e3-bb64-7b5a1a6c1d5f", + "name": "opentrons_96_filtertiprack_20ul_C8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 76.204, + "y": 55.104, + "z": 25.49 + }, + "position3d": { + "x": 76.204, + "y": 55.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_C8#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_C8#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_C8#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_C8#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 76.204, + "y": 55.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_D8", + "uuid": "15a13489-3802-46d7-9a71-58898ac3bdcf", + "name": "opentrons_96_filtertiprack_20ul_D8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 76.204, + "y": 46.104, + "z": 25.49 + }, + "position3d": { + "x": 76.204, + "y": 46.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_D8#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_D8#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_D8#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_D8#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 76.204, + "y": 46.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_E8", + "uuid": "c1c2ce88-1c51-41c1-a81c-4c431bf337cf", + "name": "opentrons_96_filtertiprack_20ul_E8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 76.204, + "y": 37.104, + "z": 25.49 + }, + "position3d": { + "x": 76.204, + "y": 37.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_E8#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_E8#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_E8#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_E8#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 76.204, + "y": 37.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_F8", + "uuid": "3d9ee988-3268-49cb-8f3c-8d63bb2384de", + "name": "opentrons_96_filtertiprack_20ul_F8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 76.204, + "y": 28.104, + "z": 25.49 + }, + "position3d": { + "x": 76.204, + "y": 28.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_F8#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_F8#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_F8#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_F8#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 76.204, + "y": 28.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_G8", + "uuid": "82f9f5d8-9ca9-40c3-a3b3-649fa721c18c", + "name": "opentrons_96_filtertiprack_20ul_G8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 76.204, + "y": 19.104, + "z": 25.49 + }, + "position3d": { + "x": 76.204, + "y": 19.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_G8#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_G8#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_G8#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_G8#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 76.204, + "y": 19.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_H8", + "uuid": "89cbd06c-4f52-4769-b30b-dc3683fbfc39", + "name": "opentrons_96_filtertiprack_20ul_H8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 76.204, + "y": 10.104, + "z": 25.49 + }, + "position3d": { + "x": 76.204, + "y": 10.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_H8#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_H8#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_H8#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_H8#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 76.204, + "y": 10.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_A9", + "uuid": "3f257c08-dcaf-481e-b4d1-ac525d57d437", + "name": "opentrons_96_filtertiprack_20ul_A9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 85.204, + "y": 73.104, + "z": 25.49 + }, + "position3d": { + "x": 85.204, + "y": 73.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_A9#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_A9#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_A9#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_A9#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 85.204, + "y": 73.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_B9", + "uuid": "b3066fb4-4e56-4dc4-a8f9-62ae50cccb22", + "name": "opentrons_96_filtertiprack_20ul_B9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 85.204, + "y": 64.104, + "z": 25.49 + }, + "position3d": { + "x": 85.204, + "y": 64.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_B9#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_B9#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_B9#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_B9#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 85.204, + "y": 64.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_C9", + "uuid": "00fcd30b-176d-4d71-80ce-73cc6dea237a", + "name": "opentrons_96_filtertiprack_20ul_C9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 85.204, + "y": 55.104, + "z": 25.49 + }, + "position3d": { + "x": 85.204, + "y": 55.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_C9#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_C9#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_C9#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_C9#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 85.204, + "y": 55.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_D9", + "uuid": "a8111db3-5a75-4999-a113-15aa716cfde2", + "name": "opentrons_96_filtertiprack_20ul_D9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 85.204, + "y": 46.104, + "z": 25.49 + }, + "position3d": { + "x": 85.204, + "y": 46.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_D9#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_D9#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_D9#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_D9#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 85.204, + "y": 46.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_E9", + "uuid": "c6ac8cb1-e22d-4f24-baf5-cda606671519", + "name": "opentrons_96_filtertiprack_20ul_E9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 85.204, + "y": 37.104, + "z": 25.49 + }, + "position3d": { + "x": 85.204, + "y": 37.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_E9#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_E9#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_E9#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_E9#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 85.204, + "y": 37.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_F9", + "uuid": "43d4cd78-b027-4539-a474-709eb2ece84f", + "name": "opentrons_96_filtertiprack_20ul_F9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 85.204, + "y": 28.104, + "z": 25.49 + }, + "position3d": { + "x": 85.204, + "y": 28.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_F9#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_F9#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_F9#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_F9#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 85.204, + "y": 28.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_G9", + "uuid": "57399aca-e4ed-4f83-85a4-5ed9e8d47fa2", + "name": "opentrons_96_filtertiprack_20ul_G9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 85.204, + "y": 19.104, + "z": 25.49 + }, + "position3d": { + "x": 85.204, + "y": 19.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_G9#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_G9#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_G9#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_G9#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 85.204, + "y": 19.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_H9", + "uuid": "e5f8e85b-1ad3-447d-b512-50f2725a364e", + "name": "opentrons_96_filtertiprack_20ul_H9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 85.204, + "y": 10.104, + "z": 25.49 + }, + "position3d": { + "x": 85.204, + "y": 10.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_H9#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_H9#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_H9#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_H9#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 85.204, + "y": 10.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_A10", + "uuid": "46ebd82d-acea-4c26-a482-1b227aa9a96f", + "name": "opentrons_96_filtertiprack_20ul_A10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.204, + "y": 73.104, + "z": 25.49 + }, + "position3d": { + "x": 94.204, + "y": 73.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_A10#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_A10#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_A10#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_A10#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.204, + "y": 73.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_B10", + "uuid": "5d7cf6a9-e7be-43c9-9193-563a13c78fac", + "name": "opentrons_96_filtertiprack_20ul_B10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.204, + "y": 64.104, + "z": 25.49 + }, + "position3d": { + "x": 94.204, + "y": 64.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_B10#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_B10#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_B10#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_B10#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.204, + "y": 64.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_C10", + "uuid": "d9bf752e-e288-4659-81ec-1bd0596585ba", + "name": "opentrons_96_filtertiprack_20ul_C10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.204, + "y": 55.104, + "z": 25.49 + }, + "position3d": { + "x": 94.204, + "y": 55.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_C10#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_C10#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_C10#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_C10#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.204, + "y": 55.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_D10", + "uuid": "a2d1bbed-3d54-4050-a27a-74663ded9d23", + "name": "opentrons_96_filtertiprack_20ul_D10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.204, + "y": 46.104, + "z": 25.49 + }, + "position3d": { + "x": 94.204, + "y": 46.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_D10#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_D10#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_D10#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_D10#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.204, + "y": 46.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_E10", + "uuid": "e73910bf-76ce-45df-9a36-62cfb0a3980e", + "name": "opentrons_96_filtertiprack_20ul_E10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.204, + "y": 37.104, + "z": 25.49 + }, + "position3d": { + "x": 94.204, + "y": 37.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_E10#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_E10#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_E10#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_E10#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.204, + "y": 37.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_F10", + "uuid": "99cc0b12-c001-47ca-8355-507dd8af77d1", + "name": "opentrons_96_filtertiprack_20ul_F10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.204, + "y": 28.104, + "z": 25.49 + }, + "position3d": { + "x": 94.204, + "y": 28.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_F10#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_F10#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_F10#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_F10#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.204, + "y": 28.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_G10", + "uuid": "a582770f-2d33-4d08-8bbb-e2285cc1585f", + "name": "opentrons_96_filtertiprack_20ul_G10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.204, + "y": 19.104, + "z": 25.49 + }, + "position3d": { + "x": 94.204, + "y": 19.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_G10#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_G10#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_G10#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_G10#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.204, + "y": 19.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_H10", + "uuid": "0ee8411b-c3cb-4e96-bc7d-a1707c498630", + "name": "opentrons_96_filtertiprack_20ul_H10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.204, + "y": 10.104, + "z": 25.49 + }, + "position3d": { + "x": 94.204, + "y": 10.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_H10#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_H10#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_H10#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_H10#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.204, + "y": 10.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_A11", + "uuid": "e5e0f57e-4c23-45b8-88f5-2d905dca87d5", + "name": "opentrons_96_filtertiprack_20ul_A11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 103.204, + "y": 73.104, + "z": 25.49 + }, + "position3d": { + "x": 103.204, + "y": 73.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_A11#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_A11#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_A11#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_A11#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 103.204, + "y": 73.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_B11", + "uuid": "1c42e578-6655-4669-a329-1be3b8f31be8", + "name": "opentrons_96_filtertiprack_20ul_B11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 103.204, + "y": 64.104, + "z": 25.49 + }, + "position3d": { + "x": 103.204, + "y": 64.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_B11#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_B11#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_B11#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_B11#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 103.204, + "y": 64.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_C11", + "uuid": "3391e0e5-8da7-4b4b-935a-9b1f1f0e0640", + "name": "opentrons_96_filtertiprack_20ul_C11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 103.204, + "y": 55.104, + "z": 25.49 + }, + "position3d": { + "x": 103.204, + "y": 55.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_C11#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_C11#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_C11#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_C11#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 103.204, + "y": 55.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_D11", + "uuid": "d618c293-2a2c-4ce4-9da3-9ff19a6e1292", + "name": "opentrons_96_filtertiprack_20ul_D11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 103.204, + "y": 46.104, + "z": 25.49 + }, + "position3d": { + "x": 103.204, + "y": 46.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_D11#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_D11#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_D11#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_D11#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 103.204, + "y": 46.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_E11", + "uuid": "a53979b7-7af7-4332-b115-5681bf96d291", + "name": "opentrons_96_filtertiprack_20ul_E11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 103.204, + "y": 37.104, + "z": 25.49 + }, + "position3d": { + "x": 103.204, + "y": 37.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_E11#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_E11#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_E11#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_E11#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 103.204, + "y": 37.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_F11", + "uuid": "da4b2129-3b4a-409e-9895-5e00533aceb0", + "name": "opentrons_96_filtertiprack_20ul_F11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 103.204, + "y": 28.104, + "z": 25.49 + }, + "position3d": { + "x": 103.204, + "y": 28.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_F11#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_F11#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_F11#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_F11#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 103.204, + "y": 28.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_G11", + "uuid": "5e48c8c3-7529-4841-ab74-5a30c1c2c961", + "name": "opentrons_96_filtertiprack_20ul_G11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 103.204, + "y": 19.104, + "z": 25.49 + }, + "position3d": { + "x": 103.204, + "y": 19.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_G11#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_G11#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_G11#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_G11#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 103.204, + "y": 19.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_H11", + "uuid": "99709322-6183-49d3-9f1f-aaa54e87f90d", + "name": "opentrons_96_filtertiprack_20ul_H11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 103.204, + "y": 10.104, + "z": 25.49 + }, + "position3d": { + "x": 103.204, + "y": 10.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_H11#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_H11#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_H11#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_H11#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 103.204, + "y": 10.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_A12", + "uuid": "df7be45c-4a8e-43a5-ac11-091072ec1c8e", + "name": "opentrons_96_filtertiprack_20ul_A12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 112.204, + "y": 73.104, + "z": 25.49 + }, + "position3d": { + "x": 112.204, + "y": 73.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_A12#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_A12#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_A12#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_A12#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 112.204, + "y": 73.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_B12", + "uuid": "0dd87004-4453-4564-aa28-f270e49b3b70", + "name": "opentrons_96_filtertiprack_20ul_B12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 112.204, + "y": 64.104, + "z": 25.49 + }, + "position3d": { + "x": 112.204, + "y": 64.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_B12#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_B12#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_B12#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_B12#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 112.204, + "y": 64.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_C12", + "uuid": "270b5095-3ef3-4c82-a6e6-0445b4c24925", + "name": "opentrons_96_filtertiprack_20ul_C12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 112.204, + "y": 55.104, + "z": 25.49 + }, + "position3d": { + "x": 112.204, + "y": 55.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_C12#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_C12#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_C12#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_C12#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 112.204, + "y": 55.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_D12", + "uuid": "13e963f8-1b75-41a9-b8da-48d0284c19d6", + "name": "opentrons_96_filtertiprack_20ul_D12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 112.204, + "y": 46.104, + "z": 25.49 + }, + "position3d": { + "x": 112.204, + "y": 46.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_D12#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_D12#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_D12#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_D12#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 112.204, + "y": 46.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_E12", + "uuid": "4ca53031-6365-480a-9487-68d624a21a22", + "name": "opentrons_96_filtertiprack_20ul_E12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 112.204, + "y": 37.104, + "z": 25.49 + }, + "position3d": { + "x": 112.204, + "y": 37.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_E12#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_E12#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_E12#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_E12#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 112.204, + "y": 37.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_F12", + "uuid": "ed305484-2c5c-42ce-b615-cec519c8b508", + "name": "opentrons_96_filtertiprack_20ul_F12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 112.204, + "y": 28.104, + "z": 25.49 + }, + "position3d": { + "x": 112.204, + "y": 28.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_F12#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_F12#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_F12#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_F12#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 112.204, + "y": 28.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_G12", + "uuid": "f75250e1-16d9-4656-bb82-64872f4d703d", + "name": "opentrons_96_filtertiprack_20ul_G12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 112.204, + "y": 19.104, + "z": 25.49 + }, + "position3d": { + "x": 112.204, + "y": 19.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_G12#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_G12#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_G12#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_G12#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 112.204, + "y": 19.104, + "z": 25.49 + } + }, + { + "id": "opentrons_96_filtertiprack_20ul_H12", + "uuid": "1910ae86-ddaf-4d6f-a4ee-f2a6cb917d0d", + "name": "opentrons_96_filtertiprack_20ul_H12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3690552c-8a96-4b6d-b331-c298b1397bdc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 112.204, + "y": 10.104, + "z": 25.49 + }, + "position3d": { + "x": 112.204, + "y": 10.104, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_H12#1", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_H12#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_filtertiprack_20ul_H12#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_filtertiprack_20ul_H12#0", + "total_tip_length": 39.2, + "has_filter": true, + "maximal_volume": 20, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 112.204, + "y": 10.104, + "z": 25.49 + } + } + ] + }, + { + "id": "opentrons_96_tiprack_1000ul", + "category": [ + "tip_racks" + ], + "class": { + "module": "pylabrobot.resources.opentrons.tip_racks:opentrons_96_tiprack_1000ul", + "type": "pylabrobot" + }, + "description": "Opentrons 96 tiprack 1000ul", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/opentrons/tip_racks.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "opentrons_96_tiprack_1000ul", + "uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "name": "opentrons_96_tiprack_1000ul", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "tip_rack", + "class": "", + "pose": { + "size": { + "depth": 97.47, + "width": 127.76, + "height": 85.48 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipRack", + "size_x": 127.76, + "size_y": 85.48, + "size_z": 97.47, + "category": "tip_rack", + "model": "Opentrons OT-2 96 Tip Rack 1000 µL", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "opentrons_96_tiprack_1000ul_A1", + "B1": "opentrons_96_tiprack_1000ul_B1", + "C1": "opentrons_96_tiprack_1000ul_C1", + "D1": "opentrons_96_tiprack_1000ul_D1", + "E1": "opentrons_96_tiprack_1000ul_E1", + "F1": "opentrons_96_tiprack_1000ul_F1", + "G1": "opentrons_96_tiprack_1000ul_G1", + "H1": "opentrons_96_tiprack_1000ul_H1", + "A2": "opentrons_96_tiprack_1000ul_A2", + "B2": "opentrons_96_tiprack_1000ul_B2", + "C2": "opentrons_96_tiprack_1000ul_C2", + "D2": "opentrons_96_tiprack_1000ul_D2", + "E2": "opentrons_96_tiprack_1000ul_E2", + "F2": "opentrons_96_tiprack_1000ul_F2", + "G2": "opentrons_96_tiprack_1000ul_G2", + "H2": "opentrons_96_tiprack_1000ul_H2", + "A3": "opentrons_96_tiprack_1000ul_A3", + "B3": "opentrons_96_tiprack_1000ul_B3", + "C3": "opentrons_96_tiprack_1000ul_C3", + "D3": "opentrons_96_tiprack_1000ul_D3", + "E3": "opentrons_96_tiprack_1000ul_E3", + "F3": "opentrons_96_tiprack_1000ul_F3", + "G3": "opentrons_96_tiprack_1000ul_G3", + "H3": "opentrons_96_tiprack_1000ul_H3", + "A4": "opentrons_96_tiprack_1000ul_A4", + "B4": "opentrons_96_tiprack_1000ul_B4", + "C4": "opentrons_96_tiprack_1000ul_C4", + "D4": "opentrons_96_tiprack_1000ul_D4", + "E4": "opentrons_96_tiprack_1000ul_E4", + "F4": "opentrons_96_tiprack_1000ul_F4", + "G4": "opentrons_96_tiprack_1000ul_G4", + "H4": "opentrons_96_tiprack_1000ul_H4", + "A5": "opentrons_96_tiprack_1000ul_A5", + "B5": "opentrons_96_tiprack_1000ul_B5", + "C5": "opentrons_96_tiprack_1000ul_C5", + "D5": "opentrons_96_tiprack_1000ul_D5", + "E5": "opentrons_96_tiprack_1000ul_E5", + "F5": "opentrons_96_tiprack_1000ul_F5", + "G5": "opentrons_96_tiprack_1000ul_G5", + "H5": "opentrons_96_tiprack_1000ul_H5", + "A6": "opentrons_96_tiprack_1000ul_A6", + "B6": "opentrons_96_tiprack_1000ul_B6", + "C6": "opentrons_96_tiprack_1000ul_C6", + "D6": "opentrons_96_tiprack_1000ul_D6", + "E6": "opentrons_96_tiprack_1000ul_E6", + "F6": "opentrons_96_tiprack_1000ul_F6", + "G6": "opentrons_96_tiprack_1000ul_G6", + "H6": "opentrons_96_tiprack_1000ul_H6", + "A7": "opentrons_96_tiprack_1000ul_A7", + "B7": "opentrons_96_tiprack_1000ul_B7", + "C7": "opentrons_96_tiprack_1000ul_C7", + "D7": "opentrons_96_tiprack_1000ul_D7", + "E7": "opentrons_96_tiprack_1000ul_E7", + "F7": "opentrons_96_tiprack_1000ul_F7", + "G7": "opentrons_96_tiprack_1000ul_G7", + "H7": "opentrons_96_tiprack_1000ul_H7", + "A8": "opentrons_96_tiprack_1000ul_A8", + "B8": "opentrons_96_tiprack_1000ul_B8", + "C8": "opentrons_96_tiprack_1000ul_C8", + "D8": "opentrons_96_tiprack_1000ul_D8", + "E8": "opentrons_96_tiprack_1000ul_E8", + "F8": "opentrons_96_tiprack_1000ul_F8", + "G8": "opentrons_96_tiprack_1000ul_G8", + "H8": "opentrons_96_tiprack_1000ul_H8", + "A9": "opentrons_96_tiprack_1000ul_A9", + "B9": "opentrons_96_tiprack_1000ul_B9", + "C9": "opentrons_96_tiprack_1000ul_C9", + "D9": "opentrons_96_tiprack_1000ul_D9", + "E9": "opentrons_96_tiprack_1000ul_E9", + "F9": "opentrons_96_tiprack_1000ul_F9", + "G9": "opentrons_96_tiprack_1000ul_G9", + "H9": "opentrons_96_tiprack_1000ul_H9", + "A10": "opentrons_96_tiprack_1000ul_A10", + "B10": "opentrons_96_tiprack_1000ul_B10", + "C10": "opentrons_96_tiprack_1000ul_C10", + "D10": "opentrons_96_tiprack_1000ul_D10", + "E10": "opentrons_96_tiprack_1000ul_E10", + "F10": "opentrons_96_tiprack_1000ul_F10", + "G10": "opentrons_96_tiprack_1000ul_G10", + "H10": "opentrons_96_tiprack_1000ul_H10", + "A11": "opentrons_96_tiprack_1000ul_A11", + "B11": "opentrons_96_tiprack_1000ul_B11", + "C11": "opentrons_96_tiprack_1000ul_C11", + "D11": "opentrons_96_tiprack_1000ul_D11", + "E11": "opentrons_96_tiprack_1000ul_E11", + "F11": "opentrons_96_tiprack_1000ul_F11", + "G11": "opentrons_96_tiprack_1000ul_G11", + "H11": "opentrons_96_tiprack_1000ul_H11", + "A12": "opentrons_96_tiprack_1000ul_A12", + "B12": "opentrons_96_tiprack_1000ul_B12", + "C12": "opentrons_96_tiprack_1000ul_C12", + "D12": "opentrons_96_tiprack_1000ul_D12", + "E12": "opentrons_96_tiprack_1000ul_E12", + "F12": "opentrons_96_tiprack_1000ul_F12", + "G12": "opentrons_96_tiprack_1000ul_G12", + "H12": "opentrons_96_tiprack_1000ul_H12" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_A1", + "uuid": "3bfd9508-305b-459c-a483-a5b578f01060", + "name": "opentrons_96_tiprack_1000ul_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.824, + "y": 71.684, + "z": 9.47 + }, + "position3d": { + "x": 11.824, + "y": 71.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_A1#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_A1#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_A1#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_A1#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.824, + "y": 71.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_B1", + "uuid": "64abf43f-4cf2-452c-a4f9-8f96c5c6e047", + "name": "opentrons_96_tiprack_1000ul_B1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.824, + "y": 62.684, + "z": 9.47 + }, + "position3d": { + "x": 11.824, + "y": 62.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_B1#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_B1#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_B1#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_B1#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.824, + "y": 62.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_C1", + "uuid": "43a4c628-e56d-4014-aaa7-d4ad672c128b", + "name": "opentrons_96_tiprack_1000ul_C1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.824, + "y": 53.684, + "z": 9.47 + }, + "position3d": { + "x": 11.824, + "y": 53.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_C1#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_C1#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_C1#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_C1#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.824, + "y": 53.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_D1", + "uuid": "ecb543b6-119a-4120-a205-87095d595539", + "name": "opentrons_96_tiprack_1000ul_D1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.824, + "y": 44.684, + "z": 9.47 + }, + "position3d": { + "x": 11.824, + "y": 44.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_D1#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_D1#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_D1#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_D1#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.824, + "y": 44.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_E1", + "uuid": "02598920-a8bb-4cb2-a84a-bb85834eee32", + "name": "opentrons_96_tiprack_1000ul_E1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.824, + "y": 35.684, + "z": 9.47 + }, + "position3d": { + "x": 11.824, + "y": 35.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_E1#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_E1#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_E1#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_E1#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.824, + "y": 35.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_F1", + "uuid": "e6660e7f-97ef-421f-b489-6bf2fc73b2b9", + "name": "opentrons_96_tiprack_1000ul_F1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.824, + "y": 26.684, + "z": 9.47 + }, + "position3d": { + "x": 11.824, + "y": 26.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_F1#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_F1#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_F1#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_F1#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.824, + "y": 26.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_G1", + "uuid": "3b532b77-48db-4e43-818c-8e7ad5b774fc", + "name": "opentrons_96_tiprack_1000ul_G1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.824, + "y": 17.684, + "z": 9.47 + }, + "position3d": { + "x": 11.824, + "y": 17.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_G1#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_G1#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_G1#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_G1#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.824, + "y": 17.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_H1", + "uuid": "d2087d35-4f87-47a8-8bfa-9c8efc7c195e", + "name": "opentrons_96_tiprack_1000ul_H1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.824, + "y": 8.684, + "z": 9.47 + }, + "position3d": { + "x": 11.824, + "y": 8.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_H1#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_H1#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_H1#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_H1#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.824, + "y": 8.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_A2", + "uuid": "a4da8008-b3d8-466c-a8ab-2c964143bc9e", + "name": "opentrons_96_tiprack_1000ul_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.824, + "y": 71.684, + "z": 9.47 + }, + "position3d": { + "x": 20.824, + "y": 71.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_A2#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_A2#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_A2#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_A2#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.824, + "y": 71.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_B2", + "uuid": "57e5c0e5-4323-4a75-b5a6-a23f297db71a", + "name": "opentrons_96_tiprack_1000ul_B2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.824, + "y": 62.684, + "z": 9.47 + }, + "position3d": { + "x": 20.824, + "y": 62.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_B2#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_B2#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_B2#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_B2#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.824, + "y": 62.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_C2", + "uuid": "44e7d930-3536-433d-95a6-5610e6ffca17", + "name": "opentrons_96_tiprack_1000ul_C2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.824, + "y": 53.684, + "z": 9.47 + }, + "position3d": { + "x": 20.824, + "y": 53.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_C2#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_C2#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_C2#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_C2#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.824, + "y": 53.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_D2", + "uuid": "1096381a-0a3c-41cc-96d2-47f83708aa98", + "name": "opentrons_96_tiprack_1000ul_D2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.824, + "y": 44.684, + "z": 9.47 + }, + "position3d": { + "x": 20.824, + "y": 44.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_D2#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_D2#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_D2#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_D2#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.824, + "y": 44.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_E2", + "uuid": "74669d52-28ef-4c2f-8808-829bf8925879", + "name": "opentrons_96_tiprack_1000ul_E2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.824, + "y": 35.684, + "z": 9.47 + }, + "position3d": { + "x": 20.824, + "y": 35.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_E2#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_E2#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_E2#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_E2#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.824, + "y": 35.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_F2", + "uuid": "c00b254c-81f0-41c4-a007-402c134fc806", + "name": "opentrons_96_tiprack_1000ul_F2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.824, + "y": 26.684, + "z": 9.47 + }, + "position3d": { + "x": 20.824, + "y": 26.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_F2#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_F2#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_F2#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_F2#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.824, + "y": 26.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_G2", + "uuid": "8ef9580c-ebb1-4aa6-b02d-b3b4e06eac5e", + "name": "opentrons_96_tiprack_1000ul_G2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.824, + "y": 17.684, + "z": 9.47 + }, + "position3d": { + "x": 20.824, + "y": 17.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_G2#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_G2#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_G2#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_G2#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.824, + "y": 17.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_H2", + "uuid": "2b98ce5f-6e05-4ba7-93cb-ddbf47e6cc26", + "name": "opentrons_96_tiprack_1000ul_H2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.824, + "y": 8.684, + "z": 9.47 + }, + "position3d": { + "x": 20.824, + "y": 8.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_H2#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_H2#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_H2#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_H2#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.824, + "y": 8.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_A3", + "uuid": "16bd4929-0253-4cc3-9271-5358fdc00e94", + "name": "opentrons_96_tiprack_1000ul_A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.824, + "y": 71.684, + "z": 9.47 + }, + "position3d": { + "x": 29.824, + "y": 71.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_A3#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_A3#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_A3#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_A3#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.824, + "y": 71.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_B3", + "uuid": "ef5ee2d2-89d5-45dc-9bb4-ab3b09e3bf42", + "name": "opentrons_96_tiprack_1000ul_B3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.824, + "y": 62.684, + "z": 9.47 + }, + "position3d": { + "x": 29.824, + "y": 62.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_B3#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_B3#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_B3#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_B3#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.824, + "y": 62.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_C3", + "uuid": "93f7bf94-0ffd-4069-9094-3beaea69c40b", + "name": "opentrons_96_tiprack_1000ul_C3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.824, + "y": 53.684, + "z": 9.47 + }, + "position3d": { + "x": 29.824, + "y": 53.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_C3#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_C3#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_C3#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_C3#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.824, + "y": 53.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_D3", + "uuid": "c8d50894-01f1-4eee-8414-51f400dcf562", + "name": "opentrons_96_tiprack_1000ul_D3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.824, + "y": 44.684, + "z": 9.47 + }, + "position3d": { + "x": 29.824, + "y": 44.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_D3#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_D3#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_D3#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_D3#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.824, + "y": 44.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_E3", + "uuid": "2b0f1926-49aa-48e3-b913-6e3c04f8fc5d", + "name": "opentrons_96_tiprack_1000ul_E3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.824, + "y": 35.684, + "z": 9.47 + }, + "position3d": { + "x": 29.824, + "y": 35.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_E3#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_E3#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_E3#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_E3#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.824, + "y": 35.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_F3", + "uuid": "39e6eb96-7b53-4e60-bfb2-356158f1c115", + "name": "opentrons_96_tiprack_1000ul_F3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.824, + "y": 26.684, + "z": 9.47 + }, + "position3d": { + "x": 29.824, + "y": 26.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_F3#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_F3#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_F3#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_F3#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.824, + "y": 26.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_G3", + "uuid": "9db0d307-78ae-4ecd-8a5d-23bc4595e998", + "name": "opentrons_96_tiprack_1000ul_G3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.824, + "y": 17.684, + "z": 9.47 + }, + "position3d": { + "x": 29.824, + "y": 17.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_G3#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_G3#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_G3#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_G3#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.824, + "y": 17.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_H3", + "uuid": "309a96af-dd8d-469d-81bc-b9735227d485", + "name": "opentrons_96_tiprack_1000ul_H3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.824, + "y": 8.684, + "z": 9.47 + }, + "position3d": { + "x": 29.824, + "y": 8.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_H3#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_H3#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_H3#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_H3#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.824, + "y": 8.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_A4", + "uuid": "fbc5ceb0-9849-4030-bd6a-85bac890bd1a", + "name": "opentrons_96_tiprack_1000ul_A4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.824, + "y": 71.684, + "z": 9.47 + }, + "position3d": { + "x": 38.824, + "y": 71.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_A4#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_A4#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_A4#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_A4#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.824, + "y": 71.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_B4", + "uuid": "1cbc3a1a-2924-43f6-9d5d-cbaca79e733b", + "name": "opentrons_96_tiprack_1000ul_B4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.824, + "y": 62.684, + "z": 9.47 + }, + "position3d": { + "x": 38.824, + "y": 62.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_B4#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_B4#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_B4#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_B4#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.824, + "y": 62.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_C4", + "uuid": "c221cdb9-836e-48a3-885b-adc537cdff3a", + "name": "opentrons_96_tiprack_1000ul_C4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.824, + "y": 53.684, + "z": 9.47 + }, + "position3d": { + "x": 38.824, + "y": 53.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_C4#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_C4#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_C4#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_C4#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.824, + "y": 53.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_D4", + "uuid": "baa8f5e5-b1fb-42a3-a1a9-2e4ccd3409c0", + "name": "opentrons_96_tiprack_1000ul_D4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.824, + "y": 44.684, + "z": 9.47 + }, + "position3d": { + "x": 38.824, + "y": 44.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_D4#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_D4#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_D4#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_D4#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.824, + "y": 44.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_E4", + "uuid": "fb2a5390-52fe-42bf-942b-58cbf88dc4d9", + "name": "opentrons_96_tiprack_1000ul_E4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.824, + "y": 35.684, + "z": 9.47 + }, + "position3d": { + "x": 38.824, + "y": 35.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_E4#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_E4#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_E4#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_E4#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.824, + "y": 35.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_F4", + "uuid": "5a5a75e6-e25d-4f92-9873-a6926962a732", + "name": "opentrons_96_tiprack_1000ul_F4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.824, + "y": 26.684, + "z": 9.47 + }, + "position3d": { + "x": 38.824, + "y": 26.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_F4#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_F4#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_F4#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_F4#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.824, + "y": 26.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_G4", + "uuid": "1d698bf6-95b6-4827-9d03-48de57df5d60", + "name": "opentrons_96_tiprack_1000ul_G4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.824, + "y": 17.684, + "z": 9.47 + }, + "position3d": { + "x": 38.824, + "y": 17.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_G4#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_G4#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_G4#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_G4#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.824, + "y": 17.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_H4", + "uuid": "dd0bd70c-0e2f-4f07-acf9-a531257bb16e", + "name": "opentrons_96_tiprack_1000ul_H4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.824, + "y": 8.684, + "z": 9.47 + }, + "position3d": { + "x": 38.824, + "y": 8.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_H4#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_H4#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_H4#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_H4#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.824, + "y": 8.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_A5", + "uuid": "8197b9b9-7eb8-4b3f-8d5f-b8a42c9832d2", + "name": "opentrons_96_tiprack_1000ul_A5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.824, + "y": 71.684, + "z": 9.47 + }, + "position3d": { + "x": 47.824, + "y": 71.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_A5#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_A5#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_A5#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_A5#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.824, + "y": 71.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_B5", + "uuid": "d8af7fa1-8f01-45ec-9e6f-d390e37f257e", + "name": "opentrons_96_tiprack_1000ul_B5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.824, + "y": 62.684, + "z": 9.47 + }, + "position3d": { + "x": 47.824, + "y": 62.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_B5#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_B5#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_B5#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_B5#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.824, + "y": 62.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_C5", + "uuid": "61cbb656-a5c3-4391-9e09-a0b501df1399", + "name": "opentrons_96_tiprack_1000ul_C5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.824, + "y": 53.684, + "z": 9.47 + }, + "position3d": { + "x": 47.824, + "y": 53.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_C5#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_C5#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_C5#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_C5#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.824, + "y": 53.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_D5", + "uuid": "ae16c2f8-2dca-4c53-b609-6ab491ab0482", + "name": "opentrons_96_tiprack_1000ul_D5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.824, + "y": 44.684, + "z": 9.47 + }, + "position3d": { + "x": 47.824, + "y": 44.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_D5#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_D5#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_D5#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_D5#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.824, + "y": 44.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_E5", + "uuid": "761934b3-9688-441c-a635-d6e02792656d", + "name": "opentrons_96_tiprack_1000ul_E5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.824, + "y": 35.684, + "z": 9.47 + }, + "position3d": { + "x": 47.824, + "y": 35.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_E5#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_E5#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_E5#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_E5#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.824, + "y": 35.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_F5", + "uuid": "6ff90179-a89e-43b9-ad2b-6d5fbf6927bb", + "name": "opentrons_96_tiprack_1000ul_F5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.824, + "y": 26.684, + "z": 9.47 + }, + "position3d": { + "x": 47.824, + "y": 26.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_F5#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_F5#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_F5#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_F5#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.824, + "y": 26.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_G5", + "uuid": "74a189e7-24d1-420a-b2b5-be0b1e6cec59", + "name": "opentrons_96_tiprack_1000ul_G5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.824, + "y": 17.684, + "z": 9.47 + }, + "position3d": { + "x": 47.824, + "y": 17.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_G5#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_G5#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_G5#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_G5#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.824, + "y": 17.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_H5", + "uuid": "728bb080-24cf-452e-b788-0983a9c7f8f8", + "name": "opentrons_96_tiprack_1000ul_H5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.824, + "y": 8.684, + "z": 9.47 + }, + "position3d": { + "x": 47.824, + "y": 8.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_H5#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_H5#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_H5#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_H5#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.824, + "y": 8.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_A6", + "uuid": "ab275709-f23e-41f0-a5a2-c8f51ee562e7", + "name": "opentrons_96_tiprack_1000ul_A6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.824, + "y": 71.684, + "z": 9.47 + }, + "position3d": { + "x": 56.824, + "y": 71.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_A6#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_A6#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_A6#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_A6#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.824, + "y": 71.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_B6", + "uuid": "6cd38041-c236-4a7c-b346-660d0d230857", + "name": "opentrons_96_tiprack_1000ul_B6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.824, + "y": 62.684, + "z": 9.47 + }, + "position3d": { + "x": 56.824, + "y": 62.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_B6#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_B6#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_B6#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_B6#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.824, + "y": 62.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_C6", + "uuid": "20cea4a2-1343-4f38-a297-58151c9d0b1f", + "name": "opentrons_96_tiprack_1000ul_C6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.824, + "y": 53.684, + "z": 9.47 + }, + "position3d": { + "x": 56.824, + "y": 53.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_C6#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_C6#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_C6#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_C6#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.824, + "y": 53.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_D6", + "uuid": "b37e565c-6a0c-4c1c-bb28-6a90c040eeed", + "name": "opentrons_96_tiprack_1000ul_D6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.824, + "y": 44.684, + "z": 9.47 + }, + "position3d": { + "x": 56.824, + "y": 44.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_D6#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_D6#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_D6#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_D6#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.824, + "y": 44.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_E6", + "uuid": "a51b1808-0032-4bdb-afd2-3cf1a6ef4616", + "name": "opentrons_96_tiprack_1000ul_E6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.824, + "y": 35.684, + "z": 9.47 + }, + "position3d": { + "x": 56.824, + "y": 35.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_E6#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_E6#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_E6#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_E6#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.824, + "y": 35.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_F6", + "uuid": "243eecde-ee97-4064-b361-54eb724e39e0", + "name": "opentrons_96_tiprack_1000ul_F6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.824, + "y": 26.684, + "z": 9.47 + }, + "position3d": { + "x": 56.824, + "y": 26.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_F6#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_F6#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_F6#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_F6#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.824, + "y": 26.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_G6", + "uuid": "ebf58886-3eb9-4336-b056-9e1455f319c5", + "name": "opentrons_96_tiprack_1000ul_G6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.824, + "y": 17.684, + "z": 9.47 + }, + "position3d": { + "x": 56.824, + "y": 17.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_G6#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_G6#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_G6#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_G6#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.824, + "y": 17.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_H6", + "uuid": "e3f308e3-ae4e-47e9-a44a-95337268ef86", + "name": "opentrons_96_tiprack_1000ul_H6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.824, + "y": 8.684, + "z": 9.47 + }, + "position3d": { + "x": 56.824, + "y": 8.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_H6#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_H6#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_H6#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_H6#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.824, + "y": 8.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_A7", + "uuid": "659ac865-1208-4aad-91a4-66ba78597756", + "name": "opentrons_96_tiprack_1000ul_A7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.824, + "y": 71.684, + "z": 9.47 + }, + "position3d": { + "x": 65.824, + "y": 71.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_A7#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_A7#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_A7#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_A7#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.824, + "y": 71.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_B7", + "uuid": "a3241dab-0c42-43e1-93ba-e464d95c383a", + "name": "opentrons_96_tiprack_1000ul_B7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.824, + "y": 62.684, + "z": 9.47 + }, + "position3d": { + "x": 65.824, + "y": 62.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_B7#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_B7#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_B7#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_B7#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.824, + "y": 62.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_C7", + "uuid": "982c817a-306e-4812-90f6-dbc3cf1aafb1", + "name": "opentrons_96_tiprack_1000ul_C7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.824, + "y": 53.684, + "z": 9.47 + }, + "position3d": { + "x": 65.824, + "y": 53.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_C7#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_C7#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_C7#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_C7#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.824, + "y": 53.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_D7", + "uuid": "6c35ec8d-5cdf-4b6c-8767-7ea81062635f", + "name": "opentrons_96_tiprack_1000ul_D7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.824, + "y": 44.684, + "z": 9.47 + }, + "position3d": { + "x": 65.824, + "y": 44.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_D7#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_D7#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_D7#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_D7#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.824, + "y": 44.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_E7", + "uuid": "90bc49fa-5e6e-4767-8d63-d8da4677a3dc", + "name": "opentrons_96_tiprack_1000ul_E7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.824, + "y": 35.684, + "z": 9.47 + }, + "position3d": { + "x": 65.824, + "y": 35.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_E7#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_E7#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_E7#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_E7#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.824, + "y": 35.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_F7", + "uuid": "b612b514-75ce-4e7f-a1e0-01767735e1d7", + "name": "opentrons_96_tiprack_1000ul_F7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.824, + "y": 26.684, + "z": 9.47 + }, + "position3d": { + "x": 65.824, + "y": 26.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_F7#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_F7#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_F7#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_F7#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.824, + "y": 26.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_G7", + "uuid": "fbc764d8-52d7-4b3a-9c9c-a326e8fc1cab", + "name": "opentrons_96_tiprack_1000ul_G7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.824, + "y": 17.684, + "z": 9.47 + }, + "position3d": { + "x": 65.824, + "y": 17.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_G7#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_G7#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_G7#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_G7#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.824, + "y": 17.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_H7", + "uuid": "2ccf74fd-448c-451c-8cad-ab7cb6db6265", + "name": "opentrons_96_tiprack_1000ul_H7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.824, + "y": 8.684, + "z": 9.47 + }, + "position3d": { + "x": 65.824, + "y": 8.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_H7#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_H7#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_H7#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_H7#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.824, + "y": 8.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_A8", + "uuid": "c0aaf5d4-afd9-4984-bfc3-5defb9108d34", + "name": "opentrons_96_tiprack_1000ul_A8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.824, + "y": 71.684, + "z": 9.47 + }, + "position3d": { + "x": 74.824, + "y": 71.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_A8#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_A8#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_A8#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_A8#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.824, + "y": 71.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_B8", + "uuid": "9728b93f-0647-4700-ae69-4d7543fbc6c0", + "name": "opentrons_96_tiprack_1000ul_B8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.824, + "y": 62.684, + "z": 9.47 + }, + "position3d": { + "x": 74.824, + "y": 62.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_B8#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_B8#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_B8#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_B8#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.824, + "y": 62.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_C8", + "uuid": "8b7eaf85-87da-40e9-a0f4-c988c50ee38f", + "name": "opentrons_96_tiprack_1000ul_C8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.824, + "y": 53.684, + "z": 9.47 + }, + "position3d": { + "x": 74.824, + "y": 53.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_C8#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_C8#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_C8#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_C8#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.824, + "y": 53.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_D8", + "uuid": "224785f0-83c5-40db-9989-9f598fd1c9ca", + "name": "opentrons_96_tiprack_1000ul_D8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.824, + "y": 44.684, + "z": 9.47 + }, + "position3d": { + "x": 74.824, + "y": 44.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_D8#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_D8#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_D8#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_D8#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.824, + "y": 44.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_E8", + "uuid": "5d449a8c-96fd-4fd8-a381-eba28a0c5504", + "name": "opentrons_96_tiprack_1000ul_E8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.824, + "y": 35.684, + "z": 9.47 + }, + "position3d": { + "x": 74.824, + "y": 35.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_E8#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_E8#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_E8#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_E8#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.824, + "y": 35.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_F8", + "uuid": "a0279978-8305-4c34-b9e2-eec0504727ef", + "name": "opentrons_96_tiprack_1000ul_F8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.824, + "y": 26.684, + "z": 9.47 + }, + "position3d": { + "x": 74.824, + "y": 26.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_F8#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_F8#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_F8#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_F8#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.824, + "y": 26.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_G8", + "uuid": "6ea43bbb-1a34-4055-a130-13ab1c1d3b13", + "name": "opentrons_96_tiprack_1000ul_G8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.824, + "y": 17.684, + "z": 9.47 + }, + "position3d": { + "x": 74.824, + "y": 17.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_G8#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_G8#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_G8#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_G8#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.824, + "y": 17.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_H8", + "uuid": "8e5a2754-bd7a-4d82-8589-f12e729cd181", + "name": "opentrons_96_tiprack_1000ul_H8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.824, + "y": 8.684, + "z": 9.47 + }, + "position3d": { + "x": 74.824, + "y": 8.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_H8#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_H8#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_H8#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_H8#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.824, + "y": 8.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_A9", + "uuid": "f56bdf20-0008-4b8d-9398-872eea4ba3ab", + "name": "opentrons_96_tiprack_1000ul_A9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.824, + "y": 71.684, + "z": 9.47 + }, + "position3d": { + "x": 83.824, + "y": 71.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_A9#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_A9#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_A9#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_A9#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.824, + "y": 71.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_B9", + "uuid": "1dd89d38-e6d3-425e-a3a0-e601123b2df9", + "name": "opentrons_96_tiprack_1000ul_B9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.824, + "y": 62.684, + "z": 9.47 + }, + "position3d": { + "x": 83.824, + "y": 62.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_B9#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_B9#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_B9#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_B9#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.824, + "y": 62.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_C9", + "uuid": "92e610a3-ae6a-4748-bf59-864e86505bf5", + "name": "opentrons_96_tiprack_1000ul_C9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.824, + "y": 53.684, + "z": 9.47 + }, + "position3d": { + "x": 83.824, + "y": 53.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_C9#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_C9#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_C9#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_C9#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.824, + "y": 53.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_D9", + "uuid": "4ba7f05d-5092-4767-8b8c-3839e2f62105", + "name": "opentrons_96_tiprack_1000ul_D9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.824, + "y": 44.684, + "z": 9.47 + }, + "position3d": { + "x": 83.824, + "y": 44.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_D9#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_D9#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_D9#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_D9#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.824, + "y": 44.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_E9", + "uuid": "e4286bac-fa5c-48ae-ada6-6a1a74f342d8", + "name": "opentrons_96_tiprack_1000ul_E9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.824, + "y": 35.684, + "z": 9.47 + }, + "position3d": { + "x": 83.824, + "y": 35.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_E9#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_E9#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_E9#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_E9#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.824, + "y": 35.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_F9", + "uuid": "8205851f-aa3a-4dd8-91ec-733a144080a2", + "name": "opentrons_96_tiprack_1000ul_F9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.824, + "y": 26.684, + "z": 9.47 + }, + "position3d": { + "x": 83.824, + "y": 26.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_F9#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_F9#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_F9#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_F9#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.824, + "y": 26.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_G9", + "uuid": "3893462b-06b9-4e4b-ab29-4fb3aec56826", + "name": "opentrons_96_tiprack_1000ul_G9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.824, + "y": 17.684, + "z": 9.47 + }, + "position3d": { + "x": 83.824, + "y": 17.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_G9#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_G9#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_G9#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_G9#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.824, + "y": 17.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_H9", + "uuid": "f395ef72-6d61-4296-a4fc-8833ecf37407", + "name": "opentrons_96_tiprack_1000ul_H9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.824, + "y": 8.684, + "z": 9.47 + }, + "position3d": { + "x": 83.824, + "y": 8.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_H9#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_H9#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_H9#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_H9#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.824, + "y": 8.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_A10", + "uuid": "b1ef008b-dc35-4a8e-bc99-45d451350fcb", + "name": "opentrons_96_tiprack_1000ul_A10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.824, + "y": 71.684, + "z": 9.47 + }, + "position3d": { + "x": 92.824, + "y": 71.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_A10#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_A10#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_A10#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_A10#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.824, + "y": 71.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_B10", + "uuid": "7a43b9fb-c4e2-48d6-89d2-aece6825e2cd", + "name": "opentrons_96_tiprack_1000ul_B10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.824, + "y": 62.684, + "z": 9.47 + }, + "position3d": { + "x": 92.824, + "y": 62.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_B10#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_B10#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_B10#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_B10#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.824, + "y": 62.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_C10", + "uuid": "7477ea31-7ba6-4e54-8df5-bdfd89819868", + "name": "opentrons_96_tiprack_1000ul_C10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.824, + "y": 53.684, + "z": 9.47 + }, + "position3d": { + "x": 92.824, + "y": 53.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_C10#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_C10#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_C10#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_C10#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.824, + "y": 53.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_D10", + "uuid": "e8419b1d-1df9-4e63-b331-f878215c5aeb", + "name": "opentrons_96_tiprack_1000ul_D10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.824, + "y": 44.684, + "z": 9.47 + }, + "position3d": { + "x": 92.824, + "y": 44.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_D10#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_D10#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_D10#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_D10#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.824, + "y": 44.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_E10", + "uuid": "666f1c21-b89a-4978-b71c-eb73afcd18ef", + "name": "opentrons_96_tiprack_1000ul_E10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.824, + "y": 35.684, + "z": 9.47 + }, + "position3d": { + "x": 92.824, + "y": 35.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_E10#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_E10#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_E10#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_E10#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.824, + "y": 35.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_F10", + "uuid": "24f84076-b11e-4342-bab0-83e3263d8513", + "name": "opentrons_96_tiprack_1000ul_F10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.824, + "y": 26.684, + "z": 9.47 + }, + "position3d": { + "x": 92.824, + "y": 26.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_F10#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_F10#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_F10#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_F10#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.824, + "y": 26.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_G10", + "uuid": "205291f6-282b-4a29-8988-e7cd4054bb7b", + "name": "opentrons_96_tiprack_1000ul_G10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.824, + "y": 17.684, + "z": 9.47 + }, + "position3d": { + "x": 92.824, + "y": 17.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_G10#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_G10#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_G10#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_G10#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.824, + "y": 17.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_H10", + "uuid": "a2012f82-459e-4a85-8c84-5419932ddbc0", + "name": "opentrons_96_tiprack_1000ul_H10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.824, + "y": 8.684, + "z": 9.47 + }, + "position3d": { + "x": 92.824, + "y": 8.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_H10#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_H10#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_H10#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_H10#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.824, + "y": 8.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_A11", + "uuid": "09708336-6459-4b0c-9f2f-3cc71b30c891", + "name": "opentrons_96_tiprack_1000ul_A11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.824, + "y": 71.684, + "z": 9.47 + }, + "position3d": { + "x": 101.824, + "y": 71.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_A11#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_A11#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_A11#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_A11#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.824, + "y": 71.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_B11", + "uuid": "71deb175-b25e-48d3-bb35-4218218b8299", + "name": "opentrons_96_tiprack_1000ul_B11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.824, + "y": 62.684, + "z": 9.47 + }, + "position3d": { + "x": 101.824, + "y": 62.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_B11#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_B11#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_B11#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_B11#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.824, + "y": 62.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_C11", + "uuid": "9dc947bb-613b-423e-9352-5c65aa31b3b6", + "name": "opentrons_96_tiprack_1000ul_C11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.824, + "y": 53.684, + "z": 9.47 + }, + "position3d": { + "x": 101.824, + "y": 53.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_C11#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_C11#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_C11#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_C11#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.824, + "y": 53.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_D11", + "uuid": "8d099ff6-1096-46e8-a89f-8aa6ae99abcf", + "name": "opentrons_96_tiprack_1000ul_D11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.824, + "y": 44.684, + "z": 9.47 + }, + "position3d": { + "x": 101.824, + "y": 44.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_D11#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_D11#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_D11#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_D11#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.824, + "y": 44.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_E11", + "uuid": "31fae1dc-2b52-4d3f-9908-06ab8a153d90", + "name": "opentrons_96_tiprack_1000ul_E11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.824, + "y": 35.684, + "z": 9.47 + }, + "position3d": { + "x": 101.824, + "y": 35.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_E11#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_E11#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_E11#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_E11#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.824, + "y": 35.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_F11", + "uuid": "800ce096-189a-432d-b775-9342242d009e", + "name": "opentrons_96_tiprack_1000ul_F11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.824, + "y": 26.684, + "z": 9.47 + }, + "position3d": { + "x": 101.824, + "y": 26.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_F11#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_F11#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_F11#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_F11#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.824, + "y": 26.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_G11", + "uuid": "d6d0d694-9fae-47b4-b6d6-792a16d4a32e", + "name": "opentrons_96_tiprack_1000ul_G11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.824, + "y": 17.684, + "z": 9.47 + }, + "position3d": { + "x": 101.824, + "y": 17.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_G11#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_G11#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_G11#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_G11#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.824, + "y": 17.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_H11", + "uuid": "b89d1280-e8e9-40c4-aa5a-ee5d7d6c2bb3", + "name": "opentrons_96_tiprack_1000ul_H11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.824, + "y": 8.684, + "z": 9.47 + }, + "position3d": { + "x": 101.824, + "y": 8.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_H11#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_H11#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_H11#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_H11#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.824, + "y": 8.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_A12", + "uuid": "64075bd0-e425-404f-8d73-7bbb5f220244", + "name": "opentrons_96_tiprack_1000ul_A12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.824, + "y": 71.684, + "z": 9.47 + }, + "position3d": { + "x": 110.824, + "y": 71.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_A12#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_A12#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_A12#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_A12#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.824, + "y": 71.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_B12", + "uuid": "ca9182f1-eb20-4de3-ba2b-9fde7737e3f0", + "name": "opentrons_96_tiprack_1000ul_B12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.824, + "y": 62.684, + "z": 9.47 + }, + "position3d": { + "x": 110.824, + "y": 62.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_B12#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_B12#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_B12#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_B12#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.824, + "y": 62.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_C12", + "uuid": "9bbf1fa5-13c5-46d2-9c49-fafef2361d0d", + "name": "opentrons_96_tiprack_1000ul_C12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.824, + "y": 53.684, + "z": 9.47 + }, + "position3d": { + "x": 110.824, + "y": 53.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_C12#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_C12#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_C12#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_C12#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.824, + "y": 53.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_D12", + "uuid": "c1a31eff-1c17-46a2-9c89-f45c43ce7320", + "name": "opentrons_96_tiprack_1000ul_D12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.824, + "y": 44.684, + "z": 9.47 + }, + "position3d": { + "x": 110.824, + "y": 44.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_D12#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_D12#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_D12#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_D12#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.824, + "y": 44.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_E12", + "uuid": "44c494c1-f500-4318-a849-44b9b9ab7f5b", + "name": "opentrons_96_tiprack_1000ul_E12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.824, + "y": 35.684, + "z": 9.47 + }, + "position3d": { + "x": 110.824, + "y": 35.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_E12#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_E12#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_E12#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_E12#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.824, + "y": 35.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_F12", + "uuid": "fff3c9df-9335-4562-803d-b5cee42e52ab", + "name": "opentrons_96_tiprack_1000ul_F12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.824, + "y": 26.684, + "z": 9.47 + }, + "position3d": { + "x": 110.824, + "y": 26.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_F12#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_F12#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_F12#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_F12#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.824, + "y": 26.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_G12", + "uuid": "8669d908-5eb5-4596-825b-f986187d5b32", + "name": "opentrons_96_tiprack_1000ul_G12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.824, + "y": 17.684, + "z": 9.47 + }, + "position3d": { + "x": 110.824, + "y": 17.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_G12#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_G12#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_G12#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_G12#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.824, + "y": 17.684, + "z": 9.47 + } + }, + { + "id": "opentrons_96_tiprack_1000ul_H12", + "uuid": "aa26f775-36b5-4444-ab4f-635df307dcec", + "name": "opentrons_96_tiprack_1000ul_H12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "023dc93f-31ee-4467-98a2-470ae0fc4402", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 5.112, + "height": 5.112 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.824, + "y": 8.684, + "z": 9.47 + }, + "position3d": { + "x": 110.824, + "y": 8.684, + "z": 9.47 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 5.112, + "size_y": 5.112, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_H12#1", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_H12#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_1000ul_H12#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_1000ul_H12#0", + "total_tip_length": 88, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 7.95 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.824, + "y": 8.684, + "z": 9.47 + } + } + ] + }, + { + "id": "opentrons_96_tiprack_10ul", + "category": [ + "tip_racks" + ], + "class": { + "module": "pylabrobot.resources.opentrons.tip_racks:opentrons_96_tiprack_10ul", + "type": "pylabrobot" + }, + "description": "Opentrons 96 tiprack 10ul", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/opentrons/tip_racks.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "opentrons_96_tiprack_10ul", + "uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "name": "opentrons_96_tiprack_10ul", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "tip_rack", + "class": "", + "pose": { + "size": { + "depth": 64.69, + "width": 127.76, + "height": 85.48 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipRack", + "size_x": 127.76, + "size_y": 85.48, + "size_z": 64.69, + "category": "tip_rack", + "model": "Opentrons OT-2 96 Tip Rack 10 µL", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "opentrons_96_tiprack_10ul_A1", + "B1": "opentrons_96_tiprack_10ul_B1", + "C1": "opentrons_96_tiprack_10ul_C1", + "D1": "opentrons_96_tiprack_10ul_D1", + "E1": "opentrons_96_tiprack_10ul_E1", + "F1": "opentrons_96_tiprack_10ul_F1", + "G1": "opentrons_96_tiprack_10ul_G1", + "H1": "opentrons_96_tiprack_10ul_H1", + "A2": "opentrons_96_tiprack_10ul_A2", + "B2": "opentrons_96_tiprack_10ul_B2", + "C2": "opentrons_96_tiprack_10ul_C2", + "D2": "opentrons_96_tiprack_10ul_D2", + "E2": "opentrons_96_tiprack_10ul_E2", + "F2": "opentrons_96_tiprack_10ul_F2", + "G2": "opentrons_96_tiprack_10ul_G2", + "H2": "opentrons_96_tiprack_10ul_H2", + "A3": "opentrons_96_tiprack_10ul_A3", + "B3": "opentrons_96_tiprack_10ul_B3", + "C3": "opentrons_96_tiprack_10ul_C3", + "D3": "opentrons_96_tiprack_10ul_D3", + "E3": "opentrons_96_tiprack_10ul_E3", + "F3": "opentrons_96_tiprack_10ul_F3", + "G3": "opentrons_96_tiprack_10ul_G3", + "H3": "opentrons_96_tiprack_10ul_H3", + "A4": "opentrons_96_tiprack_10ul_A4", + "B4": "opentrons_96_tiprack_10ul_B4", + "C4": "opentrons_96_tiprack_10ul_C4", + "D4": "opentrons_96_tiprack_10ul_D4", + "E4": "opentrons_96_tiprack_10ul_E4", + "F4": "opentrons_96_tiprack_10ul_F4", + "G4": "opentrons_96_tiprack_10ul_G4", + "H4": "opentrons_96_tiprack_10ul_H4", + "A5": "opentrons_96_tiprack_10ul_A5", + "B5": "opentrons_96_tiprack_10ul_B5", + "C5": "opentrons_96_tiprack_10ul_C5", + "D5": "opentrons_96_tiprack_10ul_D5", + "E5": "opentrons_96_tiprack_10ul_E5", + "F5": "opentrons_96_tiprack_10ul_F5", + "G5": "opentrons_96_tiprack_10ul_G5", + "H5": "opentrons_96_tiprack_10ul_H5", + "A6": "opentrons_96_tiprack_10ul_A6", + "B6": "opentrons_96_tiprack_10ul_B6", + "C6": "opentrons_96_tiprack_10ul_C6", + "D6": "opentrons_96_tiprack_10ul_D6", + "E6": "opentrons_96_tiprack_10ul_E6", + "F6": "opentrons_96_tiprack_10ul_F6", + "G6": "opentrons_96_tiprack_10ul_G6", + "H6": "opentrons_96_tiprack_10ul_H6", + "A7": "opentrons_96_tiprack_10ul_A7", + "B7": "opentrons_96_tiprack_10ul_B7", + "C7": "opentrons_96_tiprack_10ul_C7", + "D7": "opentrons_96_tiprack_10ul_D7", + "E7": "opentrons_96_tiprack_10ul_E7", + "F7": "opentrons_96_tiprack_10ul_F7", + "G7": "opentrons_96_tiprack_10ul_G7", + "H7": "opentrons_96_tiprack_10ul_H7", + "A8": "opentrons_96_tiprack_10ul_A8", + "B8": "opentrons_96_tiprack_10ul_B8", + "C8": "opentrons_96_tiprack_10ul_C8", + "D8": "opentrons_96_tiprack_10ul_D8", + "E8": "opentrons_96_tiprack_10ul_E8", + "F8": "opentrons_96_tiprack_10ul_F8", + "G8": "opentrons_96_tiprack_10ul_G8", + "H8": "opentrons_96_tiprack_10ul_H8", + "A9": "opentrons_96_tiprack_10ul_A9", + "B9": "opentrons_96_tiprack_10ul_B9", + "C9": "opentrons_96_tiprack_10ul_C9", + "D9": "opentrons_96_tiprack_10ul_D9", + "E9": "opentrons_96_tiprack_10ul_E9", + "F9": "opentrons_96_tiprack_10ul_F9", + "G9": "opentrons_96_tiprack_10ul_G9", + "H9": "opentrons_96_tiprack_10ul_H9", + "A10": "opentrons_96_tiprack_10ul_A10", + "B10": "opentrons_96_tiprack_10ul_B10", + "C10": "opentrons_96_tiprack_10ul_C10", + "D10": "opentrons_96_tiprack_10ul_D10", + "E10": "opentrons_96_tiprack_10ul_E10", + "F10": "opentrons_96_tiprack_10ul_F10", + "G10": "opentrons_96_tiprack_10ul_G10", + "H10": "opentrons_96_tiprack_10ul_H10", + "A11": "opentrons_96_tiprack_10ul_A11", + "B11": "opentrons_96_tiprack_10ul_B11", + "C11": "opentrons_96_tiprack_10ul_C11", + "D11": "opentrons_96_tiprack_10ul_D11", + "E11": "opentrons_96_tiprack_10ul_E11", + "F11": "opentrons_96_tiprack_10ul_F11", + "G11": "opentrons_96_tiprack_10ul_G11", + "H11": "opentrons_96_tiprack_10ul_H11", + "A12": "opentrons_96_tiprack_10ul_A12", + "B12": "opentrons_96_tiprack_10ul_B12", + "C12": "opentrons_96_tiprack_10ul_C12", + "D12": "opentrons_96_tiprack_10ul_D12", + "E12": "opentrons_96_tiprack_10ul_E12", + "F12": "opentrons_96_tiprack_10ul_F12", + "G12": "opentrons_96_tiprack_10ul_G12", + "H12": "opentrons_96_tiprack_10ul_H12" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "opentrons_96_tiprack_10ul_A1", + "uuid": "f48031e4-40e8-4809-9427-dde4d552df8a", + "name": "opentrons_96_tiprack_10ul_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 13.224, + "y": 73.084, + "z": 25.49 + }, + "position3d": { + "x": 13.224, + "y": 73.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_A1#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_A1#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_A1#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_A1#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 13.224, + "y": 73.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_B1", + "uuid": "fd7a62c9-1b5e-4f75-8550-2e7ac80d2e1b", + "name": "opentrons_96_tiprack_10ul_B1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 13.224, + "y": 64.084, + "z": 25.49 + }, + "position3d": { + "x": 13.224, + "y": 64.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_B1#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_B1#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_B1#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_B1#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 13.224, + "y": 64.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_C1", + "uuid": "0291bf26-19a9-41d7-be8d-ba5b58452d95", + "name": "opentrons_96_tiprack_10ul_C1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 13.224, + "y": 55.084, + "z": 25.49 + }, + "position3d": { + "x": 13.224, + "y": 55.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_C1#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_C1#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_C1#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_C1#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 13.224, + "y": 55.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_D1", + "uuid": "5e5271b9-fbb2-4ed5-a844-566358a5fe24", + "name": "opentrons_96_tiprack_10ul_D1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 13.224, + "y": 46.084, + "z": 25.49 + }, + "position3d": { + "x": 13.224, + "y": 46.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_D1#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_D1#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_D1#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_D1#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 13.224, + "y": 46.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_E1", + "uuid": "df895740-9ad5-4fe2-b4f8-bab602a6b15c", + "name": "opentrons_96_tiprack_10ul_E1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 13.224, + "y": 37.084, + "z": 25.49 + }, + "position3d": { + "x": 13.224, + "y": 37.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_E1#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_E1#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_E1#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_E1#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 13.224, + "y": 37.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_F1", + "uuid": "f9a1ae90-50a9-4fac-a697-bd287cc7a164", + "name": "opentrons_96_tiprack_10ul_F1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 13.224, + "y": 28.084, + "z": 25.49 + }, + "position3d": { + "x": 13.224, + "y": 28.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_F1#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_F1#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_F1#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_F1#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 13.224, + "y": 28.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_G1", + "uuid": "be76c70e-17b8-4045-9ff0-96afa02af26b", + "name": "opentrons_96_tiprack_10ul_G1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 13.224, + "y": 19.084, + "z": 25.49 + }, + "position3d": { + "x": 13.224, + "y": 19.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_G1#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_G1#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_G1#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_G1#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 13.224, + "y": 19.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_H1", + "uuid": "abb59508-64a9-4804-a2f0-f9bee2d98373", + "name": "opentrons_96_tiprack_10ul_H1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 13.224, + "y": 10.084, + "z": 25.49 + }, + "position3d": { + "x": 13.224, + "y": 10.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_H1#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_H1#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_H1#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_H1#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 13.224, + "y": 10.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_A2", + "uuid": "b61cee9c-f40d-44ca-9f85-37dd733f769b", + "name": "opentrons_96_tiprack_10ul_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 22.224, + "y": 73.084, + "z": 25.49 + }, + "position3d": { + "x": 22.224, + "y": 73.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_A2#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_A2#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_A2#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_A2#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 22.224, + "y": 73.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_B2", + "uuid": "5a54f296-74c6-4484-b040-90c0446d615a", + "name": "opentrons_96_tiprack_10ul_B2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 22.224, + "y": 64.084, + "z": 25.49 + }, + "position3d": { + "x": 22.224, + "y": 64.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_B2#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_B2#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_B2#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_B2#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 22.224, + "y": 64.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_C2", + "uuid": "18c938ad-e99d-441f-b0ce-3dd7eaa65eae", + "name": "opentrons_96_tiprack_10ul_C2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 22.224, + "y": 55.084, + "z": 25.49 + }, + "position3d": { + "x": 22.224, + "y": 55.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_C2#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_C2#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_C2#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_C2#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 22.224, + "y": 55.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_D2", + "uuid": "99380398-a6d2-4065-a1cd-500dc67f2f06", + "name": "opentrons_96_tiprack_10ul_D2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 22.224, + "y": 46.084, + "z": 25.49 + }, + "position3d": { + "x": 22.224, + "y": 46.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_D2#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_D2#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_D2#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_D2#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 22.224, + "y": 46.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_E2", + "uuid": "f4037fe6-5db8-4475-b1de-7db816466471", + "name": "opentrons_96_tiprack_10ul_E2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 22.224, + "y": 37.084, + "z": 25.49 + }, + "position3d": { + "x": 22.224, + "y": 37.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_E2#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_E2#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_E2#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_E2#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 22.224, + "y": 37.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_F2", + "uuid": "77af569e-0e6d-4876-bd3c-9242508ed685", + "name": "opentrons_96_tiprack_10ul_F2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 22.224, + "y": 28.084, + "z": 25.49 + }, + "position3d": { + "x": 22.224, + "y": 28.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_F2#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_F2#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_F2#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_F2#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 22.224, + "y": 28.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_G2", + "uuid": "8c5e097f-0ecb-48f5-905f-61a4c17c29f4", + "name": "opentrons_96_tiprack_10ul_G2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 22.224, + "y": 19.084, + "z": 25.49 + }, + "position3d": { + "x": 22.224, + "y": 19.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_G2#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_G2#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_G2#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_G2#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 22.224, + "y": 19.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_H2", + "uuid": "9c43dd72-e493-4f2a-b053-0aa5daaf58a6", + "name": "opentrons_96_tiprack_10ul_H2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 22.224, + "y": 10.084, + "z": 25.49 + }, + "position3d": { + "x": 22.224, + "y": 10.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_H2#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_H2#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_H2#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_H2#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 22.224, + "y": 10.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_A3", + "uuid": "bc832e14-a3a3-4869-8787-e3404d9cb71f", + "name": "opentrons_96_tiprack_10ul_A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 31.224, + "y": 73.084, + "z": 25.49 + }, + "position3d": { + "x": 31.224, + "y": 73.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_A3#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_A3#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_A3#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_A3#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 31.224, + "y": 73.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_B3", + "uuid": "ff2edf8c-b17a-49f4-84c6-7793c073185a", + "name": "opentrons_96_tiprack_10ul_B3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 31.224, + "y": 64.084, + "z": 25.49 + }, + "position3d": { + "x": 31.224, + "y": 64.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_B3#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_B3#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_B3#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_B3#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 31.224, + "y": 64.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_C3", + "uuid": "1e9966d5-23d3-4936-8f38-855181a3843f", + "name": "opentrons_96_tiprack_10ul_C3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 31.224, + "y": 55.084, + "z": 25.49 + }, + "position3d": { + "x": 31.224, + "y": 55.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_C3#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_C3#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_C3#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_C3#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 31.224, + "y": 55.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_D3", + "uuid": "2df76e61-d390-44d2-9941-8f40e247fc74", + "name": "opentrons_96_tiprack_10ul_D3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 31.224, + "y": 46.084, + "z": 25.49 + }, + "position3d": { + "x": 31.224, + "y": 46.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_D3#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_D3#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_D3#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_D3#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 31.224, + "y": 46.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_E3", + "uuid": "1613f9d7-8d4c-45c2-b6dc-c0f278eb6898", + "name": "opentrons_96_tiprack_10ul_E3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 31.224, + "y": 37.084, + "z": 25.49 + }, + "position3d": { + "x": 31.224, + "y": 37.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_E3#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_E3#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_E3#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_E3#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 31.224, + "y": 37.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_F3", + "uuid": "03ed4490-04da-4f6a-a081-4d71d960c7d1", + "name": "opentrons_96_tiprack_10ul_F3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 31.224, + "y": 28.084, + "z": 25.49 + }, + "position3d": { + "x": 31.224, + "y": 28.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_F3#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_F3#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_F3#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_F3#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 31.224, + "y": 28.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_G3", + "uuid": "eb3cfa56-23d7-45e1-833f-3748432196fa", + "name": "opentrons_96_tiprack_10ul_G3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 31.224, + "y": 19.084, + "z": 25.49 + }, + "position3d": { + "x": 31.224, + "y": 19.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_G3#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_G3#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_G3#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_G3#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 31.224, + "y": 19.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_H3", + "uuid": "a34b6157-3b78-4109-8419-29f8f4dc0926", + "name": "opentrons_96_tiprack_10ul_H3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 31.224, + "y": 10.084, + "z": 25.49 + }, + "position3d": { + "x": 31.224, + "y": 10.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_H3#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_H3#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_H3#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_H3#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 31.224, + "y": 10.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_A4", + "uuid": "5accf5f9-68cd-4318-b322-4f824279e60a", + "name": "opentrons_96_tiprack_10ul_A4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 40.224, + "y": 73.084, + "z": 25.49 + }, + "position3d": { + "x": 40.224, + "y": 73.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_A4#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_A4#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_A4#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_A4#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 40.224, + "y": 73.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_B4", + "uuid": "126be964-4672-48c0-af08-386f12a060b7", + "name": "opentrons_96_tiprack_10ul_B4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 40.224, + "y": 64.084, + "z": 25.49 + }, + "position3d": { + "x": 40.224, + "y": 64.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_B4#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_B4#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_B4#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_B4#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 40.224, + "y": 64.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_C4", + "uuid": "c213c5da-27b4-4c65-bd52-9285191f0390", + "name": "opentrons_96_tiprack_10ul_C4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 40.224, + "y": 55.084, + "z": 25.49 + }, + "position3d": { + "x": 40.224, + "y": 55.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_C4#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_C4#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_C4#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_C4#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 40.224, + "y": 55.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_D4", + "uuid": "b5687fa9-b0fb-48f1-a163-3c0d112ecb1f", + "name": "opentrons_96_tiprack_10ul_D4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 40.224, + "y": 46.084, + "z": 25.49 + }, + "position3d": { + "x": 40.224, + "y": 46.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_D4#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_D4#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_D4#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_D4#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 40.224, + "y": 46.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_E4", + "uuid": "14987919-0134-4d1e-829c-6065fa3b1473", + "name": "opentrons_96_tiprack_10ul_E4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 40.224, + "y": 37.084, + "z": 25.49 + }, + "position3d": { + "x": 40.224, + "y": 37.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_E4#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_E4#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_E4#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_E4#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 40.224, + "y": 37.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_F4", + "uuid": "75c3bc07-c2a5-409d-b091-cb15d581eb6d", + "name": "opentrons_96_tiprack_10ul_F4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 40.224, + "y": 28.084, + "z": 25.49 + }, + "position3d": { + "x": 40.224, + "y": 28.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_F4#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_F4#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_F4#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_F4#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 40.224, + "y": 28.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_G4", + "uuid": "5f20d544-a33e-4092-86cd-7d7210170858", + "name": "opentrons_96_tiprack_10ul_G4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 40.224, + "y": 19.084, + "z": 25.49 + }, + "position3d": { + "x": 40.224, + "y": 19.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_G4#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_G4#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_G4#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_G4#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 40.224, + "y": 19.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_H4", + "uuid": "7da039ff-9c26-4b48-bddd-efcf85583886", + "name": "opentrons_96_tiprack_10ul_H4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 40.224, + "y": 10.084, + "z": 25.49 + }, + "position3d": { + "x": 40.224, + "y": 10.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_H4#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_H4#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_H4#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_H4#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 40.224, + "y": 10.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_A5", + "uuid": "50f3a1c9-4a09-4f65-a157-a57012af6e36", + "name": "opentrons_96_tiprack_10ul_A5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 49.224, + "y": 73.084, + "z": 25.49 + }, + "position3d": { + "x": 49.224, + "y": 73.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_A5#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_A5#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_A5#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_A5#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 49.224, + "y": 73.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_B5", + "uuid": "0a44acdb-526d-4985-a6ba-e7445af06fbd", + "name": "opentrons_96_tiprack_10ul_B5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 49.224, + "y": 64.084, + "z": 25.49 + }, + "position3d": { + "x": 49.224, + "y": 64.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_B5#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_B5#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_B5#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_B5#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 49.224, + "y": 64.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_C5", + "uuid": "0b077c27-6c84-47b5-ac71-898557dc2542", + "name": "opentrons_96_tiprack_10ul_C5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 49.224, + "y": 55.084, + "z": 25.49 + }, + "position3d": { + "x": 49.224, + "y": 55.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_C5#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_C5#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_C5#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_C5#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 49.224, + "y": 55.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_D5", + "uuid": "73975a0c-2084-40e8-bcbd-39e75a948ecb", + "name": "opentrons_96_tiprack_10ul_D5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 49.224, + "y": 46.084, + "z": 25.49 + }, + "position3d": { + "x": 49.224, + "y": 46.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_D5#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_D5#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_D5#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_D5#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 49.224, + "y": 46.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_E5", + "uuid": "ac578492-f18a-4d57-bfe0-33611c0ef3ee", + "name": "opentrons_96_tiprack_10ul_E5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 49.224, + "y": 37.084, + "z": 25.49 + }, + "position3d": { + "x": 49.224, + "y": 37.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_E5#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_E5#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_E5#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_E5#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 49.224, + "y": 37.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_F5", + "uuid": "e6f1ad94-19f3-4ff0-b2ae-6deacedb3fd8", + "name": "opentrons_96_tiprack_10ul_F5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 49.224, + "y": 28.084, + "z": 25.49 + }, + "position3d": { + "x": 49.224, + "y": 28.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_F5#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_F5#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_F5#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_F5#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 49.224, + "y": 28.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_G5", + "uuid": "4d97dbd6-a20c-45ad-a0a4-9d5841a06309", + "name": "opentrons_96_tiprack_10ul_G5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 49.224, + "y": 19.084, + "z": 25.49 + }, + "position3d": { + "x": 49.224, + "y": 19.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_G5#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_G5#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_G5#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_G5#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 49.224, + "y": 19.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_H5", + "uuid": "25e61584-1def-4ca8-84f2-f34043dba6f3", + "name": "opentrons_96_tiprack_10ul_H5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 49.224, + "y": 10.084, + "z": 25.49 + }, + "position3d": { + "x": 49.224, + "y": 10.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_H5#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_H5#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_H5#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_H5#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 49.224, + "y": 10.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_A6", + "uuid": "e3f8c51f-85ff-4879-a774-79583dd2729d", + "name": "opentrons_96_tiprack_10ul_A6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 58.224, + "y": 73.084, + "z": 25.49 + }, + "position3d": { + "x": 58.224, + "y": 73.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_A6#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_A6#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_A6#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_A6#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 58.224, + "y": 73.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_B6", + "uuid": "1da7e12b-ab89-4c9c-a9d7-001b8c2dfa23", + "name": "opentrons_96_tiprack_10ul_B6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 58.224, + "y": 64.084, + "z": 25.49 + }, + "position3d": { + "x": 58.224, + "y": 64.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_B6#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_B6#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_B6#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_B6#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 58.224, + "y": 64.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_C6", + "uuid": "d929a5a9-38df-45e3-be68-6f852822efc1", + "name": "opentrons_96_tiprack_10ul_C6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 58.224, + "y": 55.084, + "z": 25.49 + }, + "position3d": { + "x": 58.224, + "y": 55.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_C6#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_C6#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_C6#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_C6#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 58.224, + "y": 55.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_D6", + "uuid": "e646a8e0-e83a-40ab-93fd-4362ccc7232f", + "name": "opentrons_96_tiprack_10ul_D6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 58.224, + "y": 46.084, + "z": 25.49 + }, + "position3d": { + "x": 58.224, + "y": 46.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_D6#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_D6#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_D6#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_D6#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 58.224, + "y": 46.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_E6", + "uuid": "c4462ef3-98f1-44c7-90b6-d73e6d6da7d1", + "name": "opentrons_96_tiprack_10ul_E6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 58.224, + "y": 37.084, + "z": 25.49 + }, + "position3d": { + "x": 58.224, + "y": 37.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_E6#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_E6#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_E6#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_E6#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 58.224, + "y": 37.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_F6", + "uuid": "1d8cffc0-5070-441e-983d-546950a40b35", + "name": "opentrons_96_tiprack_10ul_F6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 58.224, + "y": 28.084, + "z": 25.49 + }, + "position3d": { + "x": 58.224, + "y": 28.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_F6#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_F6#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_F6#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_F6#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 58.224, + "y": 28.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_G6", + "uuid": "2f205c33-4e47-4aaa-908a-111f1bac1d26", + "name": "opentrons_96_tiprack_10ul_G6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 58.224, + "y": 19.084, + "z": 25.49 + }, + "position3d": { + "x": 58.224, + "y": 19.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_G6#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_G6#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_G6#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_G6#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 58.224, + "y": 19.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_H6", + "uuid": "e0a7212e-845a-43c8-b638-13e24d38f080", + "name": "opentrons_96_tiprack_10ul_H6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 58.224, + "y": 10.084, + "z": 25.49 + }, + "position3d": { + "x": 58.224, + "y": 10.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_H6#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_H6#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_H6#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_H6#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 58.224, + "y": 10.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_A7", + "uuid": "fe8f7532-593a-44fd-a5eb-76801cd136db", + "name": "opentrons_96_tiprack_10ul_A7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 67.224, + "y": 73.084, + "z": 25.49 + }, + "position3d": { + "x": 67.224, + "y": 73.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_A7#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_A7#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_A7#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_A7#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 67.224, + "y": 73.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_B7", + "uuid": "c91f82c7-c1a0-4489-be91-cafc98ee3ff2", + "name": "opentrons_96_tiprack_10ul_B7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 67.224, + "y": 64.084, + "z": 25.49 + }, + "position3d": { + "x": 67.224, + "y": 64.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_B7#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_B7#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_B7#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_B7#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 67.224, + "y": 64.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_C7", + "uuid": "c9ca5c69-26d7-47a9-81cb-ca98ad8de1e0", + "name": "opentrons_96_tiprack_10ul_C7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 67.224, + "y": 55.084, + "z": 25.49 + }, + "position3d": { + "x": 67.224, + "y": 55.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_C7#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_C7#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_C7#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_C7#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 67.224, + "y": 55.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_D7", + "uuid": "d0460eef-406d-43fd-a2f6-1056ccee8d51", + "name": "opentrons_96_tiprack_10ul_D7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 67.224, + "y": 46.084, + "z": 25.49 + }, + "position3d": { + "x": 67.224, + "y": 46.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_D7#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_D7#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_D7#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_D7#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 67.224, + "y": 46.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_E7", + "uuid": "868734af-e678-43f2-9f19-9566e97974d4", + "name": "opentrons_96_tiprack_10ul_E7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 67.224, + "y": 37.084, + "z": 25.49 + }, + "position3d": { + "x": 67.224, + "y": 37.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_E7#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_E7#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_E7#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_E7#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 67.224, + "y": 37.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_F7", + "uuid": "df39cca2-0ab4-4f6c-8678-c6a3dd4a4b45", + "name": "opentrons_96_tiprack_10ul_F7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 67.224, + "y": 28.084, + "z": 25.49 + }, + "position3d": { + "x": 67.224, + "y": 28.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_F7#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_F7#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_F7#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_F7#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 67.224, + "y": 28.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_G7", + "uuid": "c97a49ac-653b-4c49-b0d7-0bacd171609b", + "name": "opentrons_96_tiprack_10ul_G7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 67.224, + "y": 19.084, + "z": 25.49 + }, + "position3d": { + "x": 67.224, + "y": 19.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_G7#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_G7#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_G7#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_G7#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 67.224, + "y": 19.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_H7", + "uuid": "c1cea7e1-166c-4e42-a4ec-b4b7a618fb37", + "name": "opentrons_96_tiprack_10ul_H7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 67.224, + "y": 10.084, + "z": 25.49 + }, + "position3d": { + "x": 67.224, + "y": 10.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_H7#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_H7#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_H7#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_H7#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 67.224, + "y": 10.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_A8", + "uuid": "a3aebc80-b77a-492d-87d6-ea32652e89b7", + "name": "opentrons_96_tiprack_10ul_A8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 76.224, + "y": 73.084, + "z": 25.49 + }, + "position3d": { + "x": 76.224, + "y": 73.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_A8#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_A8#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_A8#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_A8#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 76.224, + "y": 73.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_B8", + "uuid": "94dc90e4-7387-4914-87c8-8c021cdcc0af", + "name": "opentrons_96_tiprack_10ul_B8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 76.224, + "y": 64.084, + "z": 25.49 + }, + "position3d": { + "x": 76.224, + "y": 64.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_B8#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_B8#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_B8#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_B8#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 76.224, + "y": 64.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_C8", + "uuid": "ab7999c9-45ce-414f-8c63-d000724cf67b", + "name": "opentrons_96_tiprack_10ul_C8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 76.224, + "y": 55.084, + "z": 25.49 + }, + "position3d": { + "x": 76.224, + "y": 55.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_C8#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_C8#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_C8#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_C8#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 76.224, + "y": 55.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_D8", + "uuid": "525e960a-2e3c-4279-ab18-782a04fad777", + "name": "opentrons_96_tiprack_10ul_D8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 76.224, + "y": 46.084, + "z": 25.49 + }, + "position3d": { + "x": 76.224, + "y": 46.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_D8#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_D8#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_D8#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_D8#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 76.224, + "y": 46.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_E8", + "uuid": "5423cfac-4de7-4e7d-ba21-ec309133668b", + "name": "opentrons_96_tiprack_10ul_E8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 76.224, + "y": 37.084, + "z": 25.49 + }, + "position3d": { + "x": 76.224, + "y": 37.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_E8#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_E8#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_E8#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_E8#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 76.224, + "y": 37.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_F8", + "uuid": "e613adc0-512b-4ed7-b13e-fe5832a6dac0", + "name": "opentrons_96_tiprack_10ul_F8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 76.224, + "y": 28.084, + "z": 25.49 + }, + "position3d": { + "x": 76.224, + "y": 28.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_F8#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_F8#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_F8#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_F8#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 76.224, + "y": 28.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_G8", + "uuid": "332177e9-dcb9-47e4-a7d5-d1943674a240", + "name": "opentrons_96_tiprack_10ul_G8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 76.224, + "y": 19.084, + "z": 25.49 + }, + "position3d": { + "x": 76.224, + "y": 19.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_G8#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_G8#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_G8#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_G8#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 76.224, + "y": 19.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_H8", + "uuid": "9f8777c2-8763-46ee-a6d8-4595ddfaebd1", + "name": "opentrons_96_tiprack_10ul_H8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 76.224, + "y": 10.084, + "z": 25.49 + }, + "position3d": { + "x": 76.224, + "y": 10.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_H8#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_H8#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_H8#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_H8#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 76.224, + "y": 10.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_A9", + "uuid": "54b508b7-e38d-4a59-b027-f35d874f20a1", + "name": "opentrons_96_tiprack_10ul_A9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 85.224, + "y": 73.084, + "z": 25.49 + }, + "position3d": { + "x": 85.224, + "y": 73.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_A9#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_A9#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_A9#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_A9#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 85.224, + "y": 73.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_B9", + "uuid": "77684b4c-4f91-4d82-9d5c-9035169ba2f6", + "name": "opentrons_96_tiprack_10ul_B9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 85.224, + "y": 64.084, + "z": 25.49 + }, + "position3d": { + "x": 85.224, + "y": 64.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_B9#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_B9#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_B9#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_B9#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 85.224, + "y": 64.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_C9", + "uuid": "f272b903-df98-42d2-8834-4904ae44d345", + "name": "opentrons_96_tiprack_10ul_C9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 85.224, + "y": 55.084, + "z": 25.49 + }, + "position3d": { + "x": 85.224, + "y": 55.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_C9#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_C9#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_C9#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_C9#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 85.224, + "y": 55.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_D9", + "uuid": "78239790-3aca-40f0-951e-b00adee8fa60", + "name": "opentrons_96_tiprack_10ul_D9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 85.224, + "y": 46.084, + "z": 25.49 + }, + "position3d": { + "x": 85.224, + "y": 46.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_D9#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_D9#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_D9#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_D9#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 85.224, + "y": 46.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_E9", + "uuid": "6918d2ff-cb04-46c7-b831-3e6b76c6734c", + "name": "opentrons_96_tiprack_10ul_E9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 85.224, + "y": 37.084, + "z": 25.49 + }, + "position3d": { + "x": 85.224, + "y": 37.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_E9#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_E9#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_E9#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_E9#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 85.224, + "y": 37.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_F9", + "uuid": "04578f8c-2ab7-4160-bf6f-51c9bf866390", + "name": "opentrons_96_tiprack_10ul_F9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 85.224, + "y": 28.084, + "z": 25.49 + }, + "position3d": { + "x": 85.224, + "y": 28.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_F9#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_F9#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_F9#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_F9#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 85.224, + "y": 28.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_G9", + "uuid": "76fd5f10-e80f-4529-a1f5-d8fe8ad933e7", + "name": "opentrons_96_tiprack_10ul_G9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 85.224, + "y": 19.084, + "z": 25.49 + }, + "position3d": { + "x": 85.224, + "y": 19.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_G9#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_G9#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_G9#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_G9#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 85.224, + "y": 19.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_H9", + "uuid": "775cde30-840c-4cc9-a795-fedcd3b42c66", + "name": "opentrons_96_tiprack_10ul_H9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 85.224, + "y": 10.084, + "z": 25.49 + }, + "position3d": { + "x": 85.224, + "y": 10.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_H9#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_H9#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_H9#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_H9#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 85.224, + "y": 10.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_A10", + "uuid": "aabab9a8-75b2-4cf4-a7eb-26e08e312f25", + "name": "opentrons_96_tiprack_10ul_A10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.224, + "y": 73.084, + "z": 25.49 + }, + "position3d": { + "x": 94.224, + "y": 73.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_A10#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_A10#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_A10#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_A10#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.224, + "y": 73.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_B10", + "uuid": "25b506d8-32a0-45a8-a855-9486ec15d1bf", + "name": "opentrons_96_tiprack_10ul_B10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.224, + "y": 64.084, + "z": 25.49 + }, + "position3d": { + "x": 94.224, + "y": 64.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_B10#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_B10#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_B10#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_B10#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.224, + "y": 64.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_C10", + "uuid": "5b35a28d-eb0a-4540-bf51-0623292ea286", + "name": "opentrons_96_tiprack_10ul_C10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.224, + "y": 55.084, + "z": 25.49 + }, + "position3d": { + "x": 94.224, + "y": 55.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_C10#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_C10#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_C10#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_C10#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.224, + "y": 55.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_D10", + "uuid": "9eb0704f-b964-4847-b5db-0d12afdce18b", + "name": "opentrons_96_tiprack_10ul_D10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.224, + "y": 46.084, + "z": 25.49 + }, + "position3d": { + "x": 94.224, + "y": 46.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_D10#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_D10#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_D10#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_D10#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.224, + "y": 46.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_E10", + "uuid": "67d0b9b6-ed14-449d-b664-5a916494a910", + "name": "opentrons_96_tiprack_10ul_E10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.224, + "y": 37.084, + "z": 25.49 + }, + "position3d": { + "x": 94.224, + "y": 37.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_E10#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_E10#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_E10#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_E10#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.224, + "y": 37.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_F10", + "uuid": "8f863298-7c60-49c9-a5c9-00f2ef95a195", + "name": "opentrons_96_tiprack_10ul_F10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.224, + "y": 28.084, + "z": 25.49 + }, + "position3d": { + "x": 94.224, + "y": 28.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_F10#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_F10#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_F10#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_F10#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.224, + "y": 28.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_G10", + "uuid": "ae9dc3cc-97ef-4fb8-9c29-d47b096dab35", + "name": "opentrons_96_tiprack_10ul_G10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.224, + "y": 19.084, + "z": 25.49 + }, + "position3d": { + "x": 94.224, + "y": 19.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_G10#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_G10#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_G10#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_G10#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.224, + "y": 19.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_H10", + "uuid": "a053659c-2bb2-46c6-9266-a587b75fbff4", + "name": "opentrons_96_tiprack_10ul_H10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.224, + "y": 10.084, + "z": 25.49 + }, + "position3d": { + "x": 94.224, + "y": 10.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_H10#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_H10#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_H10#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_H10#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.224, + "y": 10.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_A11", + "uuid": "46b2f401-510d-495f-8dfc-ebb532aae308", + "name": "opentrons_96_tiprack_10ul_A11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 103.224, + "y": 73.084, + "z": 25.49 + }, + "position3d": { + "x": 103.224, + "y": 73.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_A11#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_A11#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_A11#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_A11#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 103.224, + "y": 73.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_B11", + "uuid": "38debbda-4345-4a8d-bd41-1e85a287394d", + "name": "opentrons_96_tiprack_10ul_B11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 103.224, + "y": 64.084, + "z": 25.49 + }, + "position3d": { + "x": 103.224, + "y": 64.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_B11#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_B11#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_B11#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_B11#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 103.224, + "y": 64.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_C11", + "uuid": "a0628ffd-3992-46a3-8c1e-2cf8de27deac", + "name": "opentrons_96_tiprack_10ul_C11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 103.224, + "y": 55.084, + "z": 25.49 + }, + "position3d": { + "x": 103.224, + "y": 55.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_C11#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_C11#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_C11#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_C11#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 103.224, + "y": 55.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_D11", + "uuid": "ddf6b51d-9f4c-4844-bdb9-9a0adcbc3836", + "name": "opentrons_96_tiprack_10ul_D11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 103.224, + "y": 46.084, + "z": 25.49 + }, + "position3d": { + "x": 103.224, + "y": 46.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_D11#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_D11#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_D11#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_D11#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 103.224, + "y": 46.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_E11", + "uuid": "9c64662b-f4dd-4c4f-849e-e4b8865ef1c0", + "name": "opentrons_96_tiprack_10ul_E11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 103.224, + "y": 37.084, + "z": 25.49 + }, + "position3d": { + "x": 103.224, + "y": 37.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_E11#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_E11#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_E11#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_E11#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 103.224, + "y": 37.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_F11", + "uuid": "b5d7bac7-cf36-40e2-831c-baecca5675a2", + "name": "opentrons_96_tiprack_10ul_F11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 103.224, + "y": 28.084, + "z": 25.49 + }, + "position3d": { + "x": 103.224, + "y": 28.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_F11#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_F11#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_F11#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_F11#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 103.224, + "y": 28.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_G11", + "uuid": "7e68162e-4a4c-4dd9-9cd6-6d34ecdcfa85", + "name": "opentrons_96_tiprack_10ul_G11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 103.224, + "y": 19.084, + "z": 25.49 + }, + "position3d": { + "x": 103.224, + "y": 19.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_G11#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_G11#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_G11#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_G11#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 103.224, + "y": 19.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_H11", + "uuid": "c16cd306-edd1-4f55-80ae-8372e9fc375c", + "name": "opentrons_96_tiprack_10ul_H11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 103.224, + "y": 10.084, + "z": 25.49 + }, + "position3d": { + "x": 103.224, + "y": 10.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_H11#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_H11#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_H11#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_H11#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 103.224, + "y": 10.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_A12", + "uuid": "67a974b6-61cb-4a0a-bb28-3556d2882dcf", + "name": "opentrons_96_tiprack_10ul_A12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 112.224, + "y": 73.084, + "z": 25.49 + }, + "position3d": { + "x": 112.224, + "y": 73.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_A12#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_A12#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_A12#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_A12#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 112.224, + "y": 73.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_B12", + "uuid": "cfb28977-13a5-4899-a833-eeb77df318c1", + "name": "opentrons_96_tiprack_10ul_B12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 112.224, + "y": 64.084, + "z": 25.49 + }, + "position3d": { + "x": 112.224, + "y": 64.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_B12#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_B12#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_B12#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_B12#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 112.224, + "y": 64.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_C12", + "uuid": "63a10ed7-0329-4487-8ae5-f950075fcecb", + "name": "opentrons_96_tiprack_10ul_C12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 112.224, + "y": 55.084, + "z": 25.49 + }, + "position3d": { + "x": 112.224, + "y": 55.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_C12#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_C12#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_C12#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_C12#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 112.224, + "y": 55.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_D12", + "uuid": "f876c002-b407-4473-90cc-82c046e744cb", + "name": "opentrons_96_tiprack_10ul_D12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 112.224, + "y": 46.084, + "z": 25.49 + }, + "position3d": { + "x": 112.224, + "y": 46.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_D12#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_D12#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_D12#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_D12#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 112.224, + "y": 46.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_E12", + "uuid": "9757c4ab-faee-4f68-80eb-5fa60bcd9b5c", + "name": "opentrons_96_tiprack_10ul_E12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 112.224, + "y": 37.084, + "z": 25.49 + }, + "position3d": { + "x": 112.224, + "y": 37.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_E12#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_E12#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_E12#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_E12#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 112.224, + "y": 37.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_F12", + "uuid": "9f8a99ae-d1c2-4658-96ca-b3d88916a972", + "name": "opentrons_96_tiprack_10ul_F12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 112.224, + "y": 28.084, + "z": 25.49 + }, + "position3d": { + "x": 112.224, + "y": 28.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_F12#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_F12#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_F12#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_F12#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 112.224, + "y": 28.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_G12", + "uuid": "60216115-4dee-4a70-ac6d-ebb41dcac62c", + "name": "opentrons_96_tiprack_10ul_G12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 112.224, + "y": 19.084, + "z": 25.49 + }, + "position3d": { + "x": 112.224, + "y": 19.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_G12#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_G12#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_G12#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_G12#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 112.224, + "y": 19.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_10ul_H12", + "uuid": "81010be8-da35-4889-b1a6-9845a3695850", + "name": "opentrons_96_tiprack_10ul_H12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2b1462af-8390-45ac-b78e-de7a652cc4dc", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 112.224, + "y": 10.084, + "z": 25.49 + }, + "position3d": { + "x": 112.224, + "y": 10.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_H12#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_H12#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_10ul_H12#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_10ul_H12#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 3.29 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 112.224, + "y": 10.084, + "z": 25.49 + } + } + ] + }, + { + "id": "opentrons_96_tiprack_20ul", + "category": [ + "tip_racks" + ], + "class": { + "module": "pylabrobot.resources.opentrons.tip_racks:opentrons_96_tiprack_20ul", + "type": "pylabrobot" + }, + "description": "Opentrons 96 tiprack 20ul", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/opentrons/tip_racks.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "opentrons_96_tiprack_20ul", + "uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "name": "opentrons_96_tiprack_20ul", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "tip_rack", + "class": "", + "pose": { + "size": { + "depth": 64.69, + "width": 127.76, + "height": 85.48 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipRack", + "size_x": 127.76, + "size_y": 85.48, + "size_z": 64.69, + "category": "tip_rack", + "model": "Opentrons OT-2 96 Tip Rack 20 µL", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "opentrons_96_tiprack_20ul_A1", + "B1": "opentrons_96_tiprack_20ul_B1", + "C1": "opentrons_96_tiprack_20ul_C1", + "D1": "opentrons_96_tiprack_20ul_D1", + "E1": "opentrons_96_tiprack_20ul_E1", + "F1": "opentrons_96_tiprack_20ul_F1", + "G1": "opentrons_96_tiprack_20ul_G1", + "H1": "opentrons_96_tiprack_20ul_H1", + "A2": "opentrons_96_tiprack_20ul_A2", + "B2": "opentrons_96_tiprack_20ul_B2", + "C2": "opentrons_96_tiprack_20ul_C2", + "D2": "opentrons_96_tiprack_20ul_D2", + "E2": "opentrons_96_tiprack_20ul_E2", + "F2": "opentrons_96_tiprack_20ul_F2", + "G2": "opentrons_96_tiprack_20ul_G2", + "H2": "opentrons_96_tiprack_20ul_H2", + "A3": "opentrons_96_tiprack_20ul_A3", + "B3": "opentrons_96_tiprack_20ul_B3", + "C3": "opentrons_96_tiprack_20ul_C3", + "D3": "opentrons_96_tiprack_20ul_D3", + "E3": "opentrons_96_tiprack_20ul_E3", + "F3": "opentrons_96_tiprack_20ul_F3", + "G3": "opentrons_96_tiprack_20ul_G3", + "H3": "opentrons_96_tiprack_20ul_H3", + "A4": "opentrons_96_tiprack_20ul_A4", + "B4": "opentrons_96_tiprack_20ul_B4", + "C4": "opentrons_96_tiprack_20ul_C4", + "D4": "opentrons_96_tiprack_20ul_D4", + "E4": "opentrons_96_tiprack_20ul_E4", + "F4": "opentrons_96_tiprack_20ul_F4", + "G4": "opentrons_96_tiprack_20ul_G4", + "H4": "opentrons_96_tiprack_20ul_H4", + "A5": "opentrons_96_tiprack_20ul_A5", + "B5": "opentrons_96_tiprack_20ul_B5", + "C5": "opentrons_96_tiprack_20ul_C5", + "D5": "opentrons_96_tiprack_20ul_D5", + "E5": "opentrons_96_tiprack_20ul_E5", + "F5": "opentrons_96_tiprack_20ul_F5", + "G5": "opentrons_96_tiprack_20ul_G5", + "H5": "opentrons_96_tiprack_20ul_H5", + "A6": "opentrons_96_tiprack_20ul_A6", + "B6": "opentrons_96_tiprack_20ul_B6", + "C6": "opentrons_96_tiprack_20ul_C6", + "D6": "opentrons_96_tiprack_20ul_D6", + "E6": "opentrons_96_tiprack_20ul_E6", + "F6": "opentrons_96_tiprack_20ul_F6", + "G6": "opentrons_96_tiprack_20ul_G6", + "H6": "opentrons_96_tiprack_20ul_H6", + "A7": "opentrons_96_tiprack_20ul_A7", + "B7": "opentrons_96_tiprack_20ul_B7", + "C7": "opentrons_96_tiprack_20ul_C7", + "D7": "opentrons_96_tiprack_20ul_D7", + "E7": "opentrons_96_tiprack_20ul_E7", + "F7": "opentrons_96_tiprack_20ul_F7", + "G7": "opentrons_96_tiprack_20ul_G7", + "H7": "opentrons_96_tiprack_20ul_H7", + "A8": "opentrons_96_tiprack_20ul_A8", + "B8": "opentrons_96_tiprack_20ul_B8", + "C8": "opentrons_96_tiprack_20ul_C8", + "D8": "opentrons_96_tiprack_20ul_D8", + "E8": "opentrons_96_tiprack_20ul_E8", + "F8": "opentrons_96_tiprack_20ul_F8", + "G8": "opentrons_96_tiprack_20ul_G8", + "H8": "opentrons_96_tiprack_20ul_H8", + "A9": "opentrons_96_tiprack_20ul_A9", + "B9": "opentrons_96_tiprack_20ul_B9", + "C9": "opentrons_96_tiprack_20ul_C9", + "D9": "opentrons_96_tiprack_20ul_D9", + "E9": "opentrons_96_tiprack_20ul_E9", + "F9": "opentrons_96_tiprack_20ul_F9", + "G9": "opentrons_96_tiprack_20ul_G9", + "H9": "opentrons_96_tiprack_20ul_H9", + "A10": "opentrons_96_tiprack_20ul_A10", + "B10": "opentrons_96_tiprack_20ul_B10", + "C10": "opentrons_96_tiprack_20ul_C10", + "D10": "opentrons_96_tiprack_20ul_D10", + "E10": "opentrons_96_tiprack_20ul_E10", + "F10": "opentrons_96_tiprack_20ul_F10", + "G10": "opentrons_96_tiprack_20ul_G10", + "H10": "opentrons_96_tiprack_20ul_H10", + "A11": "opentrons_96_tiprack_20ul_A11", + "B11": "opentrons_96_tiprack_20ul_B11", + "C11": "opentrons_96_tiprack_20ul_C11", + "D11": "opentrons_96_tiprack_20ul_D11", + "E11": "opentrons_96_tiprack_20ul_E11", + "F11": "opentrons_96_tiprack_20ul_F11", + "G11": "opentrons_96_tiprack_20ul_G11", + "H11": "opentrons_96_tiprack_20ul_H11", + "A12": "opentrons_96_tiprack_20ul_A12", + "B12": "opentrons_96_tiprack_20ul_B12", + "C12": "opentrons_96_tiprack_20ul_C12", + "D12": "opentrons_96_tiprack_20ul_D12", + "E12": "opentrons_96_tiprack_20ul_E12", + "F12": "opentrons_96_tiprack_20ul_F12", + "G12": "opentrons_96_tiprack_20ul_G12", + "H12": "opentrons_96_tiprack_20ul_H12" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "opentrons_96_tiprack_20ul_A1", + "uuid": "2c23739a-87be-4712-966d-3ce2dd2a1165", + "name": "opentrons_96_tiprack_20ul_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 13.224, + "y": 73.084, + "z": 25.49 + }, + "position3d": { + "x": 13.224, + "y": 73.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_A1#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_A1#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_A1#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_A1#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 13.224, + "y": 73.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_B1", + "uuid": "444ddaf5-eff0-4947-b00c-70b07e71b255", + "name": "opentrons_96_tiprack_20ul_B1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 13.224, + "y": 64.084, + "z": 25.49 + }, + "position3d": { + "x": 13.224, + "y": 64.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_B1#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_B1#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_B1#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_B1#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 13.224, + "y": 64.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_C1", + "uuid": "1cf0af6b-2a3e-4f6b-a081-e9f9e3231c5f", + "name": "opentrons_96_tiprack_20ul_C1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 13.224, + "y": 55.084, + "z": 25.49 + }, + "position3d": { + "x": 13.224, + "y": 55.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_C1#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_C1#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_C1#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_C1#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 13.224, + "y": 55.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_D1", + "uuid": "b42b565c-7a54-4fc6-9698-2e5f65ededa7", + "name": "opentrons_96_tiprack_20ul_D1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 13.224, + "y": 46.084, + "z": 25.49 + }, + "position3d": { + "x": 13.224, + "y": 46.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_D1#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_D1#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_D1#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_D1#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 13.224, + "y": 46.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_E1", + "uuid": "f959660b-3b2f-4cc8-87ef-681fc85795aa", + "name": "opentrons_96_tiprack_20ul_E1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 13.224, + "y": 37.084, + "z": 25.49 + }, + "position3d": { + "x": 13.224, + "y": 37.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_E1#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_E1#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_E1#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_E1#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 13.224, + "y": 37.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_F1", + "uuid": "a7f4101a-862c-4489-b982-97b9eb5ef860", + "name": "opentrons_96_tiprack_20ul_F1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 13.224, + "y": 28.084, + "z": 25.49 + }, + "position3d": { + "x": 13.224, + "y": 28.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_F1#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_F1#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_F1#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_F1#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 13.224, + "y": 28.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_G1", + "uuid": "f33b8229-d8a0-460a-a03d-b458c78713e1", + "name": "opentrons_96_tiprack_20ul_G1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 13.224, + "y": 19.084, + "z": 25.49 + }, + "position3d": { + "x": 13.224, + "y": 19.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_G1#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_G1#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_G1#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_G1#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 13.224, + "y": 19.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_H1", + "uuid": "e706230a-6105-46d0-b2cf-8cf5f0665794", + "name": "opentrons_96_tiprack_20ul_H1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 13.224, + "y": 10.084, + "z": 25.49 + }, + "position3d": { + "x": 13.224, + "y": 10.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_H1#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_H1#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_H1#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_H1#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 13.224, + "y": 10.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_A2", + "uuid": "5042905a-82df-4f0b-b69e-995adc39e2af", + "name": "opentrons_96_tiprack_20ul_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 22.224, + "y": 73.084, + "z": 25.49 + }, + "position3d": { + "x": 22.224, + "y": 73.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_A2#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_A2#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_A2#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_A2#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 22.224, + "y": 73.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_B2", + "uuid": "3eeaaa9b-6015-4b0f-a876-66b720c5cafd", + "name": "opentrons_96_tiprack_20ul_B2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 22.224, + "y": 64.084, + "z": 25.49 + }, + "position3d": { + "x": 22.224, + "y": 64.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_B2#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_B2#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_B2#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_B2#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 22.224, + "y": 64.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_C2", + "uuid": "f1a0001e-27e0-4fe1-97ec-777cd85b7ad9", + "name": "opentrons_96_tiprack_20ul_C2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 22.224, + "y": 55.084, + "z": 25.49 + }, + "position3d": { + "x": 22.224, + "y": 55.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_C2#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_C2#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_C2#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_C2#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 22.224, + "y": 55.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_D2", + "uuid": "acc6477b-7c0b-40c2-9c0f-58766c35cc07", + "name": "opentrons_96_tiprack_20ul_D2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 22.224, + "y": 46.084, + "z": 25.49 + }, + "position3d": { + "x": 22.224, + "y": 46.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_D2#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_D2#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_D2#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_D2#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 22.224, + "y": 46.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_E2", + "uuid": "a443c03a-ce52-465f-8370-2c9f0f9f6781", + "name": "opentrons_96_tiprack_20ul_E2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 22.224, + "y": 37.084, + "z": 25.49 + }, + "position3d": { + "x": 22.224, + "y": 37.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_E2#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_E2#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_E2#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_E2#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 22.224, + "y": 37.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_F2", + "uuid": "5cf8249c-49d4-40b9-b7dc-8294c87305d9", + "name": "opentrons_96_tiprack_20ul_F2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 22.224, + "y": 28.084, + "z": 25.49 + }, + "position3d": { + "x": 22.224, + "y": 28.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_F2#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_F2#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_F2#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_F2#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 22.224, + "y": 28.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_G2", + "uuid": "b4d385ae-22ec-44e4-818a-20dfff74ff74", + "name": "opentrons_96_tiprack_20ul_G2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 22.224, + "y": 19.084, + "z": 25.49 + }, + "position3d": { + "x": 22.224, + "y": 19.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_G2#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_G2#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_G2#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_G2#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 22.224, + "y": 19.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_H2", + "uuid": "06d1e003-8172-4d77-a7d5-cfce68fc3036", + "name": "opentrons_96_tiprack_20ul_H2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 22.224, + "y": 10.084, + "z": 25.49 + }, + "position3d": { + "x": 22.224, + "y": 10.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_H2#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_H2#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_H2#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_H2#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 22.224, + "y": 10.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_A3", + "uuid": "d5db7b69-677a-4db8-ade4-c10f5f00ab73", + "name": "opentrons_96_tiprack_20ul_A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 31.224, + "y": 73.084, + "z": 25.49 + }, + "position3d": { + "x": 31.224, + "y": 73.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_A3#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_A3#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_A3#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_A3#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 31.224, + "y": 73.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_B3", + "uuid": "4dc27776-ef23-43ae-88c6-d2479da12fd2", + "name": "opentrons_96_tiprack_20ul_B3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 31.224, + "y": 64.084, + "z": 25.49 + }, + "position3d": { + "x": 31.224, + "y": 64.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_B3#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_B3#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_B3#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_B3#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 31.224, + "y": 64.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_C3", + "uuid": "037be661-1027-414a-9002-fef15c7fc67c", + "name": "opentrons_96_tiprack_20ul_C3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 31.224, + "y": 55.084, + "z": 25.49 + }, + "position3d": { + "x": 31.224, + "y": 55.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_C3#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_C3#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_C3#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_C3#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 31.224, + "y": 55.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_D3", + "uuid": "811da0fa-cdf3-4eda-b342-3158a68b7cd2", + "name": "opentrons_96_tiprack_20ul_D3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 31.224, + "y": 46.084, + "z": 25.49 + }, + "position3d": { + "x": 31.224, + "y": 46.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_D3#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_D3#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_D3#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_D3#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 31.224, + "y": 46.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_E3", + "uuid": "1496e18f-67b6-4cae-b92f-e53925365371", + "name": "opentrons_96_tiprack_20ul_E3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 31.224, + "y": 37.084, + "z": 25.49 + }, + "position3d": { + "x": 31.224, + "y": 37.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_E3#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_E3#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_E3#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_E3#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 31.224, + "y": 37.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_F3", + "uuid": "af9e6cb9-697e-4a25-a3e9-6ada19221873", + "name": "opentrons_96_tiprack_20ul_F3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 31.224, + "y": 28.084, + "z": 25.49 + }, + "position3d": { + "x": 31.224, + "y": 28.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_F3#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_F3#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_F3#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_F3#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 31.224, + "y": 28.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_G3", + "uuid": "801e2b38-825a-4427-aa72-4e88808c5ed9", + "name": "opentrons_96_tiprack_20ul_G3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 31.224, + "y": 19.084, + "z": 25.49 + }, + "position3d": { + "x": 31.224, + "y": 19.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_G3#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_G3#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_G3#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_G3#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 31.224, + "y": 19.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_H3", + "uuid": "a22bff11-941e-4115-b0d4-ebecf65e1821", + "name": "opentrons_96_tiprack_20ul_H3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 31.224, + "y": 10.084, + "z": 25.49 + }, + "position3d": { + "x": 31.224, + "y": 10.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_H3#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_H3#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_H3#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_H3#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 31.224, + "y": 10.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_A4", + "uuid": "0cf47fa2-dc7e-4fc2-9525-f1fcd0e1a551", + "name": "opentrons_96_tiprack_20ul_A4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 40.224, + "y": 73.084, + "z": 25.49 + }, + "position3d": { + "x": 40.224, + "y": 73.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_A4#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_A4#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_A4#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_A4#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 40.224, + "y": 73.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_B4", + "uuid": "5eda51a6-021f-4d52-9e93-2766f9e3d70b", + "name": "opentrons_96_tiprack_20ul_B4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 40.224, + "y": 64.084, + "z": 25.49 + }, + "position3d": { + "x": 40.224, + "y": 64.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_B4#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_B4#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_B4#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_B4#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 40.224, + "y": 64.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_C4", + "uuid": "1ace1c98-364d-46c0-9d5b-fb965a860962", + "name": "opentrons_96_tiprack_20ul_C4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 40.224, + "y": 55.084, + "z": 25.49 + }, + "position3d": { + "x": 40.224, + "y": 55.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_C4#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_C4#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_C4#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_C4#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 40.224, + "y": 55.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_D4", + "uuid": "33c529ae-9f6d-44bc-9e55-c9c119e65f01", + "name": "opentrons_96_tiprack_20ul_D4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 40.224, + "y": 46.084, + "z": 25.49 + }, + "position3d": { + "x": 40.224, + "y": 46.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_D4#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_D4#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_D4#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_D4#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 40.224, + "y": 46.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_E4", + "uuid": "e7392c22-9ef7-4492-bed9-d24b109ebda9", + "name": "opentrons_96_tiprack_20ul_E4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 40.224, + "y": 37.084, + "z": 25.49 + }, + "position3d": { + "x": 40.224, + "y": 37.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_E4#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_E4#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_E4#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_E4#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 40.224, + "y": 37.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_F4", + "uuid": "b7eb8f57-fc2d-44ac-a8c7-bf1773bb0a45", + "name": "opentrons_96_tiprack_20ul_F4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 40.224, + "y": 28.084, + "z": 25.49 + }, + "position3d": { + "x": 40.224, + "y": 28.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_F4#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_F4#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_F4#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_F4#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 40.224, + "y": 28.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_G4", + "uuid": "f9b8cd26-6ecc-487d-940a-a90582b3cda7", + "name": "opentrons_96_tiprack_20ul_G4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 40.224, + "y": 19.084, + "z": 25.49 + }, + "position3d": { + "x": 40.224, + "y": 19.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_G4#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_G4#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_G4#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_G4#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 40.224, + "y": 19.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_H4", + "uuid": "f9fb450f-63ee-405b-905e-5ff6fc14038e", + "name": "opentrons_96_tiprack_20ul_H4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 40.224, + "y": 10.084, + "z": 25.49 + }, + "position3d": { + "x": 40.224, + "y": 10.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_H4#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_H4#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_H4#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_H4#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 40.224, + "y": 10.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_A5", + "uuid": "690cdc3c-99d9-495f-a541-8f594df23b2f", + "name": "opentrons_96_tiprack_20ul_A5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 49.224, + "y": 73.084, + "z": 25.49 + }, + "position3d": { + "x": 49.224, + "y": 73.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_A5#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_A5#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_A5#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_A5#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 49.224, + "y": 73.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_B5", + "uuid": "1f188174-d344-453e-9657-3198b89ad930", + "name": "opentrons_96_tiprack_20ul_B5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 49.224, + "y": 64.084, + "z": 25.49 + }, + "position3d": { + "x": 49.224, + "y": 64.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_B5#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_B5#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_B5#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_B5#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 49.224, + "y": 64.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_C5", + "uuid": "e7acca10-00da-4302-8d35-70288eec9a02", + "name": "opentrons_96_tiprack_20ul_C5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 49.224, + "y": 55.084, + "z": 25.49 + }, + "position3d": { + "x": 49.224, + "y": 55.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_C5#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_C5#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_C5#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_C5#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 49.224, + "y": 55.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_D5", + "uuid": "7132e565-0fac-406c-a430-8a50e591a77a", + "name": "opentrons_96_tiprack_20ul_D5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 49.224, + "y": 46.084, + "z": 25.49 + }, + "position3d": { + "x": 49.224, + "y": 46.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_D5#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_D5#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_D5#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_D5#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 49.224, + "y": 46.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_E5", + "uuid": "074bcf94-619a-4e50-8d63-d031e211739f", + "name": "opentrons_96_tiprack_20ul_E5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 49.224, + "y": 37.084, + "z": 25.49 + }, + "position3d": { + "x": 49.224, + "y": 37.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_E5#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_E5#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_E5#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_E5#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 49.224, + "y": 37.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_F5", + "uuid": "c66b00e6-235a-4c71-950f-48b2288601a6", + "name": "opentrons_96_tiprack_20ul_F5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 49.224, + "y": 28.084, + "z": 25.49 + }, + "position3d": { + "x": 49.224, + "y": 28.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_F5#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_F5#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_F5#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_F5#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 49.224, + "y": 28.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_G5", + "uuid": "0f40138d-5e3b-4091-b84c-3f27ceff6493", + "name": "opentrons_96_tiprack_20ul_G5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 49.224, + "y": 19.084, + "z": 25.49 + }, + "position3d": { + "x": 49.224, + "y": 19.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_G5#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_G5#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_G5#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_G5#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 49.224, + "y": 19.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_H5", + "uuid": "b7985546-69e0-4256-bd20-5ebfaf86dfa2", + "name": "opentrons_96_tiprack_20ul_H5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 49.224, + "y": 10.084, + "z": 25.49 + }, + "position3d": { + "x": 49.224, + "y": 10.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_H5#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_H5#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_H5#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_H5#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 49.224, + "y": 10.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_A6", + "uuid": "6fc77175-5a5c-47ab-8244-3d3694bfc3c2", + "name": "opentrons_96_tiprack_20ul_A6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 58.224, + "y": 73.084, + "z": 25.49 + }, + "position3d": { + "x": 58.224, + "y": 73.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_A6#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_A6#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_A6#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_A6#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 58.224, + "y": 73.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_B6", + "uuid": "2f68e09d-0285-4f35-a2d4-be99136cf1a6", + "name": "opentrons_96_tiprack_20ul_B6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 58.224, + "y": 64.084, + "z": 25.49 + }, + "position3d": { + "x": 58.224, + "y": 64.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_B6#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_B6#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_B6#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_B6#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 58.224, + "y": 64.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_C6", + "uuid": "ba726686-d7aa-4a1b-873f-2ca7ef1b074c", + "name": "opentrons_96_tiprack_20ul_C6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 58.224, + "y": 55.084, + "z": 25.49 + }, + "position3d": { + "x": 58.224, + "y": 55.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_C6#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_C6#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_C6#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_C6#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 58.224, + "y": 55.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_D6", + "uuid": "da5cd5f6-256c-46bc-9f28-41884736e0ac", + "name": "opentrons_96_tiprack_20ul_D6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 58.224, + "y": 46.084, + "z": 25.49 + }, + "position3d": { + "x": 58.224, + "y": 46.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_D6#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_D6#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_D6#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_D6#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 58.224, + "y": 46.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_E6", + "uuid": "ade6096e-f906-422f-9c5f-700f38ae3996", + "name": "opentrons_96_tiprack_20ul_E6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 58.224, + "y": 37.084, + "z": 25.49 + }, + "position3d": { + "x": 58.224, + "y": 37.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_E6#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_E6#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_E6#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_E6#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 58.224, + "y": 37.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_F6", + "uuid": "541be474-f14d-4c5c-86be-95ccbb4ea789", + "name": "opentrons_96_tiprack_20ul_F6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 58.224, + "y": 28.084, + "z": 25.49 + }, + "position3d": { + "x": 58.224, + "y": 28.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_F6#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_F6#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_F6#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_F6#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 58.224, + "y": 28.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_G6", + "uuid": "64cf03fb-f8ff-4f08-919d-a287f0f8ec46", + "name": "opentrons_96_tiprack_20ul_G6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 58.224, + "y": 19.084, + "z": 25.49 + }, + "position3d": { + "x": 58.224, + "y": 19.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_G6#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_G6#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_G6#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_G6#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 58.224, + "y": 19.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_H6", + "uuid": "38fc5934-c368-4e6d-a489-f49c5c9a0cf5", + "name": "opentrons_96_tiprack_20ul_H6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 58.224, + "y": 10.084, + "z": 25.49 + }, + "position3d": { + "x": 58.224, + "y": 10.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_H6#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_H6#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_H6#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_H6#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 58.224, + "y": 10.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_A7", + "uuid": "a8ae36f9-180c-40d5-8377-e215ebb9fd5c", + "name": "opentrons_96_tiprack_20ul_A7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 67.224, + "y": 73.084, + "z": 25.49 + }, + "position3d": { + "x": 67.224, + "y": 73.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_A7#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_A7#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_A7#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_A7#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 67.224, + "y": 73.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_B7", + "uuid": "184405c8-5385-4ab8-a322-bef442239bc0", + "name": "opentrons_96_tiprack_20ul_B7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 67.224, + "y": 64.084, + "z": 25.49 + }, + "position3d": { + "x": 67.224, + "y": 64.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_B7#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_B7#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_B7#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_B7#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 67.224, + "y": 64.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_C7", + "uuid": "fd5942c3-fdd6-4976-9d81-6d31bca62e2a", + "name": "opentrons_96_tiprack_20ul_C7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 67.224, + "y": 55.084, + "z": 25.49 + }, + "position3d": { + "x": 67.224, + "y": 55.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_C7#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_C7#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_C7#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_C7#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 67.224, + "y": 55.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_D7", + "uuid": "4d9cfaad-113a-4dc9-b337-7fa88cce7422", + "name": "opentrons_96_tiprack_20ul_D7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 67.224, + "y": 46.084, + "z": 25.49 + }, + "position3d": { + "x": 67.224, + "y": 46.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_D7#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_D7#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_D7#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_D7#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 67.224, + "y": 46.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_E7", + "uuid": "24179968-a779-475d-bd1f-74f4e21bf30c", + "name": "opentrons_96_tiprack_20ul_E7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 67.224, + "y": 37.084, + "z": 25.49 + }, + "position3d": { + "x": 67.224, + "y": 37.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_E7#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_E7#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_E7#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_E7#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 67.224, + "y": 37.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_F7", + "uuid": "10670e23-9429-4929-97ff-4b7c4b303538", + "name": "opentrons_96_tiprack_20ul_F7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 67.224, + "y": 28.084, + "z": 25.49 + }, + "position3d": { + "x": 67.224, + "y": 28.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_F7#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_F7#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_F7#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_F7#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 67.224, + "y": 28.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_G7", + "uuid": "53db1e5c-5ff1-461f-a188-71141e0d5594", + "name": "opentrons_96_tiprack_20ul_G7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 67.224, + "y": 19.084, + "z": 25.49 + }, + "position3d": { + "x": 67.224, + "y": 19.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_G7#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_G7#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_G7#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_G7#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 67.224, + "y": 19.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_H7", + "uuid": "08c195be-be67-4fcc-ac93-449039f69d37", + "name": "opentrons_96_tiprack_20ul_H7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 67.224, + "y": 10.084, + "z": 25.49 + }, + "position3d": { + "x": 67.224, + "y": 10.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_H7#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_H7#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_H7#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_H7#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 67.224, + "y": 10.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_A8", + "uuid": "5ca7579c-62b3-4274-a22b-02d7f0d88b74", + "name": "opentrons_96_tiprack_20ul_A8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 76.224, + "y": 73.084, + "z": 25.49 + }, + "position3d": { + "x": 76.224, + "y": 73.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_A8#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_A8#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_A8#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_A8#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 76.224, + "y": 73.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_B8", + "uuid": "3b74aefc-aa7d-44aa-bf09-0954faa77465", + "name": "opentrons_96_tiprack_20ul_B8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 76.224, + "y": 64.084, + "z": 25.49 + }, + "position3d": { + "x": 76.224, + "y": 64.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_B8#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_B8#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_B8#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_B8#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 76.224, + "y": 64.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_C8", + "uuid": "7bf55ba5-987e-437e-b032-27423ff136dc", + "name": "opentrons_96_tiprack_20ul_C8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 76.224, + "y": 55.084, + "z": 25.49 + }, + "position3d": { + "x": 76.224, + "y": 55.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_C8#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_C8#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_C8#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_C8#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 76.224, + "y": 55.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_D8", + "uuid": "dc9a8e17-b8cc-45c8-8deb-a822b6c7dba1", + "name": "opentrons_96_tiprack_20ul_D8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 76.224, + "y": 46.084, + "z": 25.49 + }, + "position3d": { + "x": 76.224, + "y": 46.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_D8#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_D8#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_D8#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_D8#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 76.224, + "y": 46.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_E8", + "uuid": "4a10e54d-82ba-48c4-9f25-38f41b02de80", + "name": "opentrons_96_tiprack_20ul_E8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 76.224, + "y": 37.084, + "z": 25.49 + }, + "position3d": { + "x": 76.224, + "y": 37.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_E8#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_E8#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_E8#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_E8#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 76.224, + "y": 37.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_F8", + "uuid": "f12d59f8-6630-4c9b-9b39-7a4553c581e3", + "name": "opentrons_96_tiprack_20ul_F8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 76.224, + "y": 28.084, + "z": 25.49 + }, + "position3d": { + "x": 76.224, + "y": 28.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_F8#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_F8#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_F8#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_F8#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 76.224, + "y": 28.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_G8", + "uuid": "e6060128-642e-46b4-bce0-33129508cf7d", + "name": "opentrons_96_tiprack_20ul_G8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 76.224, + "y": 19.084, + "z": 25.49 + }, + "position3d": { + "x": 76.224, + "y": 19.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_G8#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_G8#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_G8#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_G8#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 76.224, + "y": 19.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_H8", + "uuid": "789ce7ea-2708-4c89-89cd-df9f87234218", + "name": "opentrons_96_tiprack_20ul_H8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 76.224, + "y": 10.084, + "z": 25.49 + }, + "position3d": { + "x": 76.224, + "y": 10.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_H8#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_H8#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_H8#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_H8#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 76.224, + "y": 10.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_A9", + "uuid": "e4d3c46a-51b8-44ae-b8f8-8b14d38ab897", + "name": "opentrons_96_tiprack_20ul_A9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 85.224, + "y": 73.084, + "z": 25.49 + }, + "position3d": { + "x": 85.224, + "y": 73.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_A9#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_A9#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_A9#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_A9#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 85.224, + "y": 73.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_B9", + "uuid": "2da4e44d-9c33-4b45-860a-c464a2677c06", + "name": "opentrons_96_tiprack_20ul_B9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 85.224, + "y": 64.084, + "z": 25.49 + }, + "position3d": { + "x": 85.224, + "y": 64.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_B9#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_B9#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_B9#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_B9#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 85.224, + "y": 64.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_C9", + "uuid": "c621db40-a44c-4e8d-ba33-21caf31c57bb", + "name": "opentrons_96_tiprack_20ul_C9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 85.224, + "y": 55.084, + "z": 25.49 + }, + "position3d": { + "x": 85.224, + "y": 55.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_C9#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_C9#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_C9#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_C9#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 85.224, + "y": 55.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_D9", + "uuid": "8c5f67e8-469b-47a5-bb9d-2ea4736b18f7", + "name": "opentrons_96_tiprack_20ul_D9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 85.224, + "y": 46.084, + "z": 25.49 + }, + "position3d": { + "x": 85.224, + "y": 46.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_D9#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_D9#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_D9#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_D9#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 85.224, + "y": 46.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_E9", + "uuid": "b8f2412e-96f4-449a-989d-e16e7b79521a", + "name": "opentrons_96_tiprack_20ul_E9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 85.224, + "y": 37.084, + "z": 25.49 + }, + "position3d": { + "x": 85.224, + "y": 37.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_E9#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_E9#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_E9#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_E9#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 85.224, + "y": 37.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_F9", + "uuid": "7b178c05-082d-41e4-af5c-cfdff46c6a48", + "name": "opentrons_96_tiprack_20ul_F9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 85.224, + "y": 28.084, + "z": 25.49 + }, + "position3d": { + "x": 85.224, + "y": 28.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_F9#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_F9#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_F9#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_F9#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 85.224, + "y": 28.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_G9", + "uuid": "2b26f35e-40e3-486d-bbf3-d4054caacd3e", + "name": "opentrons_96_tiprack_20ul_G9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 85.224, + "y": 19.084, + "z": 25.49 + }, + "position3d": { + "x": 85.224, + "y": 19.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_G9#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_G9#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_G9#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_G9#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 85.224, + "y": 19.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_H9", + "uuid": "de79433b-3c97-46fb-9d41-94348efaff5a", + "name": "opentrons_96_tiprack_20ul_H9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 85.224, + "y": 10.084, + "z": 25.49 + }, + "position3d": { + "x": 85.224, + "y": 10.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_H9#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_H9#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_H9#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_H9#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 85.224, + "y": 10.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_A10", + "uuid": "d14da273-104d-41db-909d-c8ea4d96560b", + "name": "opentrons_96_tiprack_20ul_A10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.224, + "y": 73.084, + "z": 25.49 + }, + "position3d": { + "x": 94.224, + "y": 73.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_A10#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_A10#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_A10#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_A10#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.224, + "y": 73.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_B10", + "uuid": "2880f17c-52b6-4e39-ba0e-64efe093ea37", + "name": "opentrons_96_tiprack_20ul_B10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.224, + "y": 64.084, + "z": 25.49 + }, + "position3d": { + "x": 94.224, + "y": 64.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_B10#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_B10#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_B10#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_B10#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.224, + "y": 64.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_C10", + "uuid": "503607ac-e66c-4829-83e5-45e38e8da09b", + "name": "opentrons_96_tiprack_20ul_C10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.224, + "y": 55.084, + "z": 25.49 + }, + "position3d": { + "x": 94.224, + "y": 55.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_C10#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_C10#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_C10#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_C10#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.224, + "y": 55.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_D10", + "uuid": "6c7eafd1-804f-4e45-8451-32dd5d5b7778", + "name": "opentrons_96_tiprack_20ul_D10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.224, + "y": 46.084, + "z": 25.49 + }, + "position3d": { + "x": 94.224, + "y": 46.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_D10#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_D10#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_D10#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_D10#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.224, + "y": 46.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_E10", + "uuid": "66463e4f-4d90-4c4e-82d4-390522478b1d", + "name": "opentrons_96_tiprack_20ul_E10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.224, + "y": 37.084, + "z": 25.49 + }, + "position3d": { + "x": 94.224, + "y": 37.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_E10#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_E10#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_E10#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_E10#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.224, + "y": 37.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_F10", + "uuid": "27bfb138-de49-4bd6-9883-2ae8b173c327", + "name": "opentrons_96_tiprack_20ul_F10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.224, + "y": 28.084, + "z": 25.49 + }, + "position3d": { + "x": 94.224, + "y": 28.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_F10#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_F10#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_F10#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_F10#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.224, + "y": 28.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_G10", + "uuid": "bdb5a6c2-df33-4a5f-9255-0a78dbdd7e50", + "name": "opentrons_96_tiprack_20ul_G10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.224, + "y": 19.084, + "z": 25.49 + }, + "position3d": { + "x": 94.224, + "y": 19.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_G10#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_G10#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_G10#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_G10#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.224, + "y": 19.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_H10", + "uuid": "3d64d1af-1dec-46b9-816a-43563954411b", + "name": "opentrons_96_tiprack_20ul_H10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.224, + "y": 10.084, + "z": 25.49 + }, + "position3d": { + "x": 94.224, + "y": 10.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_H10#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_H10#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_H10#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_H10#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.224, + "y": 10.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_A11", + "uuid": "3fb811b3-2769-4fa9-8a51-d7c5767db517", + "name": "opentrons_96_tiprack_20ul_A11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 103.224, + "y": 73.084, + "z": 25.49 + }, + "position3d": { + "x": 103.224, + "y": 73.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_A11#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_A11#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_A11#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_A11#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 103.224, + "y": 73.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_B11", + "uuid": "910a56c1-e458-41c8-9aea-d15927c36927", + "name": "opentrons_96_tiprack_20ul_B11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 103.224, + "y": 64.084, + "z": 25.49 + }, + "position3d": { + "x": 103.224, + "y": 64.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_B11#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_B11#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_B11#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_B11#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 103.224, + "y": 64.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_C11", + "uuid": "b3ae2cbd-759a-4f30-b136-ae12a1f7f159", + "name": "opentrons_96_tiprack_20ul_C11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 103.224, + "y": 55.084, + "z": 25.49 + }, + "position3d": { + "x": 103.224, + "y": 55.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_C11#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_C11#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_C11#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_C11#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 103.224, + "y": 55.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_D11", + "uuid": "faa45ca0-c22e-4d1c-affb-14f3fe4e56bc", + "name": "opentrons_96_tiprack_20ul_D11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 103.224, + "y": 46.084, + "z": 25.49 + }, + "position3d": { + "x": 103.224, + "y": 46.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_D11#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_D11#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_D11#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_D11#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 103.224, + "y": 46.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_E11", + "uuid": "2242bef5-6660-48e8-94b2-9df6e22b8d6b", + "name": "opentrons_96_tiprack_20ul_E11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 103.224, + "y": 37.084, + "z": 25.49 + }, + "position3d": { + "x": 103.224, + "y": 37.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_E11#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_E11#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_E11#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_E11#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 103.224, + "y": 37.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_F11", + "uuid": "abc6aab3-025a-458c-95fb-d041bcb4e452", + "name": "opentrons_96_tiprack_20ul_F11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 103.224, + "y": 28.084, + "z": 25.49 + }, + "position3d": { + "x": 103.224, + "y": 28.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_F11#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_F11#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_F11#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_F11#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 103.224, + "y": 28.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_G11", + "uuid": "fb0330c5-934a-4dad-a993-11c64209a9a0", + "name": "opentrons_96_tiprack_20ul_G11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 103.224, + "y": 19.084, + "z": 25.49 + }, + "position3d": { + "x": 103.224, + "y": 19.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_G11#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_G11#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_G11#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_G11#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 103.224, + "y": 19.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_H11", + "uuid": "5768b42a-4ec7-4a75-b763-cdf59dd81a3f", + "name": "opentrons_96_tiprack_20ul_H11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 103.224, + "y": 10.084, + "z": 25.49 + }, + "position3d": { + "x": 103.224, + "y": 10.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_H11#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_H11#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_H11#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_H11#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 103.224, + "y": 10.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_A12", + "uuid": "9e7909a4-a4f8-4f7f-a37a-14b7d7248fa8", + "name": "opentrons_96_tiprack_20ul_A12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 112.224, + "y": 73.084, + "z": 25.49 + }, + "position3d": { + "x": 112.224, + "y": 73.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_A12#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_A12#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_A12#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_A12#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 112.224, + "y": 73.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_B12", + "uuid": "4b620106-ea42-4407-a21d-2409e7fb8c57", + "name": "opentrons_96_tiprack_20ul_B12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 112.224, + "y": 64.084, + "z": 25.49 + }, + "position3d": { + "x": 112.224, + "y": 64.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_B12#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_B12#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_B12#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_B12#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 112.224, + "y": 64.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_C12", + "uuid": "4e84f2c2-1260-4c68-8e68-a1787e3f82a3", + "name": "opentrons_96_tiprack_20ul_C12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 112.224, + "y": 55.084, + "z": 25.49 + }, + "position3d": { + "x": 112.224, + "y": 55.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_C12#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_C12#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_C12#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_C12#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 112.224, + "y": 55.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_D12", + "uuid": "86089252-bdcd-4b02-b637-3cbf5f356563", + "name": "opentrons_96_tiprack_20ul_D12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 112.224, + "y": 46.084, + "z": 25.49 + }, + "position3d": { + "x": 112.224, + "y": 46.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_D12#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_D12#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_D12#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_D12#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 112.224, + "y": 46.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_E12", + "uuid": "b2d4349a-3d65-4b55-82cf-892bacab0949", + "name": "opentrons_96_tiprack_20ul_E12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 112.224, + "y": 37.084, + "z": 25.49 + }, + "position3d": { + "x": 112.224, + "y": 37.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_E12#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_E12#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_E12#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_E12#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 112.224, + "y": 37.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_F12", + "uuid": "db57d1e9-8e27-45f4-ad03-6495cae72856", + "name": "opentrons_96_tiprack_20ul_F12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 112.224, + "y": 28.084, + "z": 25.49 + }, + "position3d": { + "x": 112.224, + "y": 28.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_F12#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_F12#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_F12#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_F12#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 112.224, + "y": 28.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_G12", + "uuid": "52ecf667-9881-405f-8fab-f7c6e6b5c597", + "name": "opentrons_96_tiprack_20ul_G12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 112.224, + "y": 19.084, + "z": 25.49 + }, + "position3d": { + "x": 112.224, + "y": 19.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_G12#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_G12#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_G12#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_G12#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 112.224, + "y": 19.084, + "z": 25.49 + } + }, + { + "id": "opentrons_96_tiprack_20ul_H12", + "uuid": "89afdc18-5470-49c1-9eae-5b26fdd35f84", + "name": "opentrons_96_tiprack_20ul_H12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a953b7ff-fee4-4736-ac13-7b94c166bd89", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 2.312, + "height": 2.312 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 112.224, + "y": 10.084, + "z": 25.49 + }, + "position3d": { + "x": 112.224, + "y": 10.084, + "z": 25.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 2.312, + "size_y": 2.312, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_H12#1", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_H12#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_20ul_H12#0", + "max_volume": 20, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_20ul_H12#0", + "total_tip_length": 39.2, + "has_filter": false, + "maximal_volume": 20, + "fitting_depth": 8.25 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 112.224, + "y": 10.084, + "z": 25.49 + } + } + ] + }, + { + "id": "opentrons_96_tiprack_300ul", + "category": [ + "tip_racks" + ], + "class": { + "module": "pylabrobot.resources.opentrons.tip_racks:opentrons_96_tiprack_300ul", + "type": "pylabrobot" + }, + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/opentrons/tip_racks.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "opentrons_96_tiprack_300ul", + "uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "name": "opentrons_96_tiprack_300ul", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "tip_rack", + "class": "", + "pose": { + "size": { + "depth": 64.49, + "width": 127.76, + "height": 85.48 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipRack", + "size_x": 127.76, + "size_y": 85.48, + "size_z": 64.49, + "category": "tip_rack", + "model": "Opentrons OT-2 96 Tip Rack 300 µL", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "opentrons_96_tiprack_300ul_A1", + "B1": "opentrons_96_tiprack_300ul_B1", + "C1": "opentrons_96_tiprack_300ul_C1", + "D1": "opentrons_96_tiprack_300ul_D1", + "E1": "opentrons_96_tiprack_300ul_E1", + "F1": "opentrons_96_tiprack_300ul_F1", + "G1": "opentrons_96_tiprack_300ul_G1", + "H1": "opentrons_96_tiprack_300ul_H1", + "A2": "opentrons_96_tiprack_300ul_A2", + "B2": "opentrons_96_tiprack_300ul_B2", + "C2": "opentrons_96_tiprack_300ul_C2", + "D2": "opentrons_96_tiprack_300ul_D2", + "E2": "opentrons_96_tiprack_300ul_E2", + "F2": "opentrons_96_tiprack_300ul_F2", + "G2": "opentrons_96_tiprack_300ul_G2", + "H2": "opentrons_96_tiprack_300ul_H2", + "A3": "opentrons_96_tiprack_300ul_A3", + "B3": "opentrons_96_tiprack_300ul_B3", + "C3": "opentrons_96_tiprack_300ul_C3", + "D3": "opentrons_96_tiprack_300ul_D3", + "E3": "opentrons_96_tiprack_300ul_E3", + "F3": "opentrons_96_tiprack_300ul_F3", + "G3": "opentrons_96_tiprack_300ul_G3", + "H3": "opentrons_96_tiprack_300ul_H3", + "A4": "opentrons_96_tiprack_300ul_A4", + "B4": "opentrons_96_tiprack_300ul_B4", + "C4": "opentrons_96_tiprack_300ul_C4", + "D4": "opentrons_96_tiprack_300ul_D4", + "E4": "opentrons_96_tiprack_300ul_E4", + "F4": "opentrons_96_tiprack_300ul_F4", + "G4": "opentrons_96_tiprack_300ul_G4", + "H4": "opentrons_96_tiprack_300ul_H4", + "A5": "opentrons_96_tiprack_300ul_A5", + "B5": "opentrons_96_tiprack_300ul_B5", + "C5": "opentrons_96_tiprack_300ul_C5", + "D5": "opentrons_96_tiprack_300ul_D5", + "E5": "opentrons_96_tiprack_300ul_E5", + "F5": "opentrons_96_tiprack_300ul_F5", + "G5": "opentrons_96_tiprack_300ul_G5", + "H5": "opentrons_96_tiprack_300ul_H5", + "A6": "opentrons_96_tiprack_300ul_A6", + "B6": "opentrons_96_tiprack_300ul_B6", + "C6": "opentrons_96_tiprack_300ul_C6", + "D6": "opentrons_96_tiprack_300ul_D6", + "E6": "opentrons_96_tiprack_300ul_E6", + "F6": "opentrons_96_tiprack_300ul_F6", + "G6": "opentrons_96_tiprack_300ul_G6", + "H6": "opentrons_96_tiprack_300ul_H6", + "A7": "opentrons_96_tiprack_300ul_A7", + "B7": "opentrons_96_tiprack_300ul_B7", + "C7": "opentrons_96_tiprack_300ul_C7", + "D7": "opentrons_96_tiprack_300ul_D7", + "E7": "opentrons_96_tiprack_300ul_E7", + "F7": "opentrons_96_tiprack_300ul_F7", + "G7": "opentrons_96_tiprack_300ul_G7", + "H7": "opentrons_96_tiprack_300ul_H7", + "A8": "opentrons_96_tiprack_300ul_A8", + "B8": "opentrons_96_tiprack_300ul_B8", + "C8": "opentrons_96_tiprack_300ul_C8", + "D8": "opentrons_96_tiprack_300ul_D8", + "E8": "opentrons_96_tiprack_300ul_E8", + "F8": "opentrons_96_tiprack_300ul_F8", + "G8": "opentrons_96_tiprack_300ul_G8", + "H8": "opentrons_96_tiprack_300ul_H8", + "A9": "opentrons_96_tiprack_300ul_A9", + "B9": "opentrons_96_tiprack_300ul_B9", + "C9": "opentrons_96_tiprack_300ul_C9", + "D9": "opentrons_96_tiprack_300ul_D9", + "E9": "opentrons_96_tiprack_300ul_E9", + "F9": "opentrons_96_tiprack_300ul_F9", + "G9": "opentrons_96_tiprack_300ul_G9", + "H9": "opentrons_96_tiprack_300ul_H9", + "A10": "opentrons_96_tiprack_300ul_A10", + "B10": "opentrons_96_tiprack_300ul_B10", + "C10": "opentrons_96_tiprack_300ul_C10", + "D10": "opentrons_96_tiprack_300ul_D10", + "E10": "opentrons_96_tiprack_300ul_E10", + "F10": "opentrons_96_tiprack_300ul_F10", + "G10": "opentrons_96_tiprack_300ul_G10", + "H10": "opentrons_96_tiprack_300ul_H10", + "A11": "opentrons_96_tiprack_300ul_A11", + "B11": "opentrons_96_tiprack_300ul_B11", + "C11": "opentrons_96_tiprack_300ul_C11", + "D11": "opentrons_96_tiprack_300ul_D11", + "E11": "opentrons_96_tiprack_300ul_E11", + "F11": "opentrons_96_tiprack_300ul_F11", + "G11": "opentrons_96_tiprack_300ul_G11", + "H11": "opentrons_96_tiprack_300ul_H11", + "A12": "opentrons_96_tiprack_300ul_A12", + "B12": "opentrons_96_tiprack_300ul_B12", + "C12": "opentrons_96_tiprack_300ul_C12", + "D12": "opentrons_96_tiprack_300ul_D12", + "E12": "opentrons_96_tiprack_300ul_E12", + "F12": "opentrons_96_tiprack_300ul_F12", + "G12": "opentrons_96_tiprack_300ul_G12", + "H12": "opentrons_96_tiprack_300ul_H12" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "opentrons_96_tiprack_300ul_A1", + "uuid": "d5538cd3-fcb5-45e1-a063-f598925d3bb2", + "name": "opentrons_96_tiprack_300ul_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 12.531, + "y": 72.391, + "z": 5.39 + }, + "position3d": { + "x": 12.531, + "y": 72.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_A1#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_A1#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_A1#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_A1#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 12.531, + "y": 72.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_B1", + "uuid": "cee9e390-cc78-43d2-8fd8-077de6654fcb", + "name": "opentrons_96_tiprack_300ul_B1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 12.531, + "y": 63.391, + "z": 5.39 + }, + "position3d": { + "x": 12.531, + "y": 63.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_B1#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_B1#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_B1#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_B1#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 12.531, + "y": 63.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_C1", + "uuid": "1a7de01e-d620-43cd-b587-7aee149663f1", + "name": "opentrons_96_tiprack_300ul_C1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 12.531, + "y": 54.391, + "z": 5.39 + }, + "position3d": { + "x": 12.531, + "y": 54.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_C1#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_C1#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_C1#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_C1#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 12.531, + "y": 54.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_D1", + "uuid": "b0f3a5d1-b68b-41fd-9fd5-7f769db54dbe", + "name": "opentrons_96_tiprack_300ul_D1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 12.531, + "y": 45.391, + "z": 5.39 + }, + "position3d": { + "x": 12.531, + "y": 45.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_D1#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_D1#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_D1#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_D1#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 12.531, + "y": 45.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_E1", + "uuid": "c6b8cf8b-c409-4a10-8e94-c3360ef1fdf3", + "name": "opentrons_96_tiprack_300ul_E1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 12.531, + "y": 36.391, + "z": 5.39 + }, + "position3d": { + "x": 12.531, + "y": 36.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_E1#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_E1#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_E1#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_E1#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 12.531, + "y": 36.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_F1", + "uuid": "0a0e133c-4c9e-4cd7-8f0f-2b1c50b514cd", + "name": "opentrons_96_tiprack_300ul_F1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 12.531, + "y": 27.391, + "z": 5.39 + }, + "position3d": { + "x": 12.531, + "y": 27.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_F1#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_F1#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_F1#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_F1#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 12.531, + "y": 27.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_G1", + "uuid": "45a46058-a524-450f-b495-1148064aa0c4", + "name": "opentrons_96_tiprack_300ul_G1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 12.531, + "y": 18.391, + "z": 5.39 + }, + "position3d": { + "x": 12.531, + "y": 18.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_G1#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_G1#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_G1#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_G1#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 12.531, + "y": 18.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_H1", + "uuid": "2c5f5117-f5c8-410c-a5a9-5f6a38a09bf8", + "name": "opentrons_96_tiprack_300ul_H1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 12.531, + "y": 9.391, + "z": 5.39 + }, + "position3d": { + "x": 12.531, + "y": 9.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_H1#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_H1#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_H1#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_H1#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 12.531, + "y": 9.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_A2", + "uuid": "05801c43-b3c7-4c73-8dd3-a73b1a33b658", + "name": "opentrons_96_tiprack_300ul_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 21.531, + "y": 72.391, + "z": 5.39 + }, + "position3d": { + "x": 21.531, + "y": 72.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_A2#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_A2#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_A2#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_A2#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 21.531, + "y": 72.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_B2", + "uuid": "5cd250de-00d4-407f-89c8-76383d1ffa8d", + "name": "opentrons_96_tiprack_300ul_B2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 21.531, + "y": 63.391, + "z": 5.39 + }, + "position3d": { + "x": 21.531, + "y": 63.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_B2#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_B2#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_B2#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_B2#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 21.531, + "y": 63.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_C2", + "uuid": "ac1bc4d8-a1e4-4afb-9458-09dde2f68b13", + "name": "opentrons_96_tiprack_300ul_C2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 21.531, + "y": 54.391, + "z": 5.39 + }, + "position3d": { + "x": 21.531, + "y": 54.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_C2#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_C2#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_C2#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_C2#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 21.531, + "y": 54.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_D2", + "uuid": "98719225-9af8-4bb4-9f74-23f517db29b2", + "name": "opentrons_96_tiprack_300ul_D2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 21.531, + "y": 45.391, + "z": 5.39 + }, + "position3d": { + "x": 21.531, + "y": 45.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_D2#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_D2#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_D2#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_D2#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 21.531, + "y": 45.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_E2", + "uuid": "0013feea-9e23-48a9-85da-9ae291326417", + "name": "opentrons_96_tiprack_300ul_E2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 21.531, + "y": 36.391, + "z": 5.39 + }, + "position3d": { + "x": 21.531, + "y": 36.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_E2#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_E2#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_E2#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_E2#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 21.531, + "y": 36.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_F2", + "uuid": "df462a6c-45da-48eb-8b44-cef0af91289a", + "name": "opentrons_96_tiprack_300ul_F2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 21.531, + "y": 27.391, + "z": 5.39 + }, + "position3d": { + "x": 21.531, + "y": 27.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_F2#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_F2#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_F2#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_F2#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 21.531, + "y": 27.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_G2", + "uuid": "f14720e0-eda0-4951-b883-8eb47766b160", + "name": "opentrons_96_tiprack_300ul_G2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 21.531, + "y": 18.391, + "z": 5.39 + }, + "position3d": { + "x": 21.531, + "y": 18.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_G2#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_G2#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_G2#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_G2#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 21.531, + "y": 18.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_H2", + "uuid": "74058806-a508-4a42-8f51-5c7071919010", + "name": "opentrons_96_tiprack_300ul_H2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 21.531, + "y": 9.391, + "z": 5.39 + }, + "position3d": { + "x": 21.531, + "y": 9.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_H2#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_H2#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_H2#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_H2#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 21.531, + "y": 9.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_A3", + "uuid": "f17206c9-4c51-4dae-b88d-0fc630a1c04b", + "name": "opentrons_96_tiprack_300ul_A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 30.531, + "y": 72.391, + "z": 5.39 + }, + "position3d": { + "x": 30.531, + "y": 72.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_A3#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_A3#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_A3#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_A3#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 30.531, + "y": 72.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_B3", + "uuid": "ae20bac9-2ec6-4ea4-8ac5-29f77dea38b1", + "name": "opentrons_96_tiprack_300ul_B3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 30.531, + "y": 63.391, + "z": 5.39 + }, + "position3d": { + "x": 30.531, + "y": 63.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_B3#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_B3#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_B3#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_B3#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 30.531, + "y": 63.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_C3", + "uuid": "e9a63260-82bd-4115-bf16-cf68ce4aec2a", + "name": "opentrons_96_tiprack_300ul_C3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 30.531, + "y": 54.391, + "z": 5.39 + }, + "position3d": { + "x": 30.531, + "y": 54.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_C3#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_C3#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_C3#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_C3#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 30.531, + "y": 54.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_D3", + "uuid": "0445f6d5-adb6-4020-93ec-06e2a3ffd6b7", + "name": "opentrons_96_tiprack_300ul_D3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 30.531, + "y": 45.391, + "z": 5.39 + }, + "position3d": { + "x": 30.531, + "y": 45.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_D3#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_D3#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_D3#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_D3#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 30.531, + "y": 45.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_E3", + "uuid": "95ac10d9-acab-4c84-a3f6-3ed28dad9d78", + "name": "opentrons_96_tiprack_300ul_E3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 30.531, + "y": 36.391, + "z": 5.39 + }, + "position3d": { + "x": 30.531, + "y": 36.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_E3#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_E3#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_E3#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_E3#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 30.531, + "y": 36.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_F3", + "uuid": "49a31b6d-4f78-477f-bc66-abccac16f68a", + "name": "opentrons_96_tiprack_300ul_F3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 30.531, + "y": 27.391, + "z": 5.39 + }, + "position3d": { + "x": 30.531, + "y": 27.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_F3#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_F3#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_F3#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_F3#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 30.531, + "y": 27.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_G3", + "uuid": "0741c585-abf5-409d-81ba-27dbb2ee4f95", + "name": "opentrons_96_tiprack_300ul_G3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 30.531, + "y": 18.391, + "z": 5.39 + }, + "position3d": { + "x": 30.531, + "y": 18.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_G3#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_G3#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_G3#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_G3#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 30.531, + "y": 18.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_H3", + "uuid": "2b33e796-dd47-4f55-8ccd-bff624e2da36", + "name": "opentrons_96_tiprack_300ul_H3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 30.531, + "y": 9.391, + "z": 5.39 + }, + "position3d": { + "x": 30.531, + "y": 9.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_H3#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_H3#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_H3#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_H3#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 30.531, + "y": 9.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_A4", + "uuid": "59c2fd86-8d2f-436b-b4b1-c65671b8c776", + "name": "opentrons_96_tiprack_300ul_A4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 39.531, + "y": 72.391, + "z": 5.39 + }, + "position3d": { + "x": 39.531, + "y": 72.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_A4#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_A4#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_A4#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_A4#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 39.531, + "y": 72.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_B4", + "uuid": "4bd71856-41ef-4614-9d67-b290cef810bb", + "name": "opentrons_96_tiprack_300ul_B4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 39.531, + "y": 63.391, + "z": 5.39 + }, + "position3d": { + "x": 39.531, + "y": 63.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_B4#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_B4#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_B4#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_B4#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 39.531, + "y": 63.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_C4", + "uuid": "b1352093-94c0-401c-b25e-7701f7b86a3d", + "name": "opentrons_96_tiprack_300ul_C4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 39.531, + "y": 54.391, + "z": 5.39 + }, + "position3d": { + "x": 39.531, + "y": 54.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_C4#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_C4#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_C4#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_C4#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 39.531, + "y": 54.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_D4", + "uuid": "cfaa981a-cf8d-4949-a903-3dba6f5c09e8", + "name": "opentrons_96_tiprack_300ul_D4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 39.531, + "y": 45.391, + "z": 5.39 + }, + "position3d": { + "x": 39.531, + "y": 45.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_D4#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_D4#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_D4#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_D4#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 39.531, + "y": 45.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_E4", + "uuid": "dc87da07-e65a-4e95-bacb-ae6dbd659d15", + "name": "opentrons_96_tiprack_300ul_E4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 39.531, + "y": 36.391, + "z": 5.39 + }, + "position3d": { + "x": 39.531, + "y": 36.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_E4#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_E4#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_E4#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_E4#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 39.531, + "y": 36.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_F4", + "uuid": "4092291c-699a-413d-ab9b-2d9d461ef0a7", + "name": "opentrons_96_tiprack_300ul_F4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 39.531, + "y": 27.391, + "z": 5.39 + }, + "position3d": { + "x": 39.531, + "y": 27.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_F4#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_F4#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_F4#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_F4#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 39.531, + "y": 27.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_G4", + "uuid": "f2dd06f6-09cf-4d8f-8522-cf8faa8c0fd8", + "name": "opentrons_96_tiprack_300ul_G4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 39.531, + "y": 18.391, + "z": 5.39 + }, + "position3d": { + "x": 39.531, + "y": 18.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_G4#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_G4#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_G4#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_G4#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 39.531, + "y": 18.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_H4", + "uuid": "612b494c-4913-4ee5-85f7-996c319a9f41", + "name": "opentrons_96_tiprack_300ul_H4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 39.531, + "y": 9.391, + "z": 5.39 + }, + "position3d": { + "x": 39.531, + "y": 9.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_H4#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_H4#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_H4#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_H4#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 39.531, + "y": 9.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_A5", + "uuid": "6d09005c-4bfa-4d7f-97c3-835f6486765d", + "name": "opentrons_96_tiprack_300ul_A5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 48.531, + "y": 72.391, + "z": 5.39 + }, + "position3d": { + "x": 48.531, + "y": 72.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_A5#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_A5#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_A5#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_A5#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 48.531, + "y": 72.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_B5", + "uuid": "c2e0cc52-b758-434f-9bad-ac966005928c", + "name": "opentrons_96_tiprack_300ul_B5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 48.531, + "y": 63.391, + "z": 5.39 + }, + "position3d": { + "x": 48.531, + "y": 63.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_B5#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_B5#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_B5#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_B5#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 48.531, + "y": 63.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_C5", + "uuid": "70c4b43e-6674-4bd9-a4a8-86a1828c7c40", + "name": "opentrons_96_tiprack_300ul_C5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 48.531, + "y": 54.391, + "z": 5.39 + }, + "position3d": { + "x": 48.531, + "y": 54.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_C5#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_C5#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_C5#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_C5#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 48.531, + "y": 54.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_D5", + "uuid": "e9de9b2f-9692-4668-8b2b-b43afa17e1af", + "name": "opentrons_96_tiprack_300ul_D5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 48.531, + "y": 45.391, + "z": 5.39 + }, + "position3d": { + "x": 48.531, + "y": 45.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_D5#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_D5#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_D5#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_D5#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 48.531, + "y": 45.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_E5", + "uuid": "87b1af0b-baf9-4260-ab05-1cbe63d4f869", + "name": "opentrons_96_tiprack_300ul_E5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 48.531, + "y": 36.391, + "z": 5.39 + }, + "position3d": { + "x": 48.531, + "y": 36.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_E5#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_E5#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_E5#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_E5#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 48.531, + "y": 36.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_F5", + "uuid": "39705b27-662c-4522-ae22-01731543ecfd", + "name": "opentrons_96_tiprack_300ul_F5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 48.531, + "y": 27.391, + "z": 5.39 + }, + "position3d": { + "x": 48.531, + "y": 27.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_F5#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_F5#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_F5#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_F5#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 48.531, + "y": 27.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_G5", + "uuid": "db9caf12-df4d-44a9-b7b5-beae848a5046", + "name": "opentrons_96_tiprack_300ul_G5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 48.531, + "y": 18.391, + "z": 5.39 + }, + "position3d": { + "x": 48.531, + "y": 18.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_G5#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_G5#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_G5#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_G5#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 48.531, + "y": 18.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_H5", + "uuid": "1bea11ad-0024-4808-be9e-77942c6197c6", + "name": "opentrons_96_tiprack_300ul_H5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 48.531, + "y": 9.391, + "z": 5.39 + }, + "position3d": { + "x": 48.531, + "y": 9.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_H5#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_H5#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_H5#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_H5#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 48.531, + "y": 9.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_A6", + "uuid": "3a12c4dc-3f60-4a1d-a231-5a206809f824", + "name": "opentrons_96_tiprack_300ul_A6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 57.531, + "y": 72.391, + "z": 5.39 + }, + "position3d": { + "x": 57.531, + "y": 72.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_A6#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_A6#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_A6#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_A6#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 57.531, + "y": 72.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_B6", + "uuid": "21598ffb-cf41-4bd7-bcfc-7b83b9dd66fc", + "name": "opentrons_96_tiprack_300ul_B6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 57.531, + "y": 63.391, + "z": 5.39 + }, + "position3d": { + "x": 57.531, + "y": 63.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_B6#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_B6#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_B6#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_B6#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 57.531, + "y": 63.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_C6", + "uuid": "4f531b4e-2644-492d-ae58-dd8679af925c", + "name": "opentrons_96_tiprack_300ul_C6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 57.531, + "y": 54.391, + "z": 5.39 + }, + "position3d": { + "x": 57.531, + "y": 54.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_C6#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_C6#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_C6#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_C6#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 57.531, + "y": 54.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_D6", + "uuid": "de790941-d58f-4ce4-a588-cc1a3d7dad5c", + "name": "opentrons_96_tiprack_300ul_D6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 57.531, + "y": 45.391, + "z": 5.39 + }, + "position3d": { + "x": 57.531, + "y": 45.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_D6#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_D6#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_D6#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_D6#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 57.531, + "y": 45.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_E6", + "uuid": "d5f3989d-df78-4658-a218-b271333da65a", + "name": "opentrons_96_tiprack_300ul_E6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 57.531, + "y": 36.391, + "z": 5.39 + }, + "position3d": { + "x": 57.531, + "y": 36.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_E6#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_E6#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_E6#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_E6#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 57.531, + "y": 36.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_F6", + "uuid": "aa0714db-032e-4043-a8fa-63043410d9ef", + "name": "opentrons_96_tiprack_300ul_F6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 57.531, + "y": 27.391, + "z": 5.39 + }, + "position3d": { + "x": 57.531, + "y": 27.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_F6#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_F6#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_F6#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_F6#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 57.531, + "y": 27.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_G6", + "uuid": "7ffa9d20-ba78-48f8-8601-4d922204c72f", + "name": "opentrons_96_tiprack_300ul_G6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 57.531, + "y": 18.391, + "z": 5.39 + }, + "position3d": { + "x": 57.531, + "y": 18.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_G6#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_G6#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_G6#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_G6#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 57.531, + "y": 18.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_H6", + "uuid": "86046145-d87f-4560-9d5b-03a73e487bce", + "name": "opentrons_96_tiprack_300ul_H6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 57.531, + "y": 9.391, + "z": 5.39 + }, + "position3d": { + "x": 57.531, + "y": 9.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_H6#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_H6#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_H6#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_H6#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 57.531, + "y": 9.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_A7", + "uuid": "82307c84-8e96-4bdb-b90c-04a7826ac04a", + "name": "opentrons_96_tiprack_300ul_A7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 66.531, + "y": 72.391, + "z": 5.39 + }, + "position3d": { + "x": 66.531, + "y": 72.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_A7#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_A7#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_A7#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_A7#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 66.531, + "y": 72.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_B7", + "uuid": "0638b2bf-65f0-4989-b2fb-3855cde33863", + "name": "opentrons_96_tiprack_300ul_B7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 66.531, + "y": 63.391, + "z": 5.39 + }, + "position3d": { + "x": 66.531, + "y": 63.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_B7#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_B7#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_B7#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_B7#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 66.531, + "y": 63.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_C7", + "uuid": "231681a1-f79c-49d4-912b-7b92a7e99ebf", + "name": "opentrons_96_tiprack_300ul_C7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 66.531, + "y": 54.391, + "z": 5.39 + }, + "position3d": { + "x": 66.531, + "y": 54.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_C7#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_C7#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_C7#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_C7#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 66.531, + "y": 54.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_D7", + "uuid": "0b2b649a-bcd1-4ecd-821a-3552a9ed2c28", + "name": "opentrons_96_tiprack_300ul_D7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 66.531, + "y": 45.391, + "z": 5.39 + }, + "position3d": { + "x": 66.531, + "y": 45.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_D7#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_D7#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_D7#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_D7#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 66.531, + "y": 45.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_E7", + "uuid": "525f438e-8252-4eda-8b39-193cbdf96779", + "name": "opentrons_96_tiprack_300ul_E7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 66.531, + "y": 36.391, + "z": 5.39 + }, + "position3d": { + "x": 66.531, + "y": 36.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_E7#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_E7#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_E7#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_E7#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 66.531, + "y": 36.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_F7", + "uuid": "a52b280f-9393-437c-ad10-d107993a0a2c", + "name": "opentrons_96_tiprack_300ul_F7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 66.531, + "y": 27.391, + "z": 5.39 + }, + "position3d": { + "x": 66.531, + "y": 27.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_F7#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_F7#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_F7#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_F7#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 66.531, + "y": 27.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_G7", + "uuid": "22d05a4e-2c9f-476b-a9f3-efe9a6585232", + "name": "opentrons_96_tiprack_300ul_G7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 66.531, + "y": 18.391, + "z": 5.39 + }, + "position3d": { + "x": 66.531, + "y": 18.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_G7#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_G7#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_G7#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_G7#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 66.531, + "y": 18.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_H7", + "uuid": "15a6701a-a5ea-4ec6-a731-7f70e27551a8", + "name": "opentrons_96_tiprack_300ul_H7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 66.531, + "y": 9.391, + "z": 5.39 + }, + "position3d": { + "x": 66.531, + "y": 9.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_H7#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_H7#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_H7#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_H7#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 66.531, + "y": 9.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_A8", + "uuid": "f3e99a28-ea04-41e5-bce8-5daa33a1bf2f", + "name": "opentrons_96_tiprack_300ul_A8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 75.531, + "y": 72.391, + "z": 5.39 + }, + "position3d": { + "x": 75.531, + "y": 72.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_A8#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_A8#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_A8#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_A8#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 75.531, + "y": 72.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_B8", + "uuid": "3d577938-95e3-4165-966e-3b7fc26bc986", + "name": "opentrons_96_tiprack_300ul_B8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 75.531, + "y": 63.391, + "z": 5.39 + }, + "position3d": { + "x": 75.531, + "y": 63.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_B8#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_B8#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_B8#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_B8#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 75.531, + "y": 63.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_C8", + "uuid": "5b83151d-b166-4a4f-a073-8c52da334a16", + "name": "opentrons_96_tiprack_300ul_C8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 75.531, + "y": 54.391, + "z": 5.39 + }, + "position3d": { + "x": 75.531, + "y": 54.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_C8#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_C8#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_C8#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_C8#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 75.531, + "y": 54.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_D8", + "uuid": "6e72ad14-b0bf-4dff-bba6-3da6a5361463", + "name": "opentrons_96_tiprack_300ul_D8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 75.531, + "y": 45.391, + "z": 5.39 + }, + "position3d": { + "x": 75.531, + "y": 45.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_D8#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_D8#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_D8#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_D8#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 75.531, + "y": 45.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_E8", + "uuid": "c436d9d8-d06a-4e92-a95a-4fa623f967d5", + "name": "opentrons_96_tiprack_300ul_E8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 75.531, + "y": 36.391, + "z": 5.39 + }, + "position3d": { + "x": 75.531, + "y": 36.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_E8#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_E8#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_E8#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_E8#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 75.531, + "y": 36.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_F8", + "uuid": "3497e918-dee2-4155-a322-b46ecb1abac3", + "name": "opentrons_96_tiprack_300ul_F8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 75.531, + "y": 27.391, + "z": 5.39 + }, + "position3d": { + "x": 75.531, + "y": 27.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_F8#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_F8#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_F8#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_F8#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 75.531, + "y": 27.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_G8", + "uuid": "7d5254c4-9de7-41fe-9a2d-d2896accff5c", + "name": "opentrons_96_tiprack_300ul_G8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 75.531, + "y": 18.391, + "z": 5.39 + }, + "position3d": { + "x": 75.531, + "y": 18.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_G8#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_G8#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_G8#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_G8#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 75.531, + "y": 18.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_H8", + "uuid": "78e9972a-bc74-4163-b852-23614038b37d", + "name": "opentrons_96_tiprack_300ul_H8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 75.531, + "y": 9.391, + "z": 5.39 + }, + "position3d": { + "x": 75.531, + "y": 9.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_H8#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_H8#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_H8#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_H8#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 75.531, + "y": 9.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_A9", + "uuid": "01fcc1d1-28b0-42a6-9fcb-37f3e6a416bf", + "name": "opentrons_96_tiprack_300ul_A9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 84.531, + "y": 72.391, + "z": 5.39 + }, + "position3d": { + "x": 84.531, + "y": 72.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_A9#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_A9#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_A9#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_A9#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 84.531, + "y": 72.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_B9", + "uuid": "cec40a0f-1f8d-4614-bfc0-6cd41c01b1ab", + "name": "opentrons_96_tiprack_300ul_B9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 84.531, + "y": 63.391, + "z": 5.39 + }, + "position3d": { + "x": 84.531, + "y": 63.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_B9#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_B9#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_B9#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_B9#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 84.531, + "y": 63.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_C9", + "uuid": "8fe711c6-c5eb-4dae-9a50-0112f570d5af", + "name": "opentrons_96_tiprack_300ul_C9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 84.531, + "y": 54.391, + "z": 5.39 + }, + "position3d": { + "x": 84.531, + "y": 54.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_C9#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_C9#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_C9#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_C9#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 84.531, + "y": 54.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_D9", + "uuid": "676dd5d6-d1f7-4bee-a40d-0cbff9af198c", + "name": "opentrons_96_tiprack_300ul_D9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 84.531, + "y": 45.391, + "z": 5.39 + }, + "position3d": { + "x": 84.531, + "y": 45.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_D9#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_D9#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_D9#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_D9#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 84.531, + "y": 45.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_E9", + "uuid": "4517eeec-795f-4e6f-a214-e72406a519da", + "name": "opentrons_96_tiprack_300ul_E9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 84.531, + "y": 36.391, + "z": 5.39 + }, + "position3d": { + "x": 84.531, + "y": 36.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_E9#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_E9#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_E9#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_E9#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 84.531, + "y": 36.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_F9", + "uuid": "0f649594-40fc-4598-ba55-66f23cfe4878", + "name": "opentrons_96_tiprack_300ul_F9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 84.531, + "y": 27.391, + "z": 5.39 + }, + "position3d": { + "x": 84.531, + "y": 27.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_F9#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_F9#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_F9#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_F9#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 84.531, + "y": 27.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_G9", + "uuid": "626c2399-bd26-4de0-a7bf-22d4a61b0997", + "name": "opentrons_96_tiprack_300ul_G9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 84.531, + "y": 18.391, + "z": 5.39 + }, + "position3d": { + "x": 84.531, + "y": 18.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_G9#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_G9#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_G9#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_G9#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 84.531, + "y": 18.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_H9", + "uuid": "25318787-5077-4bb8-8e1a-28668c1f4f8b", + "name": "opentrons_96_tiprack_300ul_H9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 84.531, + "y": 9.391, + "z": 5.39 + }, + "position3d": { + "x": 84.531, + "y": 9.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_H9#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_H9#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_H9#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_H9#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 84.531, + "y": 9.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_A10", + "uuid": "caa0c461-5ade-44c2-b59f-b3ee871ea347", + "name": "opentrons_96_tiprack_300ul_A10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 93.531, + "y": 72.391, + "z": 5.39 + }, + "position3d": { + "x": 93.531, + "y": 72.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_A10#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_A10#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_A10#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_A10#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 93.531, + "y": 72.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_B10", + "uuid": "80250b55-8473-4a6b-8155-91682be9d4da", + "name": "opentrons_96_tiprack_300ul_B10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 93.531, + "y": 63.391, + "z": 5.39 + }, + "position3d": { + "x": 93.531, + "y": 63.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_B10#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_B10#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_B10#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_B10#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 93.531, + "y": 63.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_C10", + "uuid": "74e247d4-4341-4461-9fb3-148f29d6e74b", + "name": "opentrons_96_tiprack_300ul_C10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 93.531, + "y": 54.391, + "z": 5.39 + }, + "position3d": { + "x": 93.531, + "y": 54.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_C10#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_C10#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_C10#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_C10#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 93.531, + "y": 54.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_D10", + "uuid": "a3beff23-3f38-4f58-8045-e40ca937924a", + "name": "opentrons_96_tiprack_300ul_D10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 93.531, + "y": 45.391, + "z": 5.39 + }, + "position3d": { + "x": 93.531, + "y": 45.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_D10#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_D10#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_D10#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_D10#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 93.531, + "y": 45.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_E10", + "uuid": "0d7f0791-c3aa-4c15-88ea-9bd171acad01", + "name": "opentrons_96_tiprack_300ul_E10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 93.531, + "y": 36.391, + "z": 5.39 + }, + "position3d": { + "x": 93.531, + "y": 36.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_E10#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_E10#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_E10#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_E10#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 93.531, + "y": 36.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_F10", + "uuid": "f283a76e-df34-4046-98bb-69a3a8f28658", + "name": "opentrons_96_tiprack_300ul_F10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 93.531, + "y": 27.391, + "z": 5.39 + }, + "position3d": { + "x": 93.531, + "y": 27.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_F10#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_F10#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_F10#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_F10#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 93.531, + "y": 27.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_G10", + "uuid": "e98ea88b-d83c-4d0e-b644-d289c609155c", + "name": "opentrons_96_tiprack_300ul_G10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 93.531, + "y": 18.391, + "z": 5.39 + }, + "position3d": { + "x": 93.531, + "y": 18.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_G10#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_G10#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_G10#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_G10#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 93.531, + "y": 18.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_H10", + "uuid": "9a879bf7-9e16-44a2-a3ef-a36b661c81ca", + "name": "opentrons_96_tiprack_300ul_H10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 93.531, + "y": 9.391, + "z": 5.39 + }, + "position3d": { + "x": 93.531, + "y": 9.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_H10#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_H10#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_H10#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_H10#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 93.531, + "y": 9.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_A11", + "uuid": "b8f2477b-f7e8-4d29-bc42-eb34bfe7b75a", + "name": "opentrons_96_tiprack_300ul_A11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 102.531, + "y": 72.391, + "z": 5.39 + }, + "position3d": { + "x": 102.531, + "y": 72.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_A11#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_A11#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_A11#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_A11#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 102.531, + "y": 72.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_B11", + "uuid": "10e17856-492c-4244-b713-51ee60099465", + "name": "opentrons_96_tiprack_300ul_B11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 102.531, + "y": 63.391, + "z": 5.39 + }, + "position3d": { + "x": 102.531, + "y": 63.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_B11#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_B11#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_B11#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_B11#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 102.531, + "y": 63.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_C11", + "uuid": "cff526bd-8297-4655-b4ae-f4c3e819f374", + "name": "opentrons_96_tiprack_300ul_C11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 102.531, + "y": 54.391, + "z": 5.39 + }, + "position3d": { + "x": 102.531, + "y": 54.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_C11#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_C11#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_C11#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_C11#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 102.531, + "y": 54.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_D11", + "uuid": "1179e2c4-f5e6-4948-86e2-44aa12b91f9e", + "name": "opentrons_96_tiprack_300ul_D11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 102.531, + "y": 45.391, + "z": 5.39 + }, + "position3d": { + "x": 102.531, + "y": 45.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_D11#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_D11#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_D11#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_D11#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 102.531, + "y": 45.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_E11", + "uuid": "d1873311-3aed-4142-870d-392923d63c40", + "name": "opentrons_96_tiprack_300ul_E11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 102.531, + "y": 36.391, + "z": 5.39 + }, + "position3d": { + "x": 102.531, + "y": 36.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_E11#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_E11#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_E11#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_E11#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 102.531, + "y": 36.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_F11", + "uuid": "df3708c3-625e-4b84-b894-a011ecb86d67", + "name": "opentrons_96_tiprack_300ul_F11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 102.531, + "y": 27.391, + "z": 5.39 + }, + "position3d": { + "x": 102.531, + "y": 27.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_F11#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_F11#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_F11#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_F11#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 102.531, + "y": 27.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_G11", + "uuid": "9557b616-7988-4831-8793-8b2591531b5e", + "name": "opentrons_96_tiprack_300ul_G11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 102.531, + "y": 18.391, + "z": 5.39 + }, + "position3d": { + "x": 102.531, + "y": 18.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_G11#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_G11#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_G11#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_G11#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 102.531, + "y": 18.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_H11", + "uuid": "4168ff9e-a9dd-4464-a502-c445b6d20d44", + "name": "opentrons_96_tiprack_300ul_H11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 102.531, + "y": 9.391, + "z": 5.39 + }, + "position3d": { + "x": 102.531, + "y": 9.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_H11#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_H11#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_H11#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_H11#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 102.531, + "y": 9.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_A12", + "uuid": "8e5a4500-fe4a-4f82-b56c-ee3a654cb2e9", + "name": "opentrons_96_tiprack_300ul_A12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 111.531, + "y": 72.391, + "z": 5.39 + }, + "position3d": { + "x": 111.531, + "y": 72.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_A12#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_A12#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_A12#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_A12#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 111.531, + "y": 72.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_B12", + "uuid": "c4da18c6-ad5a-4c51-83d8-87babcd8060b", + "name": "opentrons_96_tiprack_300ul_B12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 111.531, + "y": 63.391, + "z": 5.39 + }, + "position3d": { + "x": 111.531, + "y": 63.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_B12#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_B12#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_B12#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_B12#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 111.531, + "y": 63.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_C12", + "uuid": "d5f66263-a038-4ba6-bae5-88ec27c3342f", + "name": "opentrons_96_tiprack_300ul_C12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 111.531, + "y": 54.391, + "z": 5.39 + }, + "position3d": { + "x": 111.531, + "y": 54.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_C12#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_C12#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_C12#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_C12#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 111.531, + "y": 54.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_D12", + "uuid": "ea402fa3-d664-4712-931c-ec445db43b73", + "name": "opentrons_96_tiprack_300ul_D12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 111.531, + "y": 45.391, + "z": 5.39 + }, + "position3d": { + "x": 111.531, + "y": 45.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_D12#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_D12#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_D12#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_D12#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 111.531, + "y": 45.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_E12", + "uuid": "4a284ad1-4632-421a-9f0b-3431e58049e2", + "name": "opentrons_96_tiprack_300ul_E12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 111.531, + "y": 36.391, + "z": 5.39 + }, + "position3d": { + "x": 111.531, + "y": 36.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_E12#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_E12#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_E12#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_E12#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 111.531, + "y": 36.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_F12", + "uuid": "8dba8de0-055a-41f4-8268-6144090fcb59", + "name": "opentrons_96_tiprack_300ul_F12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 111.531, + "y": 27.391, + "z": 5.39 + }, + "position3d": { + "x": 111.531, + "y": 27.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_F12#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_F12#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_F12#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_F12#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 111.531, + "y": 27.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_G12", + "uuid": "23af3719-75af-455c-8edf-391f8844f067", + "name": "opentrons_96_tiprack_300ul_G12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 111.531, + "y": 18.391, + "z": 5.39 + }, + "position3d": { + "x": 111.531, + "y": 18.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_G12#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_G12#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_G12#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_G12#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 111.531, + "y": 18.391, + "z": 5.39 + } + }, + { + "id": "opentrons_96_tiprack_300ul_H12", + "uuid": "0ef9380b-ce3a-4e34-9dd8-fac98b51e9ce", + "name": "opentrons_96_tiprack_300ul_H12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8d2789b8-85bc-4b00-8fbb-5b955770e7e9", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 3.698, + "height": 3.698 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 111.531, + "y": 9.391, + "z": 5.39 + }, + "position3d": { + "x": 111.531, + "y": 9.391, + "z": 5.39 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 3.698, + "size_y": 3.698, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_H12#1", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_H12#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + }, + "tip_state": { + "thing": "opentrons_96_tiprack_300ul_H12#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "opentrons_96_tiprack_300ul_H12#0", + "total_tip_length": 59.3, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 7.47 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 111.531, + "y": 9.391, + "z": 5.39 + } + } + ] + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul", + "category": [ + "plates" + ], + "class": { + "module": "pylabrobot.resources.opentrons.plates:appliedbiosystemsmicroamp_384_wellplate_40ul", + "type": "pylabrobot" + }, + "description": "Applied Biosystems microamp 384 wellplate 40ul", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/opentrons/plates.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul", + "uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "plate", + "class": "", + "pose": { + "size": { + "depth": 9.7, + "width": 127.8, + "height": 85.5 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Plate", + "size_x": 127.8, + "size_y": 85.5, + "size_z": 9.7, + "category": "plate", + "model": "Applied Biosystems MicroAmp 384 Well Plate 40 µL", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "appliedbiosystemsmicroamp_384_wellplate_40ul_A1", + "B1": "appliedbiosystemsmicroamp_384_wellplate_40ul_B1", + "C1": "appliedbiosystemsmicroamp_384_wellplate_40ul_C1", + "D1": "appliedbiosystemsmicroamp_384_wellplate_40ul_D1", + "E1": "appliedbiosystemsmicroamp_384_wellplate_40ul_E1", + "F1": "appliedbiosystemsmicroamp_384_wellplate_40ul_F1", + "G1": "appliedbiosystemsmicroamp_384_wellplate_40ul_G1", + "H1": "appliedbiosystemsmicroamp_384_wellplate_40ul_H1", + "I1": "appliedbiosystemsmicroamp_384_wellplate_40ul_I1", + "J1": "appliedbiosystemsmicroamp_384_wellplate_40ul_J1", + "K1": "appliedbiosystemsmicroamp_384_wellplate_40ul_K1", + "L1": "appliedbiosystemsmicroamp_384_wellplate_40ul_L1", + "M1": "appliedbiosystemsmicroamp_384_wellplate_40ul_M1", + "N1": "appliedbiosystemsmicroamp_384_wellplate_40ul_N1", + "O1": "appliedbiosystemsmicroamp_384_wellplate_40ul_O1", + "P1": "appliedbiosystemsmicroamp_384_wellplate_40ul_P1", + "A2": "appliedbiosystemsmicroamp_384_wellplate_40ul_A2", + "B2": "appliedbiosystemsmicroamp_384_wellplate_40ul_B2", + "C2": "appliedbiosystemsmicroamp_384_wellplate_40ul_C2", + "D2": "appliedbiosystemsmicroamp_384_wellplate_40ul_D2", + "E2": "appliedbiosystemsmicroamp_384_wellplate_40ul_E2", + "F2": "appliedbiosystemsmicroamp_384_wellplate_40ul_F2", + "G2": "appliedbiosystemsmicroamp_384_wellplate_40ul_G2", + "H2": "appliedbiosystemsmicroamp_384_wellplate_40ul_H2", + "I2": "appliedbiosystemsmicroamp_384_wellplate_40ul_I2", + "J2": "appliedbiosystemsmicroamp_384_wellplate_40ul_J2", + "K2": "appliedbiosystemsmicroamp_384_wellplate_40ul_K2", + "L2": "appliedbiosystemsmicroamp_384_wellplate_40ul_L2", + "M2": "appliedbiosystemsmicroamp_384_wellplate_40ul_M2", + "N2": "appliedbiosystemsmicroamp_384_wellplate_40ul_N2", + "O2": "appliedbiosystemsmicroamp_384_wellplate_40ul_O2", + "P2": "appliedbiosystemsmicroamp_384_wellplate_40ul_P2", + "A3": "appliedbiosystemsmicroamp_384_wellplate_40ul_A3", + "B3": "appliedbiosystemsmicroamp_384_wellplate_40ul_B3", + "C3": "appliedbiosystemsmicroamp_384_wellplate_40ul_C3", + "D3": "appliedbiosystemsmicroamp_384_wellplate_40ul_D3", + "E3": "appliedbiosystemsmicroamp_384_wellplate_40ul_E3", + "F3": "appliedbiosystemsmicroamp_384_wellplate_40ul_F3", + "G3": "appliedbiosystemsmicroamp_384_wellplate_40ul_G3", + "H3": "appliedbiosystemsmicroamp_384_wellplate_40ul_H3", + "I3": "appliedbiosystemsmicroamp_384_wellplate_40ul_I3", + "J3": "appliedbiosystemsmicroamp_384_wellplate_40ul_J3", + "K3": "appliedbiosystemsmicroamp_384_wellplate_40ul_K3", + "L3": "appliedbiosystemsmicroamp_384_wellplate_40ul_L3", + "M3": "appliedbiosystemsmicroamp_384_wellplate_40ul_M3", + "N3": "appliedbiosystemsmicroamp_384_wellplate_40ul_N3", + "O3": "appliedbiosystemsmicroamp_384_wellplate_40ul_O3", + "P3": "appliedbiosystemsmicroamp_384_wellplate_40ul_P3", + "A4": "appliedbiosystemsmicroamp_384_wellplate_40ul_A4", + "B4": "appliedbiosystemsmicroamp_384_wellplate_40ul_B4", + "C4": "appliedbiosystemsmicroamp_384_wellplate_40ul_C4", + "D4": "appliedbiosystemsmicroamp_384_wellplate_40ul_D4", + "E4": "appliedbiosystemsmicroamp_384_wellplate_40ul_E4", + "F4": "appliedbiosystemsmicroamp_384_wellplate_40ul_F4", + "G4": "appliedbiosystemsmicroamp_384_wellplate_40ul_G4", + "H4": "appliedbiosystemsmicroamp_384_wellplate_40ul_H4", + "I4": "appliedbiosystemsmicroamp_384_wellplate_40ul_I4", + "J4": "appliedbiosystemsmicroamp_384_wellplate_40ul_J4", + "K4": "appliedbiosystemsmicroamp_384_wellplate_40ul_K4", + "L4": "appliedbiosystemsmicroamp_384_wellplate_40ul_L4", + "M4": "appliedbiosystemsmicroamp_384_wellplate_40ul_M4", + "N4": "appliedbiosystemsmicroamp_384_wellplate_40ul_N4", + "O4": "appliedbiosystemsmicroamp_384_wellplate_40ul_O4", + "P4": "appliedbiosystemsmicroamp_384_wellplate_40ul_P4", + "A5": "appliedbiosystemsmicroamp_384_wellplate_40ul_A5", + "B5": "appliedbiosystemsmicroamp_384_wellplate_40ul_B5", + "C5": "appliedbiosystemsmicroamp_384_wellplate_40ul_C5", + "D5": "appliedbiosystemsmicroamp_384_wellplate_40ul_D5", + "E5": "appliedbiosystemsmicroamp_384_wellplate_40ul_E5", + "F5": "appliedbiosystemsmicroamp_384_wellplate_40ul_F5", + "G5": "appliedbiosystemsmicroamp_384_wellplate_40ul_G5", + "H5": "appliedbiosystemsmicroamp_384_wellplate_40ul_H5", + "I5": "appliedbiosystemsmicroamp_384_wellplate_40ul_I5", + "J5": "appliedbiosystemsmicroamp_384_wellplate_40ul_J5", + "K5": "appliedbiosystemsmicroamp_384_wellplate_40ul_K5", + "L5": "appliedbiosystemsmicroamp_384_wellplate_40ul_L5", + "M5": "appliedbiosystemsmicroamp_384_wellplate_40ul_M5", + "N5": "appliedbiosystemsmicroamp_384_wellplate_40ul_N5", + "O5": "appliedbiosystemsmicroamp_384_wellplate_40ul_O5", + "P5": "appliedbiosystemsmicroamp_384_wellplate_40ul_P5", + "A6": "appliedbiosystemsmicroamp_384_wellplate_40ul_A6", + "B6": "appliedbiosystemsmicroamp_384_wellplate_40ul_B6", + "C6": "appliedbiosystemsmicroamp_384_wellplate_40ul_C6", + "D6": "appliedbiosystemsmicroamp_384_wellplate_40ul_D6", + "E6": "appliedbiosystemsmicroamp_384_wellplate_40ul_E6", + "F6": "appliedbiosystemsmicroamp_384_wellplate_40ul_F6", + "G6": "appliedbiosystemsmicroamp_384_wellplate_40ul_G6", + "H6": "appliedbiosystemsmicroamp_384_wellplate_40ul_H6", + "I6": "appliedbiosystemsmicroamp_384_wellplate_40ul_I6", + "J6": "appliedbiosystemsmicroamp_384_wellplate_40ul_J6", + "K6": "appliedbiosystemsmicroamp_384_wellplate_40ul_K6", + "L6": "appliedbiosystemsmicroamp_384_wellplate_40ul_L6", + "M6": "appliedbiosystemsmicroamp_384_wellplate_40ul_M6", + "N6": "appliedbiosystemsmicroamp_384_wellplate_40ul_N6", + "O6": "appliedbiosystemsmicroamp_384_wellplate_40ul_O6", + "P6": "appliedbiosystemsmicroamp_384_wellplate_40ul_P6", + "A7": "appliedbiosystemsmicroamp_384_wellplate_40ul_A7", + "B7": "appliedbiosystemsmicroamp_384_wellplate_40ul_B7", + "C7": "appliedbiosystemsmicroamp_384_wellplate_40ul_C7", + "D7": "appliedbiosystemsmicroamp_384_wellplate_40ul_D7", + "E7": "appliedbiosystemsmicroamp_384_wellplate_40ul_E7", + "F7": "appliedbiosystemsmicroamp_384_wellplate_40ul_F7", + "G7": "appliedbiosystemsmicroamp_384_wellplate_40ul_G7", + "H7": "appliedbiosystemsmicroamp_384_wellplate_40ul_H7", + "I7": "appliedbiosystemsmicroamp_384_wellplate_40ul_I7", + "J7": "appliedbiosystemsmicroamp_384_wellplate_40ul_J7", + "K7": "appliedbiosystemsmicroamp_384_wellplate_40ul_K7", + "L7": "appliedbiosystemsmicroamp_384_wellplate_40ul_L7", + "M7": "appliedbiosystemsmicroamp_384_wellplate_40ul_M7", + "N7": "appliedbiosystemsmicroamp_384_wellplate_40ul_N7", + "O7": "appliedbiosystemsmicroamp_384_wellplate_40ul_O7", + "P7": "appliedbiosystemsmicroamp_384_wellplate_40ul_P7", + "A8": "appliedbiosystemsmicroamp_384_wellplate_40ul_A8", + "B8": "appliedbiosystemsmicroamp_384_wellplate_40ul_B8", + "C8": "appliedbiosystemsmicroamp_384_wellplate_40ul_C8", + "D8": "appliedbiosystemsmicroamp_384_wellplate_40ul_D8", + "E8": "appliedbiosystemsmicroamp_384_wellplate_40ul_E8", + "F8": "appliedbiosystemsmicroamp_384_wellplate_40ul_F8", + "G8": "appliedbiosystemsmicroamp_384_wellplate_40ul_G8", + "H8": "appliedbiosystemsmicroamp_384_wellplate_40ul_H8", + "I8": "appliedbiosystemsmicroamp_384_wellplate_40ul_I8", + "J8": "appliedbiosystemsmicroamp_384_wellplate_40ul_J8", + "K8": "appliedbiosystemsmicroamp_384_wellplate_40ul_K8", + "L8": "appliedbiosystemsmicroamp_384_wellplate_40ul_L8", + "M8": "appliedbiosystemsmicroamp_384_wellplate_40ul_M8", + "N8": "appliedbiosystemsmicroamp_384_wellplate_40ul_N8", + "O8": "appliedbiosystemsmicroamp_384_wellplate_40ul_O8", + "P8": "appliedbiosystemsmicroamp_384_wellplate_40ul_P8", + "A9": "appliedbiosystemsmicroamp_384_wellplate_40ul_A9", + "B9": "appliedbiosystemsmicroamp_384_wellplate_40ul_B9", + "C9": "appliedbiosystemsmicroamp_384_wellplate_40ul_C9", + "D9": "appliedbiosystemsmicroamp_384_wellplate_40ul_D9", + "E9": "appliedbiosystemsmicroamp_384_wellplate_40ul_E9", + "F9": "appliedbiosystemsmicroamp_384_wellplate_40ul_F9", + "G9": "appliedbiosystemsmicroamp_384_wellplate_40ul_G9", + "H9": "appliedbiosystemsmicroamp_384_wellplate_40ul_H9", + "I9": "appliedbiosystemsmicroamp_384_wellplate_40ul_I9", + "J9": "appliedbiosystemsmicroamp_384_wellplate_40ul_J9", + "K9": "appliedbiosystemsmicroamp_384_wellplate_40ul_K9", + "L9": "appliedbiosystemsmicroamp_384_wellplate_40ul_L9", + "M9": "appliedbiosystemsmicroamp_384_wellplate_40ul_M9", + "N9": "appliedbiosystemsmicroamp_384_wellplate_40ul_N9", + "O9": "appliedbiosystemsmicroamp_384_wellplate_40ul_O9", + "P9": "appliedbiosystemsmicroamp_384_wellplate_40ul_P9", + "A10": "appliedbiosystemsmicroamp_384_wellplate_40ul_A10", + "B10": "appliedbiosystemsmicroamp_384_wellplate_40ul_B10", + "C10": "appliedbiosystemsmicroamp_384_wellplate_40ul_C10", + "D10": "appliedbiosystemsmicroamp_384_wellplate_40ul_D10", + "E10": "appliedbiosystemsmicroamp_384_wellplate_40ul_E10", + "F10": "appliedbiosystemsmicroamp_384_wellplate_40ul_F10", + "G10": "appliedbiosystemsmicroamp_384_wellplate_40ul_G10", + "H10": "appliedbiosystemsmicroamp_384_wellplate_40ul_H10", + "I10": "appliedbiosystemsmicroamp_384_wellplate_40ul_I10", + "J10": "appliedbiosystemsmicroamp_384_wellplate_40ul_J10", + "K10": "appliedbiosystemsmicroamp_384_wellplate_40ul_K10", + "L10": "appliedbiosystemsmicroamp_384_wellplate_40ul_L10", + "M10": "appliedbiosystemsmicroamp_384_wellplate_40ul_M10", + "N10": "appliedbiosystemsmicroamp_384_wellplate_40ul_N10", + "O10": "appliedbiosystemsmicroamp_384_wellplate_40ul_O10", + "P10": "appliedbiosystemsmicroamp_384_wellplate_40ul_P10", + "A11": "appliedbiosystemsmicroamp_384_wellplate_40ul_A11", + "B11": "appliedbiosystemsmicroamp_384_wellplate_40ul_B11", + "C11": "appliedbiosystemsmicroamp_384_wellplate_40ul_C11", + "D11": "appliedbiosystemsmicroamp_384_wellplate_40ul_D11", + "E11": "appliedbiosystemsmicroamp_384_wellplate_40ul_E11", + "F11": "appliedbiosystemsmicroamp_384_wellplate_40ul_F11", + "G11": "appliedbiosystemsmicroamp_384_wellplate_40ul_G11", + "H11": "appliedbiosystemsmicroamp_384_wellplate_40ul_H11", + "I11": "appliedbiosystemsmicroamp_384_wellplate_40ul_I11", + "J11": "appliedbiosystemsmicroamp_384_wellplate_40ul_J11", + "K11": "appliedbiosystemsmicroamp_384_wellplate_40ul_K11", + "L11": "appliedbiosystemsmicroamp_384_wellplate_40ul_L11", + "M11": "appliedbiosystemsmicroamp_384_wellplate_40ul_M11", + "N11": "appliedbiosystemsmicroamp_384_wellplate_40ul_N11", + "O11": "appliedbiosystemsmicroamp_384_wellplate_40ul_O11", + "P11": "appliedbiosystemsmicroamp_384_wellplate_40ul_P11", + "A12": "appliedbiosystemsmicroamp_384_wellplate_40ul_A12", + "B12": "appliedbiosystemsmicroamp_384_wellplate_40ul_B12", + "C12": "appliedbiosystemsmicroamp_384_wellplate_40ul_C12", + "D12": "appliedbiosystemsmicroamp_384_wellplate_40ul_D12", + "E12": "appliedbiosystemsmicroamp_384_wellplate_40ul_E12", + "F12": "appliedbiosystemsmicroamp_384_wellplate_40ul_F12", + "G12": "appliedbiosystemsmicroamp_384_wellplate_40ul_G12", + "H12": "appliedbiosystemsmicroamp_384_wellplate_40ul_H12", + "I12": "appliedbiosystemsmicroamp_384_wellplate_40ul_I12", + "J12": "appliedbiosystemsmicroamp_384_wellplate_40ul_J12", + "K12": "appliedbiosystemsmicroamp_384_wellplate_40ul_K12", + "L12": "appliedbiosystemsmicroamp_384_wellplate_40ul_L12", + "M12": "appliedbiosystemsmicroamp_384_wellplate_40ul_M12", + "N12": "appliedbiosystemsmicroamp_384_wellplate_40ul_N12", + "O12": "appliedbiosystemsmicroamp_384_wellplate_40ul_O12", + "P12": "appliedbiosystemsmicroamp_384_wellplate_40ul_P12", + "A13": "appliedbiosystemsmicroamp_384_wellplate_40ul_A13", + "B13": "appliedbiosystemsmicroamp_384_wellplate_40ul_B13", + "C13": "appliedbiosystemsmicroamp_384_wellplate_40ul_C13", + "D13": "appliedbiosystemsmicroamp_384_wellplate_40ul_D13", + "E13": "appliedbiosystemsmicroamp_384_wellplate_40ul_E13", + "F13": "appliedbiosystemsmicroamp_384_wellplate_40ul_F13", + "G13": "appliedbiosystemsmicroamp_384_wellplate_40ul_G13", + "H13": "appliedbiosystemsmicroamp_384_wellplate_40ul_H13", + "I13": "appliedbiosystemsmicroamp_384_wellplate_40ul_I13", + "J13": "appliedbiosystemsmicroamp_384_wellplate_40ul_J13", + "K13": "appliedbiosystemsmicroamp_384_wellplate_40ul_K13", + "L13": "appliedbiosystemsmicroamp_384_wellplate_40ul_L13", + "M13": "appliedbiosystemsmicroamp_384_wellplate_40ul_M13", + "N13": "appliedbiosystemsmicroamp_384_wellplate_40ul_N13", + "O13": "appliedbiosystemsmicroamp_384_wellplate_40ul_O13", + "P13": "appliedbiosystemsmicroamp_384_wellplate_40ul_P13", + "A14": "appliedbiosystemsmicroamp_384_wellplate_40ul_A14", + "B14": "appliedbiosystemsmicroamp_384_wellplate_40ul_B14", + "C14": "appliedbiosystemsmicroamp_384_wellplate_40ul_C14", + "D14": "appliedbiosystemsmicroamp_384_wellplate_40ul_D14", + "E14": "appliedbiosystemsmicroamp_384_wellplate_40ul_E14", + "F14": "appliedbiosystemsmicroamp_384_wellplate_40ul_F14", + "G14": "appliedbiosystemsmicroamp_384_wellplate_40ul_G14", + "H14": "appliedbiosystemsmicroamp_384_wellplate_40ul_H14", + "I14": "appliedbiosystemsmicroamp_384_wellplate_40ul_I14", + "J14": "appliedbiosystemsmicroamp_384_wellplate_40ul_J14", + "K14": "appliedbiosystemsmicroamp_384_wellplate_40ul_K14", + "L14": "appliedbiosystemsmicroamp_384_wellplate_40ul_L14", + "M14": "appliedbiosystemsmicroamp_384_wellplate_40ul_M14", + "N14": "appliedbiosystemsmicroamp_384_wellplate_40ul_N14", + "O14": "appliedbiosystemsmicroamp_384_wellplate_40ul_O14", + "P14": "appliedbiosystemsmicroamp_384_wellplate_40ul_P14", + "A15": "appliedbiosystemsmicroamp_384_wellplate_40ul_A15", + "B15": "appliedbiosystemsmicroamp_384_wellplate_40ul_B15", + "C15": "appliedbiosystemsmicroamp_384_wellplate_40ul_C15", + "D15": "appliedbiosystemsmicroamp_384_wellplate_40ul_D15", + "E15": "appliedbiosystemsmicroamp_384_wellplate_40ul_E15", + "F15": "appliedbiosystemsmicroamp_384_wellplate_40ul_F15", + "G15": "appliedbiosystemsmicroamp_384_wellplate_40ul_G15", + "H15": "appliedbiosystemsmicroamp_384_wellplate_40ul_H15", + "I15": "appliedbiosystemsmicroamp_384_wellplate_40ul_I15", + "J15": "appliedbiosystemsmicroamp_384_wellplate_40ul_J15", + "K15": "appliedbiosystemsmicroamp_384_wellplate_40ul_K15", + "L15": "appliedbiosystemsmicroamp_384_wellplate_40ul_L15", + "M15": "appliedbiosystemsmicroamp_384_wellplate_40ul_M15", + "N15": "appliedbiosystemsmicroamp_384_wellplate_40ul_N15", + "O15": "appliedbiosystemsmicroamp_384_wellplate_40ul_O15", + "P15": "appliedbiosystemsmicroamp_384_wellplate_40ul_P15", + "A16": "appliedbiosystemsmicroamp_384_wellplate_40ul_A16", + "B16": "appliedbiosystemsmicroamp_384_wellplate_40ul_B16", + "C16": "appliedbiosystemsmicroamp_384_wellplate_40ul_C16", + "D16": "appliedbiosystemsmicroamp_384_wellplate_40ul_D16", + "E16": "appliedbiosystemsmicroamp_384_wellplate_40ul_E16", + "F16": "appliedbiosystemsmicroamp_384_wellplate_40ul_F16", + "G16": "appliedbiosystemsmicroamp_384_wellplate_40ul_G16", + "H16": "appliedbiosystemsmicroamp_384_wellplate_40ul_H16", + "I16": "appliedbiosystemsmicroamp_384_wellplate_40ul_I16", + "J16": "appliedbiosystemsmicroamp_384_wellplate_40ul_J16", + "K16": "appliedbiosystemsmicroamp_384_wellplate_40ul_K16", + "L16": "appliedbiosystemsmicroamp_384_wellplate_40ul_L16", + "M16": "appliedbiosystemsmicroamp_384_wellplate_40ul_M16", + "N16": "appliedbiosystemsmicroamp_384_wellplate_40ul_N16", + "O16": "appliedbiosystemsmicroamp_384_wellplate_40ul_O16", + "P16": "appliedbiosystemsmicroamp_384_wellplate_40ul_P16", + "A17": "appliedbiosystemsmicroamp_384_wellplate_40ul_A17", + "B17": "appliedbiosystemsmicroamp_384_wellplate_40ul_B17", + "C17": "appliedbiosystemsmicroamp_384_wellplate_40ul_C17", + "D17": "appliedbiosystemsmicroamp_384_wellplate_40ul_D17", + "E17": "appliedbiosystemsmicroamp_384_wellplate_40ul_E17", + "F17": "appliedbiosystemsmicroamp_384_wellplate_40ul_F17", + "G17": "appliedbiosystemsmicroamp_384_wellplate_40ul_G17", + "H17": "appliedbiosystemsmicroamp_384_wellplate_40ul_H17", + "I17": "appliedbiosystemsmicroamp_384_wellplate_40ul_I17", + "J17": "appliedbiosystemsmicroamp_384_wellplate_40ul_J17", + "K17": "appliedbiosystemsmicroamp_384_wellplate_40ul_K17", + "L17": "appliedbiosystemsmicroamp_384_wellplate_40ul_L17", + "M17": "appliedbiosystemsmicroamp_384_wellplate_40ul_M17", + "N17": "appliedbiosystemsmicroamp_384_wellplate_40ul_N17", + "O17": "appliedbiosystemsmicroamp_384_wellplate_40ul_O17", + "P17": "appliedbiosystemsmicroamp_384_wellplate_40ul_P17", + "A18": "appliedbiosystemsmicroamp_384_wellplate_40ul_A18", + "B18": "appliedbiosystemsmicroamp_384_wellplate_40ul_B18", + "C18": "appliedbiosystemsmicroamp_384_wellplate_40ul_C18", + "D18": "appliedbiosystemsmicroamp_384_wellplate_40ul_D18", + "E18": "appliedbiosystemsmicroamp_384_wellplate_40ul_E18", + "F18": "appliedbiosystemsmicroamp_384_wellplate_40ul_F18", + "G18": "appliedbiosystemsmicroamp_384_wellplate_40ul_G18", + "H18": "appliedbiosystemsmicroamp_384_wellplate_40ul_H18", + "I18": "appliedbiosystemsmicroamp_384_wellplate_40ul_I18", + "J18": "appliedbiosystemsmicroamp_384_wellplate_40ul_J18", + "K18": "appliedbiosystemsmicroamp_384_wellplate_40ul_K18", + "L18": "appliedbiosystemsmicroamp_384_wellplate_40ul_L18", + "M18": "appliedbiosystemsmicroamp_384_wellplate_40ul_M18", + "N18": "appliedbiosystemsmicroamp_384_wellplate_40ul_N18", + "O18": "appliedbiosystemsmicroamp_384_wellplate_40ul_O18", + "P18": "appliedbiosystemsmicroamp_384_wellplate_40ul_P18", + "A19": "appliedbiosystemsmicroamp_384_wellplate_40ul_A19", + "B19": "appliedbiosystemsmicroamp_384_wellplate_40ul_B19", + "C19": "appliedbiosystemsmicroamp_384_wellplate_40ul_C19", + "D19": "appliedbiosystemsmicroamp_384_wellplate_40ul_D19", + "E19": "appliedbiosystemsmicroamp_384_wellplate_40ul_E19", + "F19": "appliedbiosystemsmicroamp_384_wellplate_40ul_F19", + "G19": "appliedbiosystemsmicroamp_384_wellplate_40ul_G19", + "H19": "appliedbiosystemsmicroamp_384_wellplate_40ul_H19", + "I19": "appliedbiosystemsmicroamp_384_wellplate_40ul_I19", + "J19": "appliedbiosystemsmicroamp_384_wellplate_40ul_J19", + "K19": "appliedbiosystemsmicroamp_384_wellplate_40ul_K19", + "L19": "appliedbiosystemsmicroamp_384_wellplate_40ul_L19", + "M19": "appliedbiosystemsmicroamp_384_wellplate_40ul_M19", + "N19": "appliedbiosystemsmicroamp_384_wellplate_40ul_N19", + "O19": "appliedbiosystemsmicroamp_384_wellplate_40ul_O19", + "P19": "appliedbiosystemsmicroamp_384_wellplate_40ul_P19", + "A20": "appliedbiosystemsmicroamp_384_wellplate_40ul_A20", + "B20": "appliedbiosystemsmicroamp_384_wellplate_40ul_B20", + "C20": "appliedbiosystemsmicroamp_384_wellplate_40ul_C20", + "D20": "appliedbiosystemsmicroamp_384_wellplate_40ul_D20", + "E20": "appliedbiosystemsmicroamp_384_wellplate_40ul_E20", + "F20": "appliedbiosystemsmicroamp_384_wellplate_40ul_F20", + "G20": "appliedbiosystemsmicroamp_384_wellplate_40ul_G20", + "H20": "appliedbiosystemsmicroamp_384_wellplate_40ul_H20", + "I20": "appliedbiosystemsmicroamp_384_wellplate_40ul_I20", + "J20": "appliedbiosystemsmicroamp_384_wellplate_40ul_J20", + "K20": "appliedbiosystemsmicroamp_384_wellplate_40ul_K20", + "L20": "appliedbiosystemsmicroamp_384_wellplate_40ul_L20", + "M20": "appliedbiosystemsmicroamp_384_wellplate_40ul_M20", + "N20": "appliedbiosystemsmicroamp_384_wellplate_40ul_N20", + "O20": "appliedbiosystemsmicroamp_384_wellplate_40ul_O20", + "P20": "appliedbiosystemsmicroamp_384_wellplate_40ul_P20", + "A21": "appliedbiosystemsmicroamp_384_wellplate_40ul_A21", + "B21": "appliedbiosystemsmicroamp_384_wellplate_40ul_B21", + "C21": "appliedbiosystemsmicroamp_384_wellplate_40ul_C21", + "D21": "appliedbiosystemsmicroamp_384_wellplate_40ul_D21", + "E21": "appliedbiosystemsmicroamp_384_wellplate_40ul_E21", + "F21": "appliedbiosystemsmicroamp_384_wellplate_40ul_F21", + "G21": "appliedbiosystemsmicroamp_384_wellplate_40ul_G21", + "H21": "appliedbiosystemsmicroamp_384_wellplate_40ul_H21", + "I21": "appliedbiosystemsmicroamp_384_wellplate_40ul_I21", + "J21": "appliedbiosystemsmicroamp_384_wellplate_40ul_J21", + "K21": "appliedbiosystemsmicroamp_384_wellplate_40ul_K21", + "L21": "appliedbiosystemsmicroamp_384_wellplate_40ul_L21", + "M21": "appliedbiosystemsmicroamp_384_wellplate_40ul_M21", + "N21": "appliedbiosystemsmicroamp_384_wellplate_40ul_N21", + "O21": "appliedbiosystemsmicroamp_384_wellplate_40ul_O21", + "P21": "appliedbiosystemsmicroamp_384_wellplate_40ul_P21", + "A22": "appliedbiosystemsmicroamp_384_wellplate_40ul_A22", + "B22": "appliedbiosystemsmicroamp_384_wellplate_40ul_B22", + "C22": "appliedbiosystemsmicroamp_384_wellplate_40ul_C22", + "D22": "appliedbiosystemsmicroamp_384_wellplate_40ul_D22", + "E22": "appliedbiosystemsmicroamp_384_wellplate_40ul_E22", + "F22": "appliedbiosystemsmicroamp_384_wellplate_40ul_F22", + "G22": "appliedbiosystemsmicroamp_384_wellplate_40ul_G22", + "H22": "appliedbiosystemsmicroamp_384_wellplate_40ul_H22", + "I22": "appliedbiosystemsmicroamp_384_wellplate_40ul_I22", + "J22": "appliedbiosystemsmicroamp_384_wellplate_40ul_J22", + "K22": "appliedbiosystemsmicroamp_384_wellplate_40ul_K22", + "L22": "appliedbiosystemsmicroamp_384_wellplate_40ul_L22", + "M22": "appliedbiosystemsmicroamp_384_wellplate_40ul_M22", + "N22": "appliedbiosystemsmicroamp_384_wellplate_40ul_N22", + "O22": "appliedbiosystemsmicroamp_384_wellplate_40ul_O22", + "P22": "appliedbiosystemsmicroamp_384_wellplate_40ul_P22", + "A23": "appliedbiosystemsmicroamp_384_wellplate_40ul_A23", + "B23": "appliedbiosystemsmicroamp_384_wellplate_40ul_B23", + "C23": "appliedbiosystemsmicroamp_384_wellplate_40ul_C23", + "D23": "appliedbiosystemsmicroamp_384_wellplate_40ul_D23", + "E23": "appliedbiosystemsmicroamp_384_wellplate_40ul_E23", + "F23": "appliedbiosystemsmicroamp_384_wellplate_40ul_F23", + "G23": "appliedbiosystemsmicroamp_384_wellplate_40ul_G23", + "H23": "appliedbiosystemsmicroamp_384_wellplate_40ul_H23", + "I23": "appliedbiosystemsmicroamp_384_wellplate_40ul_I23", + "J23": "appliedbiosystemsmicroamp_384_wellplate_40ul_J23", + "K23": "appliedbiosystemsmicroamp_384_wellplate_40ul_K23", + "L23": "appliedbiosystemsmicroamp_384_wellplate_40ul_L23", + "M23": "appliedbiosystemsmicroamp_384_wellplate_40ul_M23", + "N23": "appliedbiosystemsmicroamp_384_wellplate_40ul_N23", + "O23": "appliedbiosystemsmicroamp_384_wellplate_40ul_O23", + "P23": "appliedbiosystemsmicroamp_384_wellplate_40ul_P23", + "A24": "appliedbiosystemsmicroamp_384_wellplate_40ul_A24", + "B24": "appliedbiosystemsmicroamp_384_wellplate_40ul_B24", + "C24": "appliedbiosystemsmicroamp_384_wellplate_40ul_C24", + "D24": "appliedbiosystemsmicroamp_384_wellplate_40ul_D24", + "E24": "appliedbiosystemsmicroamp_384_wellplate_40ul_E24", + "F24": "appliedbiosystemsmicroamp_384_wellplate_40ul_F24", + "G24": "appliedbiosystemsmicroamp_384_wellplate_40ul_G24", + "H24": "appliedbiosystemsmicroamp_384_wellplate_40ul_H24", + "I24": "appliedbiosystemsmicroamp_384_wellplate_40ul_I24", + "J24": "appliedbiosystemsmicroamp_384_wellplate_40ul_J24", + "K24": "appliedbiosystemsmicroamp_384_wellplate_40ul_K24", + "L24": "appliedbiosystemsmicroamp_384_wellplate_40ul_L24", + "M24": "appliedbiosystemsmicroamp_384_wellplate_40ul_M24", + "N24": "appliedbiosystemsmicroamp_384_wellplate_40ul_N24", + "O24": "appliedbiosystemsmicroamp_384_wellplate_40ul_O24", + "P24": "appliedbiosystemsmicroamp_384_wellplate_40ul_P24" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_A1", + "uuid": "abcac2f1-dec7-4004-878a-bfc184f50ade", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.029, + "y": 75.379, + "z": 0.61 + }, + "position3d": { + "x": 11.029, + "y": 75.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A1_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.029, + "y": 75.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_B1", + "uuid": "87043a28-8f25-485a-916e-31cee8ead685", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_B1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.029, + "y": 70.879, + "z": 0.61 + }, + "position3d": { + "x": 11.029, + "y": 70.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B1_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.029, + "y": 70.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_C1", + "uuid": "2b2bc20e-db3c-452d-9e51-4d49704a7d18", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_C1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.029, + "y": 66.379, + "z": 0.61 + }, + "position3d": { + "x": 11.029, + "y": 66.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C1_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.029, + "y": 66.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_D1", + "uuid": "f14f9b85-8165-4a44-8889-d54944e77522", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_D1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.029, + "y": 61.879, + "z": 0.61 + }, + "position3d": { + "x": 11.029, + "y": 61.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D1_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.029, + "y": 61.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_E1", + "uuid": "89ceeee9-fa4d-4dcc-8f14-571ef7fcfe33", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_E1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.029, + "y": 57.379, + "z": 0.61 + }, + "position3d": { + "x": 11.029, + "y": 57.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E1_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.029, + "y": 57.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_F1", + "uuid": "8cc197e0-a2c4-4e8b-b5bd-3e34b1e3a0ae", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_F1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.029, + "y": 52.879, + "z": 0.61 + }, + "position3d": { + "x": 11.029, + "y": 52.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F1_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.029, + "y": 52.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_G1", + "uuid": "877afcac-1bd9-4ed9-9180-180b97faef07", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_G1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.029, + "y": 48.379, + "z": 0.61 + }, + "position3d": { + "x": 11.029, + "y": 48.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G1_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.029, + "y": 48.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_H1", + "uuid": "b895006a-fa81-4e20-b0e3-41a871b68c51", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_H1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.029, + "y": 43.879, + "z": 0.61 + }, + "position3d": { + "x": 11.029, + "y": 43.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H1_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.029, + "y": 43.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_I1", + "uuid": "de01a992-71bb-4aa2-aedf-4ebdc7b7ee6a", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_I1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.029, + "y": 39.379, + "z": 0.61 + }, + "position3d": { + "x": 11.029, + "y": 39.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "I1_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.029, + "y": 39.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_J1", + "uuid": "e1858c99-3ebf-4716-9ec8-d270168a6250", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_J1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.029, + "y": 34.879, + "z": 0.61 + }, + "position3d": { + "x": 11.029, + "y": 34.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "J1_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.029, + "y": 34.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_K1", + "uuid": "889538a2-b403-4a75-9f30-12d845ce193d", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_K1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.029, + "y": 30.379, + "z": 0.61 + }, + "position3d": { + "x": 11.029, + "y": 30.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "K1_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.029, + "y": 30.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_L1", + "uuid": "c5e66327-80d6-455d-aa4f-53a29254d336", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_L1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.029, + "y": 25.879, + "z": 0.61 + }, + "position3d": { + "x": 11.029, + "y": 25.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "L1_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.029, + "y": 25.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_M1", + "uuid": "5c27005b-37aa-47dc-ac00-333fa0a5f396", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_M1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.029, + "y": 21.379, + "z": 0.61 + }, + "position3d": { + "x": 11.029, + "y": 21.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "M1_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.029, + "y": 21.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_N1", + "uuid": "82903819-9f6b-43d0-9781-213df6a7b3ec", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_N1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.029, + "y": 16.879, + "z": 0.61 + }, + "position3d": { + "x": 11.029, + "y": 16.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "N1_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.029, + "y": 16.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_O1", + "uuid": "34ab1af0-6d7c-456c-b34b-6c91d67b5482", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_O1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.029, + "y": 12.379, + "z": 0.61 + }, + "position3d": { + "x": 11.029, + "y": 12.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "O1_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.029, + "y": 12.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_P1", + "uuid": "424d7d46-5290-44c3-987e-529bfe7c095a", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_P1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.029, + "y": 7.879, + "z": 0.61 + }, + "position3d": { + "x": 11.029, + "y": 7.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "P1_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.029, + "y": 7.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_A2", + "uuid": "c4777d88-e08d-4b58-ba27-2d12ab52147f", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 15.529, + "y": 75.379, + "z": 0.61 + }, + "position3d": { + "x": 15.529, + "y": 75.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A2_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 15.529, + "y": 75.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_B2", + "uuid": "5b8c001a-aadf-49ca-a6dc-dd0df542a7c7", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_B2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 15.529, + "y": 70.879, + "z": 0.61 + }, + "position3d": { + "x": 15.529, + "y": 70.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B2_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 15.529, + "y": 70.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_C2", + "uuid": "355381dd-f6f4-46b2-a801-a12bed98040a", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_C2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 15.529, + "y": 66.379, + "z": 0.61 + }, + "position3d": { + "x": 15.529, + "y": 66.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C2_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 15.529, + "y": 66.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_D2", + "uuid": "e53883db-53fe-4233-922c-84628d59f4cd", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_D2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 15.529, + "y": 61.879, + "z": 0.61 + }, + "position3d": { + "x": 15.529, + "y": 61.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D2_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 15.529, + "y": 61.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_E2", + "uuid": "e46eaf19-56a5-4ffe-abe8-629b0c634a5b", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_E2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 15.529, + "y": 57.379, + "z": 0.61 + }, + "position3d": { + "x": 15.529, + "y": 57.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E2_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 15.529, + "y": 57.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_F2", + "uuid": "486172a0-9afe-4ab1-9d0d-8c0d222ff39e", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_F2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 15.529, + "y": 52.879, + "z": 0.61 + }, + "position3d": { + "x": 15.529, + "y": 52.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F2_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 15.529, + "y": 52.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_G2", + "uuid": "e60e536f-7163-43f0-a556-10a4f0a2f2d8", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_G2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 15.529, + "y": 48.379, + "z": 0.61 + }, + "position3d": { + "x": 15.529, + "y": 48.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G2_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 15.529, + "y": 48.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_H2", + "uuid": "10ca2e04-d0c6-42ad-b451-5cb3f0161844", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_H2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 15.529, + "y": 43.879, + "z": 0.61 + }, + "position3d": { + "x": 15.529, + "y": 43.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H2_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 15.529, + "y": 43.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_I2", + "uuid": "880ed85d-7e96-4308-b092-03a275d8a39f", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_I2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 15.529, + "y": 39.379, + "z": 0.61 + }, + "position3d": { + "x": 15.529, + "y": 39.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "I2_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 15.529, + "y": 39.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_J2", + "uuid": "996ad379-f7e1-4286-88ed-a41dc6548071", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_J2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 15.529, + "y": 34.879, + "z": 0.61 + }, + "position3d": { + "x": 15.529, + "y": 34.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "J2_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 15.529, + "y": 34.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_K2", + "uuid": "23f9479e-ada0-4e51-a455-9b0a2a20b567", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_K2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 15.529, + "y": 30.379, + "z": 0.61 + }, + "position3d": { + "x": 15.529, + "y": 30.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "K2_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 15.529, + "y": 30.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_L2", + "uuid": "26a5c931-9c67-4893-b61b-a7243430b688", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_L2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 15.529, + "y": 25.879, + "z": 0.61 + }, + "position3d": { + "x": 15.529, + "y": 25.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "L2_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 15.529, + "y": 25.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_M2", + "uuid": "a11b5b43-bab6-46c6-8ee6-f63431cc06b8", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_M2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 15.529, + "y": 21.379, + "z": 0.61 + }, + "position3d": { + "x": 15.529, + "y": 21.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "M2_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 15.529, + "y": 21.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_N2", + "uuid": "1720a4d9-d2d2-408b-a49b-3401d08e026d", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_N2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 15.529, + "y": 16.879, + "z": 0.61 + }, + "position3d": { + "x": 15.529, + "y": 16.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "N2_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 15.529, + "y": 16.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_O2", + "uuid": "b79bd505-e8bd-45ae-aea2-b9402af8a9fb", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_O2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 15.529, + "y": 12.379, + "z": 0.61 + }, + "position3d": { + "x": 15.529, + "y": 12.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "O2_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 15.529, + "y": 12.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_P2", + "uuid": "8a7a22e9-7503-491e-889e-c96d4babb058", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_P2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 15.529, + "y": 7.879, + "z": 0.61 + }, + "position3d": { + "x": 15.529, + "y": 7.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "P2_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 15.529, + "y": 7.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_A3", + "uuid": "5f9d4850-8569-4196-bd08-f7c0095cc231", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.029, + "y": 75.379, + "z": 0.61 + }, + "position3d": { + "x": 20.029, + "y": 75.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A3_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.029, + "y": 75.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_B3", + "uuid": "098bf5c4-0617-4244-ac32-44ad4dd17d61", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_B3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.029, + "y": 70.879, + "z": 0.61 + }, + "position3d": { + "x": 20.029, + "y": 70.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B3_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.029, + "y": 70.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_C3", + "uuid": "b68a32de-8951-4bad-be2c-afd6efc94618", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_C3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.029, + "y": 66.379, + "z": 0.61 + }, + "position3d": { + "x": 20.029, + "y": 66.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C3_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.029, + "y": 66.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_D3", + "uuid": "ee3f3587-6a3a-489e-955a-bfda8633d8b0", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_D3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.029, + "y": 61.879, + "z": 0.61 + }, + "position3d": { + "x": 20.029, + "y": 61.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D3_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.029, + "y": 61.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_E3", + "uuid": "2fa73e4f-38bd-4b54-86a3-a3ad69114b5e", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_E3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.029, + "y": 57.379, + "z": 0.61 + }, + "position3d": { + "x": 20.029, + "y": 57.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E3_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.029, + "y": 57.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_F3", + "uuid": "b7995058-cfa8-49df-a8ca-49207a93d011", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_F3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.029, + "y": 52.879, + "z": 0.61 + }, + "position3d": { + "x": 20.029, + "y": 52.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F3_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.029, + "y": 52.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_G3", + "uuid": "3092d598-3a03-46f8-a04a-a1f48c07bd7e", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_G3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.029, + "y": 48.379, + "z": 0.61 + }, + "position3d": { + "x": 20.029, + "y": 48.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G3_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.029, + "y": 48.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_H3", + "uuid": "96417dad-5062-454b-aa6b-d60f1a01b150", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_H3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.029, + "y": 43.879, + "z": 0.61 + }, + "position3d": { + "x": 20.029, + "y": 43.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H3_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.029, + "y": 43.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_I3", + "uuid": "42d6cdae-67f1-460d-abc1-b8507bc119db", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_I3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.029, + "y": 39.379, + "z": 0.61 + }, + "position3d": { + "x": 20.029, + "y": 39.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "I3_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.029, + "y": 39.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_J3", + "uuid": "a9439c8c-a105-4309-b292-76709d5de1e8", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_J3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.029, + "y": 34.879, + "z": 0.61 + }, + "position3d": { + "x": 20.029, + "y": 34.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "J3_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.029, + "y": 34.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_K3", + "uuid": "593f72cc-3e00-4557-b9d2-844654633461", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_K3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.029, + "y": 30.379, + "z": 0.61 + }, + "position3d": { + "x": 20.029, + "y": 30.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "K3_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.029, + "y": 30.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_L3", + "uuid": "c0d77ad4-4d96-473f-9fa9-ba9456d9f345", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_L3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.029, + "y": 25.879, + "z": 0.61 + }, + "position3d": { + "x": 20.029, + "y": 25.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "L3_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.029, + "y": 25.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_M3", + "uuid": "5a911537-507b-4c27-a76b-f43c74b40c07", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_M3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.029, + "y": 21.379, + "z": 0.61 + }, + "position3d": { + "x": 20.029, + "y": 21.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "M3_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.029, + "y": 21.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_N3", + "uuid": "3fd48f44-b892-4b73-817e-f5bffdca3fee", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_N3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.029, + "y": 16.879, + "z": 0.61 + }, + "position3d": { + "x": 20.029, + "y": 16.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "N3_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.029, + "y": 16.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_O3", + "uuid": "ff77695c-97b8-4523-be70-e60386d7a392", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_O3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.029, + "y": 12.379, + "z": 0.61 + }, + "position3d": { + "x": 20.029, + "y": 12.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "O3_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.029, + "y": 12.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_P3", + "uuid": "9f2ba22f-2df2-42bc-8f21-8cdb85542895", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_P3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.029, + "y": 7.879, + "z": 0.61 + }, + "position3d": { + "x": 20.029, + "y": 7.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "P3_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.029, + "y": 7.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_A4", + "uuid": "c09aea3b-d7e3-4e7f-94c4-c26c7c591451", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_A4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 24.529, + "y": 75.379, + "z": 0.61 + }, + "position3d": { + "x": 24.529, + "y": 75.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A4_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 24.529, + "y": 75.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_B4", + "uuid": "7982ed9e-7d53-4acd-af53-84116d9bb383", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_B4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 24.529, + "y": 70.879, + "z": 0.61 + }, + "position3d": { + "x": 24.529, + "y": 70.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B4_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 24.529, + "y": 70.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_C4", + "uuid": "1326113c-003a-4a21-9cf0-d11bc4a2856a", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_C4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 24.529, + "y": 66.379, + "z": 0.61 + }, + "position3d": { + "x": 24.529, + "y": 66.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C4_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 24.529, + "y": 66.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_D4", + "uuid": "b3578404-e7e1-483f-bce8-982c851ed10a", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_D4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 24.529, + "y": 61.879, + "z": 0.61 + }, + "position3d": { + "x": 24.529, + "y": 61.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D4_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 24.529, + "y": 61.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_E4", + "uuid": "a2c1ec27-66ec-4da1-be70-a583f4c5749e", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_E4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 24.529, + "y": 57.379, + "z": 0.61 + }, + "position3d": { + "x": 24.529, + "y": 57.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E4_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 24.529, + "y": 57.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_F4", + "uuid": "4f6b73e8-1e1e-4dd8-92a3-bcddadd623f0", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_F4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 24.529, + "y": 52.879, + "z": 0.61 + }, + "position3d": { + "x": 24.529, + "y": 52.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F4_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 24.529, + "y": 52.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_G4", + "uuid": "80e4c2ca-e3b5-4fe6-9f0e-6e6fffe56507", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_G4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 24.529, + "y": 48.379, + "z": 0.61 + }, + "position3d": { + "x": 24.529, + "y": 48.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G4_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 24.529, + "y": 48.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_H4", + "uuid": "533e0abd-c10b-4ff2-b3cc-42d4c1c4f29a", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_H4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 24.529, + "y": 43.879, + "z": 0.61 + }, + "position3d": { + "x": 24.529, + "y": 43.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H4_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 24.529, + "y": 43.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_I4", + "uuid": "01cd00f5-16c6-469c-b598-251504bb736c", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_I4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 24.529, + "y": 39.379, + "z": 0.61 + }, + "position3d": { + "x": 24.529, + "y": 39.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "I4_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 24.529, + "y": 39.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_J4", + "uuid": "d23ac0e6-a84b-448a-9238-18b24868148d", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_J4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 24.529, + "y": 34.879, + "z": 0.61 + }, + "position3d": { + "x": 24.529, + "y": 34.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "J4_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 24.529, + "y": 34.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_K4", + "uuid": "1ad6f6c7-0331-4d24-9f7a-204515b24d9e", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_K4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 24.529, + "y": 30.379, + "z": 0.61 + }, + "position3d": { + "x": 24.529, + "y": 30.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "K4_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 24.529, + "y": 30.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_L4", + "uuid": "b7a1bfa8-cab2-45a5-80ba-a8a49abb1d28", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_L4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 24.529, + "y": 25.879, + "z": 0.61 + }, + "position3d": { + "x": 24.529, + "y": 25.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "L4_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 24.529, + "y": 25.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_M4", + "uuid": "26296fe0-c827-43be-ab42-ba38de092f74", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_M4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 24.529, + "y": 21.379, + "z": 0.61 + }, + "position3d": { + "x": 24.529, + "y": 21.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "M4_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 24.529, + "y": 21.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_N4", + "uuid": "32835d63-fd46-4754-9b41-e6f52d4a2f52", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_N4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 24.529, + "y": 16.879, + "z": 0.61 + }, + "position3d": { + "x": 24.529, + "y": 16.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "N4_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 24.529, + "y": 16.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_O4", + "uuid": "dd0bfea6-9d38-4bbb-921b-ff4b4242780b", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_O4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 24.529, + "y": 12.379, + "z": 0.61 + }, + "position3d": { + "x": 24.529, + "y": 12.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "O4_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 24.529, + "y": 12.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_P4", + "uuid": "c12a6a48-279d-4593-b3f3-8b4742f15c52", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_P4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 24.529, + "y": 7.879, + "z": 0.61 + }, + "position3d": { + "x": 24.529, + "y": 7.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "P4_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 24.529, + "y": 7.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_A5", + "uuid": "429ebe39-90c3-4f47-8b6a-67e3f33b0afa", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_A5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.029, + "y": 75.379, + "z": 0.61 + }, + "position3d": { + "x": 29.029, + "y": 75.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A5_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.029, + "y": 75.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_B5", + "uuid": "a1fe13dc-a3d1-4eef-af87-9dbee014c2bf", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_B5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.029, + "y": 70.879, + "z": 0.61 + }, + "position3d": { + "x": 29.029, + "y": 70.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B5_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.029, + "y": 70.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_C5", + "uuid": "0f124d9a-ed08-4727-9ff0-dfdac8cee51f", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_C5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.029, + "y": 66.379, + "z": 0.61 + }, + "position3d": { + "x": 29.029, + "y": 66.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C5_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.029, + "y": 66.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_D5", + "uuid": "6ad45fe4-5604-40a8-839e-ecd7b17d166f", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_D5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.029, + "y": 61.879, + "z": 0.61 + }, + "position3d": { + "x": 29.029, + "y": 61.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D5_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.029, + "y": 61.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_E5", + "uuid": "e128ac56-4b17-4d92-b53b-1dfd575ace89", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_E5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.029, + "y": 57.379, + "z": 0.61 + }, + "position3d": { + "x": 29.029, + "y": 57.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E5_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.029, + "y": 57.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_F5", + "uuid": "448277e8-42a9-4a47-b28a-b09156089cc4", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_F5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.029, + "y": 52.879, + "z": 0.61 + }, + "position3d": { + "x": 29.029, + "y": 52.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F5_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.029, + "y": 52.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_G5", + "uuid": "6f29110c-9362-4fa5-8c83-d96b6eda54d4", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_G5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.029, + "y": 48.379, + "z": 0.61 + }, + "position3d": { + "x": 29.029, + "y": 48.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G5_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.029, + "y": 48.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_H5", + "uuid": "20667755-ab77-42d3-8113-09338517f526", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_H5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.029, + "y": 43.879, + "z": 0.61 + }, + "position3d": { + "x": 29.029, + "y": 43.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H5_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.029, + "y": 43.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_I5", + "uuid": "5f835c2d-f525-4811-8d84-1d1eb8640c41", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_I5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.029, + "y": 39.379, + "z": 0.61 + }, + "position3d": { + "x": 29.029, + "y": 39.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "I5_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.029, + "y": 39.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_J5", + "uuid": "95bc6ade-9d3c-499d-91ed-2ae7b0bc08a4", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_J5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.029, + "y": 34.879, + "z": 0.61 + }, + "position3d": { + "x": 29.029, + "y": 34.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "J5_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.029, + "y": 34.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_K5", + "uuid": "5bf79d4b-76a7-406a-9386-45a98a2822ee", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_K5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.029, + "y": 30.379, + "z": 0.61 + }, + "position3d": { + "x": 29.029, + "y": 30.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "K5_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.029, + "y": 30.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_L5", + "uuid": "19a5aa58-51fb-49e5-ab96-803593b128f7", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_L5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.029, + "y": 25.879, + "z": 0.61 + }, + "position3d": { + "x": 29.029, + "y": 25.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "L5_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.029, + "y": 25.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_M5", + "uuid": "275d3261-8ee8-4090-a6a2-2a207546a972", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_M5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.029, + "y": 21.379, + "z": 0.61 + }, + "position3d": { + "x": 29.029, + "y": 21.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "M5_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.029, + "y": 21.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_N5", + "uuid": "b0865107-de79-45a6-b5af-6e17894b8acf", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_N5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.029, + "y": 16.879, + "z": 0.61 + }, + "position3d": { + "x": 29.029, + "y": 16.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "N5_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.029, + "y": 16.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_O5", + "uuid": "abfe0d2a-4b3f-4c4a-b509-ae64db938d20", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_O5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.029, + "y": 12.379, + "z": 0.61 + }, + "position3d": { + "x": 29.029, + "y": 12.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "O5_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.029, + "y": 12.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_P5", + "uuid": "6e7a6506-14ef-4e3c-9ab0-ba67ac5ba027", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_P5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.029, + "y": 7.879, + "z": 0.61 + }, + "position3d": { + "x": 29.029, + "y": 7.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "P5_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.029, + "y": 7.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_A6", + "uuid": "f3fde90a-5de3-4224-8a88-d79b19c543c9", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_A6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 33.529, + "y": 75.379, + "z": 0.61 + }, + "position3d": { + "x": 33.529, + "y": 75.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A6_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 33.529, + "y": 75.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_B6", + "uuid": "cc94dfdc-688d-4e20-83b1-480c998c76e9", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_B6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 33.529, + "y": 70.879, + "z": 0.61 + }, + "position3d": { + "x": 33.529, + "y": 70.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B6_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 33.529, + "y": 70.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_C6", + "uuid": "c2718e1a-8e03-46ae-8100-fdcd10aa83fd", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_C6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 33.529, + "y": 66.379, + "z": 0.61 + }, + "position3d": { + "x": 33.529, + "y": 66.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C6_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 33.529, + "y": 66.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_D6", + "uuid": "3ba1c942-4b69-437e-9317-9ff7bc994f52", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_D6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 33.529, + "y": 61.879, + "z": 0.61 + }, + "position3d": { + "x": 33.529, + "y": 61.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D6_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 33.529, + "y": 61.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_E6", + "uuid": "9108f60c-348b-43df-a764-20cdd58c1217", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_E6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 33.529, + "y": 57.379, + "z": 0.61 + }, + "position3d": { + "x": 33.529, + "y": 57.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E6_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 33.529, + "y": 57.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_F6", + "uuid": "6281dbf0-d92c-4e46-a135-6d3bf61772bb", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_F6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 33.529, + "y": 52.879, + "z": 0.61 + }, + "position3d": { + "x": 33.529, + "y": 52.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F6_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 33.529, + "y": 52.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_G6", + "uuid": "3cf3a2de-60a3-45bc-98fd-65c35c8263c1", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_G6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 33.529, + "y": 48.379, + "z": 0.61 + }, + "position3d": { + "x": 33.529, + "y": 48.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G6_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 33.529, + "y": 48.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_H6", + "uuid": "ad516445-d048-476b-b962-f2580d25a653", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_H6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 33.529, + "y": 43.879, + "z": 0.61 + }, + "position3d": { + "x": 33.529, + "y": 43.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H6_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 33.529, + "y": 43.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_I6", + "uuid": "194440c2-e792-47f8-94eb-4cbca0adaaa0", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_I6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 33.529, + "y": 39.379, + "z": 0.61 + }, + "position3d": { + "x": 33.529, + "y": 39.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "I6_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 33.529, + "y": 39.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_J6", + "uuid": "2e2b201a-ad60-4b69-829d-fd284c9610e1", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_J6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 33.529, + "y": 34.879, + "z": 0.61 + }, + "position3d": { + "x": 33.529, + "y": 34.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "J6_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 33.529, + "y": 34.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_K6", + "uuid": "09a983b5-1c4c-4d29-bbcd-abcc8190c461", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_K6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 33.529, + "y": 30.379, + "z": 0.61 + }, + "position3d": { + "x": 33.529, + "y": 30.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "K6_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 33.529, + "y": 30.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_L6", + "uuid": "32befa74-e877-45cc-9cef-6d859de274c7", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_L6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 33.529, + "y": 25.879, + "z": 0.61 + }, + "position3d": { + "x": 33.529, + "y": 25.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "L6_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 33.529, + "y": 25.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_M6", + "uuid": "262e2d4d-996c-40c3-a833-802322257377", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_M6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 33.529, + "y": 21.379, + "z": 0.61 + }, + "position3d": { + "x": 33.529, + "y": 21.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "M6_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 33.529, + "y": 21.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_N6", + "uuid": "fdfcd138-b3a2-4446-b794-a2e87f6e42d3", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_N6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 33.529, + "y": 16.879, + "z": 0.61 + }, + "position3d": { + "x": 33.529, + "y": 16.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "N6_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 33.529, + "y": 16.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_O6", + "uuid": "be923940-3ad3-41d9-8ffc-043fadf347bb", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_O6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 33.529, + "y": 12.379, + "z": 0.61 + }, + "position3d": { + "x": 33.529, + "y": 12.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "O6_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 33.529, + "y": 12.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_P6", + "uuid": "c8b6dc3a-955b-4dbc-b239-00992f876c1a", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_P6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 33.529, + "y": 7.879, + "z": 0.61 + }, + "position3d": { + "x": 33.529, + "y": 7.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "P6_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 33.529, + "y": 7.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_A7", + "uuid": "0157c7ce-7b5f-480a-be61-584c2c8bad76", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_A7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.029, + "y": 75.379, + "z": 0.61 + }, + "position3d": { + "x": 38.029, + "y": 75.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A7_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.029, + "y": 75.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_B7", + "uuid": "1bab848a-6d3a-44cb-9665-96bbdf707953", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_B7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.029, + "y": 70.879, + "z": 0.61 + }, + "position3d": { + "x": 38.029, + "y": 70.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B7_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.029, + "y": 70.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_C7", + "uuid": "cd302849-cab7-421e-a537-1e50dc5bc46b", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_C7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.029, + "y": 66.379, + "z": 0.61 + }, + "position3d": { + "x": 38.029, + "y": 66.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C7_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.029, + "y": 66.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_D7", + "uuid": "dcff8d1b-da27-40fc-823d-7753e26a7416", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_D7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.029, + "y": 61.879, + "z": 0.61 + }, + "position3d": { + "x": 38.029, + "y": 61.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D7_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.029, + "y": 61.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_E7", + "uuid": "50b94aac-35d1-4e59-981f-051c1eb8d404", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_E7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.029, + "y": 57.379, + "z": 0.61 + }, + "position3d": { + "x": 38.029, + "y": 57.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E7_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.029, + "y": 57.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_F7", + "uuid": "0aa586ba-02fd-43f7-9abd-d5d354199b87", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_F7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.029, + "y": 52.879, + "z": 0.61 + }, + "position3d": { + "x": 38.029, + "y": 52.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F7_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.029, + "y": 52.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_G7", + "uuid": "61df667f-ae0b-443a-8e6a-118ff6d5c885", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_G7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.029, + "y": 48.379, + "z": 0.61 + }, + "position3d": { + "x": 38.029, + "y": 48.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G7_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.029, + "y": 48.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_H7", + "uuid": "513cdb28-a12e-41b9-9147-3d3914d845f2", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_H7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.029, + "y": 43.879, + "z": 0.61 + }, + "position3d": { + "x": 38.029, + "y": 43.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H7_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.029, + "y": 43.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_I7", + "uuid": "ca70f7d0-fefe-4fa7-b7c6-3522649367cf", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_I7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.029, + "y": 39.379, + "z": 0.61 + }, + "position3d": { + "x": 38.029, + "y": 39.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "I7_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.029, + "y": 39.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_J7", + "uuid": "ce2379b4-b4e1-4ac3-9e31-28e9632db146", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_J7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.029, + "y": 34.879, + "z": 0.61 + }, + "position3d": { + "x": 38.029, + "y": 34.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "J7_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.029, + "y": 34.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_K7", + "uuid": "23a1fef7-8a81-434e-a07e-53178cdb3d0b", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_K7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.029, + "y": 30.379, + "z": 0.61 + }, + "position3d": { + "x": 38.029, + "y": 30.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "K7_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.029, + "y": 30.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_L7", + "uuid": "09c2533c-f84c-4751-8a67-b178883ba896", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_L7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.029, + "y": 25.879, + "z": 0.61 + }, + "position3d": { + "x": 38.029, + "y": 25.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "L7_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.029, + "y": 25.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_M7", + "uuid": "097b722b-bf66-4564-89d1-a5b4bdf65137", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_M7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.029, + "y": 21.379, + "z": 0.61 + }, + "position3d": { + "x": 38.029, + "y": 21.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "M7_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.029, + "y": 21.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_N7", + "uuid": "20ff145b-221e-4596-b47f-58952ba5df21", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_N7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.029, + "y": 16.879, + "z": 0.61 + }, + "position3d": { + "x": 38.029, + "y": 16.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "N7_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.029, + "y": 16.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_O7", + "uuid": "665ab289-d9b4-4713-bada-8fe43a3280f4", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_O7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.029, + "y": 12.379, + "z": 0.61 + }, + "position3d": { + "x": 38.029, + "y": 12.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "O7_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.029, + "y": 12.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_P7", + "uuid": "df9b7f21-fe07-4578-b4c1-c0d74e8413db", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_P7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.029, + "y": 7.879, + "z": 0.61 + }, + "position3d": { + "x": 38.029, + "y": 7.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "P7_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.029, + "y": 7.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_A8", + "uuid": "a446b16c-5356-4ecb-a954-415256203296", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_A8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 42.529, + "y": 75.379, + "z": 0.61 + }, + "position3d": { + "x": 42.529, + "y": 75.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A8_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 42.529, + "y": 75.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_B8", + "uuid": "bdf0e36d-6837-4089-8d49-3896f4e2ff34", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_B8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 42.529, + "y": 70.879, + "z": 0.61 + }, + "position3d": { + "x": 42.529, + "y": 70.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B8_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 42.529, + "y": 70.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_C8", + "uuid": "b044156b-30f2-4780-9d7c-920c3a0e8be4", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_C8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 42.529, + "y": 66.379, + "z": 0.61 + }, + "position3d": { + "x": 42.529, + "y": 66.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C8_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 42.529, + "y": 66.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_D8", + "uuid": "b2ce5766-bbc7-4c0b-94d1-080a3c9b69f2", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_D8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 42.529, + "y": 61.879, + "z": 0.61 + }, + "position3d": { + "x": 42.529, + "y": 61.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D8_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 42.529, + "y": 61.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_E8", + "uuid": "b6b23ef6-1cc1-4852-8758-3b1c091ea7b1", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_E8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 42.529, + "y": 57.379, + "z": 0.61 + }, + "position3d": { + "x": 42.529, + "y": 57.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E8_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 42.529, + "y": 57.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_F8", + "uuid": "87ed438e-baf4-4018-bec8-90f9ebb4b5fe", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_F8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 42.529, + "y": 52.879, + "z": 0.61 + }, + "position3d": { + "x": 42.529, + "y": 52.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F8_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 42.529, + "y": 52.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_G8", + "uuid": "549c4ff8-ba57-46c6-acbc-98baba916617", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_G8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 42.529, + "y": 48.379, + "z": 0.61 + }, + "position3d": { + "x": 42.529, + "y": 48.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G8_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 42.529, + "y": 48.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_H8", + "uuid": "b26d5706-541b-4c5d-9f56-a354552424f6", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_H8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 42.529, + "y": 43.879, + "z": 0.61 + }, + "position3d": { + "x": 42.529, + "y": 43.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H8_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 42.529, + "y": 43.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_I8", + "uuid": "424ba0b9-59e8-40c4-91be-ce6745cddd06", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_I8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 42.529, + "y": 39.379, + "z": 0.61 + }, + "position3d": { + "x": 42.529, + "y": 39.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "I8_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 42.529, + "y": 39.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_J8", + "uuid": "e1079e98-8e1c-4399-86a2-c2fdd4e03079", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_J8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 42.529, + "y": 34.879, + "z": 0.61 + }, + "position3d": { + "x": 42.529, + "y": 34.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "J8_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 42.529, + "y": 34.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_K8", + "uuid": "16624b76-1527-42ba-9370-b6dc7784cafa", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_K8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 42.529, + "y": 30.379, + "z": 0.61 + }, + "position3d": { + "x": 42.529, + "y": 30.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "K8_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 42.529, + "y": 30.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_L8", + "uuid": "74e48b21-9ffb-40e3-8ccc-85d543553c3c", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_L8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 42.529, + "y": 25.879, + "z": 0.61 + }, + "position3d": { + "x": 42.529, + "y": 25.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "L8_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 42.529, + "y": 25.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_M8", + "uuid": "3aba5f11-e74d-4654-927b-7a0f8066cb8a", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_M8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 42.529, + "y": 21.379, + "z": 0.61 + }, + "position3d": { + "x": 42.529, + "y": 21.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "M8_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 42.529, + "y": 21.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_N8", + "uuid": "0d212ac7-cd49-481d-a9ca-77d757e1c0bb", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_N8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 42.529, + "y": 16.879, + "z": 0.61 + }, + "position3d": { + "x": 42.529, + "y": 16.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "N8_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 42.529, + "y": 16.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_O8", + "uuid": "122f62da-7274-4b89-90b1-6ae54c86c4f4", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_O8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 42.529, + "y": 12.379, + "z": 0.61 + }, + "position3d": { + "x": 42.529, + "y": 12.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "O8_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 42.529, + "y": 12.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_P8", + "uuid": "70cdd988-58be-4f01-af10-1f70fa85cebc", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_P8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 42.529, + "y": 7.879, + "z": 0.61 + }, + "position3d": { + "x": 42.529, + "y": 7.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "P8_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 42.529, + "y": 7.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_A9", + "uuid": "8d9aa083-3139-4354-a66e-291f589105e3", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_A9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.029, + "y": 75.379, + "z": 0.61 + }, + "position3d": { + "x": 47.029, + "y": 75.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A9_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.029, + "y": 75.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_B9", + "uuid": "a508af0c-bacc-4974-a8cf-6038dfe887be", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_B9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.029, + "y": 70.879, + "z": 0.61 + }, + "position3d": { + "x": 47.029, + "y": 70.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B9_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.029, + "y": 70.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_C9", + "uuid": "e1cc8f46-476d-41ed-846a-c272a75b76be", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_C9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.029, + "y": 66.379, + "z": 0.61 + }, + "position3d": { + "x": 47.029, + "y": 66.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C9_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.029, + "y": 66.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_D9", + "uuid": "96b81027-d4e0-4e50-a0e5-d72ea3bf376f", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_D9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.029, + "y": 61.879, + "z": 0.61 + }, + "position3d": { + "x": 47.029, + "y": 61.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D9_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.029, + "y": 61.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_E9", + "uuid": "ecee4bee-aa9e-4e3f-8069-d1257c86500f", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_E9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.029, + "y": 57.379, + "z": 0.61 + }, + "position3d": { + "x": 47.029, + "y": 57.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E9_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.029, + "y": 57.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_F9", + "uuid": "ea23bb5b-79f7-4d14-81eb-833fc21b2926", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_F9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.029, + "y": 52.879, + "z": 0.61 + }, + "position3d": { + "x": 47.029, + "y": 52.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F9_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.029, + "y": 52.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_G9", + "uuid": "06505c7d-eafb-4036-a32b-6cf36e2caac9", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_G9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.029, + "y": 48.379, + "z": 0.61 + }, + "position3d": { + "x": 47.029, + "y": 48.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G9_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.029, + "y": 48.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_H9", + "uuid": "390234e6-7a08-46ac-81e7-334d2af6053e", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_H9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.029, + "y": 43.879, + "z": 0.61 + }, + "position3d": { + "x": 47.029, + "y": 43.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H9_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.029, + "y": 43.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_I9", + "uuid": "3a51d9a6-5b32-4b22-9ab3-98b81170794b", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_I9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.029, + "y": 39.379, + "z": 0.61 + }, + "position3d": { + "x": 47.029, + "y": 39.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "I9_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.029, + "y": 39.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_J9", + "uuid": "e41c7dda-d682-4862-89f2-283da29a46bb", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_J9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.029, + "y": 34.879, + "z": 0.61 + }, + "position3d": { + "x": 47.029, + "y": 34.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "J9_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.029, + "y": 34.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_K9", + "uuid": "dcb35a2c-814d-4b9d-878d-ca99d932424f", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_K9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.029, + "y": 30.379, + "z": 0.61 + }, + "position3d": { + "x": 47.029, + "y": 30.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "K9_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.029, + "y": 30.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_L9", + "uuid": "25f4e658-df65-4193-b7a2-a75446405fc6", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_L9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.029, + "y": 25.879, + "z": 0.61 + }, + "position3d": { + "x": 47.029, + "y": 25.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "L9_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.029, + "y": 25.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_M9", + "uuid": "b92ff403-48a5-4aee-96a8-67ec457a437a", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_M9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.029, + "y": 21.379, + "z": 0.61 + }, + "position3d": { + "x": 47.029, + "y": 21.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "M9_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.029, + "y": 21.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_N9", + "uuid": "9f3d5740-e72d-42c0-a7e3-7c919454528d", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_N9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.029, + "y": 16.879, + "z": 0.61 + }, + "position3d": { + "x": 47.029, + "y": 16.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "N9_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.029, + "y": 16.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_O9", + "uuid": "042828aa-1651-48e5-b156-855a0902765f", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_O9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.029, + "y": 12.379, + "z": 0.61 + }, + "position3d": { + "x": 47.029, + "y": 12.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "O9_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.029, + "y": 12.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_P9", + "uuid": "64cbc0c0-1984-4bb2-a5a9-ef8ca1834ab0", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_P9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.029, + "y": 7.879, + "z": 0.61 + }, + "position3d": { + "x": 47.029, + "y": 7.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "P9_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.029, + "y": 7.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_A10", + "uuid": "50548464-ba93-4385-b91e-b1aab9509cdc", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_A10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 51.529, + "y": 75.379, + "z": 0.61 + }, + "position3d": { + "x": 51.529, + "y": 75.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A10_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 51.529, + "y": 75.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_B10", + "uuid": "d5d0068e-7895-4a04-89eb-7c06b38cdd01", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_B10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 51.529, + "y": 70.879, + "z": 0.61 + }, + "position3d": { + "x": 51.529, + "y": 70.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B10_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 51.529, + "y": 70.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_C10", + "uuid": "ee14045a-0045-4314-b50f-ee94cae16083", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_C10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 51.529, + "y": 66.379, + "z": 0.61 + }, + "position3d": { + "x": 51.529, + "y": 66.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C10_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 51.529, + "y": 66.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_D10", + "uuid": "00bfc240-3caa-46cf-92c2-395d8af7389c", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_D10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 51.529, + "y": 61.879, + "z": 0.61 + }, + "position3d": { + "x": 51.529, + "y": 61.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D10_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 51.529, + "y": 61.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_E10", + "uuid": "244d67fe-43cc-4682-a065-b0913c287775", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_E10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 51.529, + "y": 57.379, + "z": 0.61 + }, + "position3d": { + "x": 51.529, + "y": 57.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E10_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 51.529, + "y": 57.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_F10", + "uuid": "96592bfb-b25b-4ddc-b9a5-b1fe5b7a9754", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_F10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 51.529, + "y": 52.879, + "z": 0.61 + }, + "position3d": { + "x": 51.529, + "y": 52.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F10_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 51.529, + "y": 52.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_G10", + "uuid": "5d4c5561-ae31-4421-b802-332a06b669be", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_G10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 51.529, + "y": 48.379, + "z": 0.61 + }, + "position3d": { + "x": 51.529, + "y": 48.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G10_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 51.529, + "y": 48.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_H10", + "uuid": "aa7c93ed-a066-4607-802e-b9778494b3ef", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_H10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 51.529, + "y": 43.879, + "z": 0.61 + }, + "position3d": { + "x": 51.529, + "y": 43.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H10_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 51.529, + "y": 43.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_I10", + "uuid": "9dd5f50e-da3e-4290-8440-ed7cfd34ca52", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_I10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 51.529, + "y": 39.379, + "z": 0.61 + }, + "position3d": { + "x": 51.529, + "y": 39.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "I10_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 51.529, + "y": 39.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_J10", + "uuid": "fb379c7c-c837-4494-b045-4d5006ae8edd", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_J10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 51.529, + "y": 34.879, + "z": 0.61 + }, + "position3d": { + "x": 51.529, + "y": 34.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "J10_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 51.529, + "y": 34.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_K10", + "uuid": "62e572f2-e40c-4173-8eb3-643ab8884352", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_K10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 51.529, + "y": 30.379, + "z": 0.61 + }, + "position3d": { + "x": 51.529, + "y": 30.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "K10_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 51.529, + "y": 30.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_L10", + "uuid": "5189bb5b-c85b-4d2b-95a0-7be999d35b44", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_L10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 51.529, + "y": 25.879, + "z": 0.61 + }, + "position3d": { + "x": 51.529, + "y": 25.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "L10_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 51.529, + "y": 25.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_M10", + "uuid": "55d96f09-e867-4d87-9015-1809693506f8", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_M10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 51.529, + "y": 21.379, + "z": 0.61 + }, + "position3d": { + "x": 51.529, + "y": 21.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "M10_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 51.529, + "y": 21.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_N10", + "uuid": "33c9dde9-66af-44c5-be47-5bf889c3cbad", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_N10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 51.529, + "y": 16.879, + "z": 0.61 + }, + "position3d": { + "x": 51.529, + "y": 16.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "N10_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 51.529, + "y": 16.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_O10", + "uuid": "f3cd2620-3d3f-40b4-b435-38315587ef53", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_O10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 51.529, + "y": 12.379, + "z": 0.61 + }, + "position3d": { + "x": 51.529, + "y": 12.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "O10_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 51.529, + "y": 12.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_P10", + "uuid": "6ca9d3fa-9cfa-4d92-98c7-b2a30d12845f", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_P10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 51.529, + "y": 7.879, + "z": 0.61 + }, + "position3d": { + "x": 51.529, + "y": 7.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "P10_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 51.529, + "y": 7.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_A11", + "uuid": "3965e0ff-b7a7-4b1f-a0dd-3a5cfcddff10", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_A11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.029, + "y": 75.379, + "z": 0.61 + }, + "position3d": { + "x": 56.029, + "y": 75.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A11_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.029, + "y": 75.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_B11", + "uuid": "105d8a40-29e7-4fb2-9927-0986d19f0ee4", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_B11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.029, + "y": 70.879, + "z": 0.61 + }, + "position3d": { + "x": 56.029, + "y": 70.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B11_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.029, + "y": 70.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_C11", + "uuid": "da53efd8-781b-45ae-96e8-7544e944dd84", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_C11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.029, + "y": 66.379, + "z": 0.61 + }, + "position3d": { + "x": 56.029, + "y": 66.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C11_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.029, + "y": 66.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_D11", + "uuid": "f9762e31-3bf9-4841-b242-4841e84e11a4", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_D11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.029, + "y": 61.879, + "z": 0.61 + }, + "position3d": { + "x": 56.029, + "y": 61.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D11_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.029, + "y": 61.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_E11", + "uuid": "583020c6-8509-4d40-b99f-a63411a000f1", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_E11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.029, + "y": 57.379, + "z": 0.61 + }, + "position3d": { + "x": 56.029, + "y": 57.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E11_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.029, + "y": 57.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_F11", + "uuid": "17659510-c380-4e95-8412-04e2fb3b58fb", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_F11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.029, + "y": 52.879, + "z": 0.61 + }, + "position3d": { + "x": 56.029, + "y": 52.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F11_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.029, + "y": 52.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_G11", + "uuid": "5ea14e08-7c52-4790-80cf-1a4e9a0b91bd", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_G11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.029, + "y": 48.379, + "z": 0.61 + }, + "position3d": { + "x": 56.029, + "y": 48.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G11_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.029, + "y": 48.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_H11", + "uuid": "6d2a9ac7-5f28-4f53-86e0-8be1def7f75d", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_H11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.029, + "y": 43.879, + "z": 0.61 + }, + "position3d": { + "x": 56.029, + "y": 43.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H11_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.029, + "y": 43.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_I11", + "uuid": "c8b1132c-4926-4aa7-b2f5-e96e9ed4302b", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_I11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.029, + "y": 39.379, + "z": 0.61 + }, + "position3d": { + "x": 56.029, + "y": 39.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "I11_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.029, + "y": 39.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_J11", + "uuid": "13aac565-dad5-41cd-81ff-e02dc6f4572b", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_J11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.029, + "y": 34.879, + "z": 0.61 + }, + "position3d": { + "x": 56.029, + "y": 34.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "J11_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.029, + "y": 34.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_K11", + "uuid": "4457c983-c107-4c4f-b9c0-3c96ce375e2c", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_K11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.029, + "y": 30.379, + "z": 0.61 + }, + "position3d": { + "x": 56.029, + "y": 30.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "K11_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.029, + "y": 30.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_L11", + "uuid": "96b95656-288f-4b93-a7f0-ef65dae1968b", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_L11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.029, + "y": 25.879, + "z": 0.61 + }, + "position3d": { + "x": 56.029, + "y": 25.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "L11_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.029, + "y": 25.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_M11", + "uuid": "ddfac32e-bdb5-4e80-9646-adc598ee7919", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_M11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.029, + "y": 21.379, + "z": 0.61 + }, + "position3d": { + "x": 56.029, + "y": 21.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "M11_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.029, + "y": 21.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_N11", + "uuid": "0171f2ec-4fbb-4c1d-91a1-5f48bebfce40", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_N11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.029, + "y": 16.879, + "z": 0.61 + }, + "position3d": { + "x": 56.029, + "y": 16.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "N11_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.029, + "y": 16.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_O11", + "uuid": "7b79f2c3-900d-4c58-97c1-88856dac2f6a", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_O11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.029, + "y": 12.379, + "z": 0.61 + }, + "position3d": { + "x": 56.029, + "y": 12.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "O11_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.029, + "y": 12.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_P11", + "uuid": "9e9485a2-7155-4267-8d27-7b6c13e56aad", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_P11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.029, + "y": 7.879, + "z": 0.61 + }, + "position3d": { + "x": 56.029, + "y": 7.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "P11_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.029, + "y": 7.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_A12", + "uuid": "a8a9e29a-6774-42f0-af53-ac48fa488681", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_A12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 60.529, + "y": 75.379, + "z": 0.61 + }, + "position3d": { + "x": 60.529, + "y": 75.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A12_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 60.529, + "y": 75.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_B12", + "uuid": "b2b9a099-95c2-4e42-8371-e40cb821dbae", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_B12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 60.529, + "y": 70.879, + "z": 0.61 + }, + "position3d": { + "x": 60.529, + "y": 70.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B12_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 60.529, + "y": 70.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_C12", + "uuid": "881e29db-9bc8-4d1d-8a89-58109d4eb659", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_C12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 60.529, + "y": 66.379, + "z": 0.61 + }, + "position3d": { + "x": 60.529, + "y": 66.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C12_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 60.529, + "y": 66.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_D12", + "uuid": "98919e42-c0da-4eb7-be63-aeeadc9959d8", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_D12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 60.529, + "y": 61.879, + "z": 0.61 + }, + "position3d": { + "x": 60.529, + "y": 61.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D12_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 60.529, + "y": 61.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_E12", + "uuid": "2e4a97a6-4149-4ab3-b535-dfd27d415e25", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_E12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 60.529, + "y": 57.379, + "z": 0.61 + }, + "position3d": { + "x": 60.529, + "y": 57.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E12_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 60.529, + "y": 57.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_F12", + "uuid": "763add2c-9e69-4874-a18b-87c71f3c8146", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_F12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 60.529, + "y": 52.879, + "z": 0.61 + }, + "position3d": { + "x": 60.529, + "y": 52.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F12_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 60.529, + "y": 52.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_G12", + "uuid": "14728c65-86d8-4bc8-be58-80ba0e76c093", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_G12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 60.529, + "y": 48.379, + "z": 0.61 + }, + "position3d": { + "x": 60.529, + "y": 48.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G12_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 60.529, + "y": 48.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_H12", + "uuid": "978bdc43-7989-473a-af27-ec1a3451ee92", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_H12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 60.529, + "y": 43.879, + "z": 0.61 + }, + "position3d": { + "x": 60.529, + "y": 43.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H12_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 60.529, + "y": 43.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_I12", + "uuid": "f6260e00-03e3-4474-bb7d-06b0130f423a", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_I12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 60.529, + "y": 39.379, + "z": 0.61 + }, + "position3d": { + "x": 60.529, + "y": 39.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "I12_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 60.529, + "y": 39.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_J12", + "uuid": "2438e19e-0bb7-499d-9191-e2067144df65", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_J12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 60.529, + "y": 34.879, + "z": 0.61 + }, + "position3d": { + "x": 60.529, + "y": 34.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "J12_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 60.529, + "y": 34.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_K12", + "uuid": "4a3792b8-41f2-44e7-9cc4-16ac0d81a6f8", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_K12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 60.529, + "y": 30.379, + "z": 0.61 + }, + "position3d": { + "x": 60.529, + "y": 30.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "K12_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 60.529, + "y": 30.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_L12", + "uuid": "fd965393-a0e5-4ff0-9e77-394f2f79798c", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_L12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 60.529, + "y": 25.879, + "z": 0.61 + }, + "position3d": { + "x": 60.529, + "y": 25.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "L12_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 60.529, + "y": 25.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_M12", + "uuid": "b5de48e3-ee12-43d6-9634-b384db74a81c", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_M12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 60.529, + "y": 21.379, + "z": 0.61 + }, + "position3d": { + "x": 60.529, + "y": 21.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "M12_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 60.529, + "y": 21.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_N12", + "uuid": "af8fc007-411c-4401-94ac-38c479ca8dec", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_N12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 60.529, + "y": 16.879, + "z": 0.61 + }, + "position3d": { + "x": 60.529, + "y": 16.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "N12_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 60.529, + "y": 16.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_O12", + "uuid": "ef01a7f7-30c7-4539-a51c-7e889ffd8827", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_O12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 60.529, + "y": 12.379, + "z": 0.61 + }, + "position3d": { + "x": 60.529, + "y": 12.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "O12_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 60.529, + "y": 12.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_P12", + "uuid": "00e5a36a-9cf7-457e-afa4-54ce16d57708", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_P12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 60.529, + "y": 7.879, + "z": 0.61 + }, + "position3d": { + "x": 60.529, + "y": 7.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "P12_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 60.529, + "y": 7.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_A13", + "uuid": "3a68d55b-953e-45ad-9d0c-e4b353130483", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_A13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.029, + "y": 75.379, + "z": 0.61 + }, + "position3d": { + "x": 65.029, + "y": 75.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A13_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.029, + "y": 75.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_B13", + "uuid": "477a8275-37de-4fa3-b658-7fc0fa9782f0", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_B13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.029, + "y": 70.879, + "z": 0.61 + }, + "position3d": { + "x": 65.029, + "y": 70.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B13_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.029, + "y": 70.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_C13", + "uuid": "07935cba-c5e5-47e6-99d2-d1fcca1324ce", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_C13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.029, + "y": 66.379, + "z": 0.61 + }, + "position3d": { + "x": 65.029, + "y": 66.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C13_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.029, + "y": 66.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_D13", + "uuid": "96f4d612-6310-4865-a87c-8a9cd152abeb", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_D13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.029, + "y": 61.879, + "z": 0.61 + }, + "position3d": { + "x": 65.029, + "y": 61.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D13_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.029, + "y": 61.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_E13", + "uuid": "7efdec61-3c9a-4c81-b9d7-c96068ecbfc0", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_E13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.029, + "y": 57.379, + "z": 0.61 + }, + "position3d": { + "x": 65.029, + "y": 57.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E13_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.029, + "y": 57.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_F13", + "uuid": "40ea1d49-2b0e-4df2-9fb1-eb120e5cd645", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_F13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.029, + "y": 52.879, + "z": 0.61 + }, + "position3d": { + "x": 65.029, + "y": 52.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F13_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.029, + "y": 52.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_G13", + "uuid": "9eeb6f59-b7a9-49b7-8262-f37db30d741b", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_G13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.029, + "y": 48.379, + "z": 0.61 + }, + "position3d": { + "x": 65.029, + "y": 48.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G13_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.029, + "y": 48.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_H13", + "uuid": "5a2a648a-684d-4dbd-8968-7aff3f48037e", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_H13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.029, + "y": 43.879, + "z": 0.61 + }, + "position3d": { + "x": 65.029, + "y": 43.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H13_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.029, + "y": 43.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_I13", + "uuid": "dd37ad34-e998-407d-a710-d5caf6fc733e", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_I13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.029, + "y": 39.379, + "z": 0.61 + }, + "position3d": { + "x": 65.029, + "y": 39.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "I13_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.029, + "y": 39.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_J13", + "uuid": "fa0455c5-bd36-4c68-8b16-2ae85552079b", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_J13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.029, + "y": 34.879, + "z": 0.61 + }, + "position3d": { + "x": 65.029, + "y": 34.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "J13_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.029, + "y": 34.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_K13", + "uuid": "27aad2ea-6865-403f-b347-6820da6289ce", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_K13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.029, + "y": 30.379, + "z": 0.61 + }, + "position3d": { + "x": 65.029, + "y": 30.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "K13_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.029, + "y": 30.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_L13", + "uuid": "00fd7d9e-3935-4514-8045-ab74ea540161", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_L13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.029, + "y": 25.879, + "z": 0.61 + }, + "position3d": { + "x": 65.029, + "y": 25.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "L13_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.029, + "y": 25.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_M13", + "uuid": "84c7c208-255e-42e8-9cc0-d7d671269207", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_M13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.029, + "y": 21.379, + "z": 0.61 + }, + "position3d": { + "x": 65.029, + "y": 21.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "M13_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.029, + "y": 21.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_N13", + "uuid": "ec407df4-7dea-4022-b2cb-dc5ab0d09aad", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_N13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.029, + "y": 16.879, + "z": 0.61 + }, + "position3d": { + "x": 65.029, + "y": 16.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "N13_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.029, + "y": 16.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_O13", + "uuid": "2de91148-258f-472e-889c-75fd43b0fb29", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_O13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.029, + "y": 12.379, + "z": 0.61 + }, + "position3d": { + "x": 65.029, + "y": 12.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "O13_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.029, + "y": 12.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_P13", + "uuid": "b65bb032-f97b-4aaa-b49e-55346670962c", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_P13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.029, + "y": 7.879, + "z": 0.61 + }, + "position3d": { + "x": 65.029, + "y": 7.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "P13_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.029, + "y": 7.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_A14", + "uuid": "e4dbe3ce-ad2c-44a8-a1f0-752330e64c42", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_A14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 69.529, + "y": 75.379, + "z": 0.61 + }, + "position3d": { + "x": 69.529, + "y": 75.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A14_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 69.529, + "y": 75.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_B14", + "uuid": "4ef7e878-77cd-46d3-a7f9-97d6f4d713e3", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_B14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 69.529, + "y": 70.879, + "z": 0.61 + }, + "position3d": { + "x": 69.529, + "y": 70.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B14_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 69.529, + "y": 70.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_C14", + "uuid": "48b0ac48-9f48-43f8-afeb-92762d9b7d66", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_C14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 69.529, + "y": 66.379, + "z": 0.61 + }, + "position3d": { + "x": 69.529, + "y": 66.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C14_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 69.529, + "y": 66.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_D14", + "uuid": "2bdca263-d069-4428-b787-77a9eebb3e6e", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_D14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 69.529, + "y": 61.879, + "z": 0.61 + }, + "position3d": { + "x": 69.529, + "y": 61.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D14_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 69.529, + "y": 61.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_E14", + "uuid": "0e3bc2ff-52d0-4f98-b5e3-de1a065e68b2", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_E14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 69.529, + "y": 57.379, + "z": 0.61 + }, + "position3d": { + "x": 69.529, + "y": 57.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E14_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 69.529, + "y": 57.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_F14", + "uuid": "841a0539-80ac-4235-bc24-db65b8e040e7", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_F14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 69.529, + "y": 52.879, + "z": 0.61 + }, + "position3d": { + "x": 69.529, + "y": 52.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F14_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 69.529, + "y": 52.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_G14", + "uuid": "b4d44855-45ce-4933-8bc3-8e758c1965a5", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_G14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 69.529, + "y": 48.379, + "z": 0.61 + }, + "position3d": { + "x": 69.529, + "y": 48.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G14_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 69.529, + "y": 48.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_H14", + "uuid": "6ff57347-40d1-4a12-97a8-669debdd78d8", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_H14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 69.529, + "y": 43.879, + "z": 0.61 + }, + "position3d": { + "x": 69.529, + "y": 43.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H14_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 69.529, + "y": 43.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_I14", + "uuid": "b8bc2498-07ea-419e-bc86-c9b4b8e714ee", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_I14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 69.529, + "y": 39.379, + "z": 0.61 + }, + "position3d": { + "x": 69.529, + "y": 39.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "I14_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 69.529, + "y": 39.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_J14", + "uuid": "25ae035d-3346-4759-9926-097200b17b08", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_J14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 69.529, + "y": 34.879, + "z": 0.61 + }, + "position3d": { + "x": 69.529, + "y": 34.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "J14_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 69.529, + "y": 34.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_K14", + "uuid": "79b4ed95-52ff-4d90-a64c-c805668d3ee5", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_K14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 69.529, + "y": 30.379, + "z": 0.61 + }, + "position3d": { + "x": 69.529, + "y": 30.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "K14_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 69.529, + "y": 30.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_L14", + "uuid": "72e5f53f-4720-41f0-a5d5-c5090a0ae6ca", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_L14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 69.529, + "y": 25.879, + "z": 0.61 + }, + "position3d": { + "x": 69.529, + "y": 25.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "L14_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 69.529, + "y": 25.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_M14", + "uuid": "27deea9e-4374-465e-a2aa-cf2ed8ec20a9", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_M14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 69.529, + "y": 21.379, + "z": 0.61 + }, + "position3d": { + "x": 69.529, + "y": 21.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "M14_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 69.529, + "y": 21.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_N14", + "uuid": "362242b1-9d16-4f76-84b7-9d5eb9b16ae6", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_N14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 69.529, + "y": 16.879, + "z": 0.61 + }, + "position3d": { + "x": 69.529, + "y": 16.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "N14_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 69.529, + "y": 16.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_O14", + "uuid": "05e71cff-6c08-492f-a04c-74c7f56356a9", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_O14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 69.529, + "y": 12.379, + "z": 0.61 + }, + "position3d": { + "x": 69.529, + "y": 12.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "O14_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 69.529, + "y": 12.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_P14", + "uuid": "97f0fbdc-abd2-4b12-9aed-78ae16762c2a", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_P14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 69.529, + "y": 7.879, + "z": 0.61 + }, + "position3d": { + "x": 69.529, + "y": 7.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "P14_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 69.529, + "y": 7.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_A15", + "uuid": "fea72b58-2a24-43ff-b205-6228166cbd5a", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_A15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.029, + "y": 75.379, + "z": 0.61 + }, + "position3d": { + "x": 74.029, + "y": 75.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A15_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.029, + "y": 75.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_B15", + "uuid": "586990f4-76db-4725-9bec-0e5c7248dd30", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_B15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.029, + "y": 70.879, + "z": 0.61 + }, + "position3d": { + "x": 74.029, + "y": 70.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B15_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.029, + "y": 70.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_C15", + "uuid": "d50467f7-d303-44f9-b998-599ac7f443b5", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_C15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.029, + "y": 66.379, + "z": 0.61 + }, + "position3d": { + "x": 74.029, + "y": 66.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C15_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.029, + "y": 66.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_D15", + "uuid": "ba62aab1-8716-4383-b673-1f139fe0aa3d", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_D15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.029, + "y": 61.879, + "z": 0.61 + }, + "position3d": { + "x": 74.029, + "y": 61.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D15_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.029, + "y": 61.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_E15", + "uuid": "30248677-3e4e-4eb8-b180-17c8d3d225cc", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_E15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.029, + "y": 57.379, + "z": 0.61 + }, + "position3d": { + "x": 74.029, + "y": 57.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E15_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.029, + "y": 57.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_F15", + "uuid": "f40aba65-c81c-4c02-a1c3-eb8ff931b1f0", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_F15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.029, + "y": 52.879, + "z": 0.61 + }, + "position3d": { + "x": 74.029, + "y": 52.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F15_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.029, + "y": 52.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_G15", + "uuid": "3ad4c4ed-bf7f-49c1-bdf3-32f09d61cb4a", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_G15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.029, + "y": 48.379, + "z": 0.61 + }, + "position3d": { + "x": 74.029, + "y": 48.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G15_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.029, + "y": 48.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_H15", + "uuid": "c538f525-ab90-4c10-9cff-6313d3362b5b", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_H15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.029, + "y": 43.879, + "z": 0.61 + }, + "position3d": { + "x": 74.029, + "y": 43.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H15_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.029, + "y": 43.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_I15", + "uuid": "11fc4558-8f60-4686-9af0-51f7fc94a240", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_I15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.029, + "y": 39.379, + "z": 0.61 + }, + "position3d": { + "x": 74.029, + "y": 39.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "I15_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.029, + "y": 39.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_J15", + "uuid": "899ae96b-8425-4c35-bf5b-6825b04d2be9", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_J15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.029, + "y": 34.879, + "z": 0.61 + }, + "position3d": { + "x": 74.029, + "y": 34.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "J15_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.029, + "y": 34.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_K15", + "uuid": "0b68c99f-5689-48bd-9e3b-309e2b87a163", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_K15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.029, + "y": 30.379, + "z": 0.61 + }, + "position3d": { + "x": 74.029, + "y": 30.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "K15_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.029, + "y": 30.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_L15", + "uuid": "9834f460-f95b-4376-a946-7751588eff04", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_L15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.029, + "y": 25.879, + "z": 0.61 + }, + "position3d": { + "x": 74.029, + "y": 25.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "L15_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.029, + "y": 25.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_M15", + "uuid": "d1c172f9-d2a0-4c35-bdc1-799075f2d38a", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_M15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.029, + "y": 21.379, + "z": 0.61 + }, + "position3d": { + "x": 74.029, + "y": 21.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "M15_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.029, + "y": 21.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_N15", + "uuid": "96f9c7ad-cf07-431c-b913-ad322af1ce68", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_N15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.029, + "y": 16.879, + "z": 0.61 + }, + "position3d": { + "x": 74.029, + "y": 16.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "N15_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.029, + "y": 16.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_O15", + "uuid": "867022df-e352-40c0-8d6e-cb6c9163cc08", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_O15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.029, + "y": 12.379, + "z": 0.61 + }, + "position3d": { + "x": 74.029, + "y": 12.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "O15_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.029, + "y": 12.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_P15", + "uuid": "37033f16-8ebe-4284-9dc8-58ebd4136758", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_P15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.029, + "y": 7.879, + "z": 0.61 + }, + "position3d": { + "x": 74.029, + "y": 7.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "P15_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.029, + "y": 7.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_A16", + "uuid": "e3b097a0-2d11-4813-818b-562602c4597b", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_A16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 78.529, + "y": 75.379, + "z": 0.61 + }, + "position3d": { + "x": 78.529, + "y": 75.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A16_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 78.529, + "y": 75.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_B16", + "uuid": "05613f07-7573-4d02-af73-138a650717da", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_B16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 78.529, + "y": 70.879, + "z": 0.61 + }, + "position3d": { + "x": 78.529, + "y": 70.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B16_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 78.529, + "y": 70.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_C16", + "uuid": "54120866-d3ed-49a3-b988-0f613c24413f", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_C16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 78.529, + "y": 66.379, + "z": 0.61 + }, + "position3d": { + "x": 78.529, + "y": 66.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C16_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 78.529, + "y": 66.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_D16", + "uuid": "f556acdc-2f1d-4929-b5ed-29faac7bec1b", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_D16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 78.529, + "y": 61.879, + "z": 0.61 + }, + "position3d": { + "x": 78.529, + "y": 61.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D16_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 78.529, + "y": 61.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_E16", + "uuid": "a1955c48-9652-44e8-a1cc-de49338f8295", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_E16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 78.529, + "y": 57.379, + "z": 0.61 + }, + "position3d": { + "x": 78.529, + "y": 57.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E16_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 78.529, + "y": 57.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_F16", + "uuid": "6ab2879b-339e-48ce-b5d9-ecc18a2d7ff0", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_F16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 78.529, + "y": 52.879, + "z": 0.61 + }, + "position3d": { + "x": 78.529, + "y": 52.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F16_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 78.529, + "y": 52.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_G16", + "uuid": "aeac39f5-eef1-4122-be9c-82578ff6bee8", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_G16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 78.529, + "y": 48.379, + "z": 0.61 + }, + "position3d": { + "x": 78.529, + "y": 48.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G16_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 78.529, + "y": 48.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_H16", + "uuid": "6af15ecb-e8a7-4d59-aba9-e065df4dfb2c", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_H16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 78.529, + "y": 43.879, + "z": 0.61 + }, + "position3d": { + "x": 78.529, + "y": 43.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H16_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 78.529, + "y": 43.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_I16", + "uuid": "ee64ff44-dce8-4319-ba33-09abc6ac181d", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_I16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 78.529, + "y": 39.379, + "z": 0.61 + }, + "position3d": { + "x": 78.529, + "y": 39.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "I16_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 78.529, + "y": 39.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_J16", + "uuid": "b5fcec10-9d81-485d-b472-8d2328ed7a42", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_J16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 78.529, + "y": 34.879, + "z": 0.61 + }, + "position3d": { + "x": 78.529, + "y": 34.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "J16_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 78.529, + "y": 34.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_K16", + "uuid": "1185a5e2-156c-44ca-aab0-6ebf054a7345", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_K16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 78.529, + "y": 30.379, + "z": 0.61 + }, + "position3d": { + "x": 78.529, + "y": 30.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "K16_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 78.529, + "y": 30.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_L16", + "uuid": "b2fce1ec-fd99-4419-b46b-125bc066b39f", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_L16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 78.529, + "y": 25.879, + "z": 0.61 + }, + "position3d": { + "x": 78.529, + "y": 25.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "L16_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 78.529, + "y": 25.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_M16", + "uuid": "078da277-6fce-4d3f-b13f-16e549bcfbec", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_M16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 78.529, + "y": 21.379, + "z": 0.61 + }, + "position3d": { + "x": 78.529, + "y": 21.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "M16_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 78.529, + "y": 21.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_N16", + "uuid": "2b791324-4a12-4eb9-a85a-34b20de5bb3d", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_N16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 78.529, + "y": 16.879, + "z": 0.61 + }, + "position3d": { + "x": 78.529, + "y": 16.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "N16_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 78.529, + "y": 16.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_O16", + "uuid": "fd61d702-c5ad-4fc6-bb39-b210fde115fd", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_O16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 78.529, + "y": 12.379, + "z": 0.61 + }, + "position3d": { + "x": 78.529, + "y": 12.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "O16_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 78.529, + "y": 12.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_P16", + "uuid": "71f79e15-5cdc-4437-aca8-7ea9b4af2d37", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_P16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 78.529, + "y": 7.879, + "z": 0.61 + }, + "position3d": { + "x": 78.529, + "y": 7.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "P16_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 78.529, + "y": 7.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_A17", + "uuid": "bfb66c41-f9be-4e77-ad92-95ce4ce5e507", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_A17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.029, + "y": 75.379, + "z": 0.61 + }, + "position3d": { + "x": 83.029, + "y": 75.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A17_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.029, + "y": 75.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_B17", + "uuid": "6fae9c5e-1045-4851-9cdd-19306dd9bb73", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_B17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.029, + "y": 70.879, + "z": 0.61 + }, + "position3d": { + "x": 83.029, + "y": 70.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B17_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.029, + "y": 70.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_C17", + "uuid": "008154a9-6172-4631-ad94-4582a3c5a462", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_C17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.029, + "y": 66.379, + "z": 0.61 + }, + "position3d": { + "x": 83.029, + "y": 66.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C17_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.029, + "y": 66.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_D17", + "uuid": "d138e849-6a33-4bf4-927f-9f87796cc59e", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_D17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.029, + "y": 61.879, + "z": 0.61 + }, + "position3d": { + "x": 83.029, + "y": 61.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D17_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.029, + "y": 61.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_E17", + "uuid": "ab429c4b-f016-4778-9418-3cccf47ad1a1", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_E17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.029, + "y": 57.379, + "z": 0.61 + }, + "position3d": { + "x": 83.029, + "y": 57.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E17_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.029, + "y": 57.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_F17", + "uuid": "cef33514-74b8-48f2-b24d-bfd17cda096b", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_F17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.029, + "y": 52.879, + "z": 0.61 + }, + "position3d": { + "x": 83.029, + "y": 52.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F17_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.029, + "y": 52.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_G17", + "uuid": "f875c732-21e7-444f-9b68-8d4f77493cdb", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_G17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.029, + "y": 48.379, + "z": 0.61 + }, + "position3d": { + "x": 83.029, + "y": 48.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G17_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.029, + "y": 48.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_H17", + "uuid": "4349fe08-5021-49c4-b519-10e26e7f4f2a", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_H17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.029, + "y": 43.879, + "z": 0.61 + }, + "position3d": { + "x": 83.029, + "y": 43.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H17_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.029, + "y": 43.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_I17", + "uuid": "7f9ed24e-13ab-4376-a25e-dbf6608c68ad", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_I17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.029, + "y": 39.379, + "z": 0.61 + }, + "position3d": { + "x": 83.029, + "y": 39.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "I17_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.029, + "y": 39.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_J17", + "uuid": "3c68dddc-e314-4e44-ab8d-7f2b40f3d28b", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_J17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.029, + "y": 34.879, + "z": 0.61 + }, + "position3d": { + "x": 83.029, + "y": 34.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "J17_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.029, + "y": 34.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_K17", + "uuid": "303b3c5f-c8ff-4e25-8518-2dd2971be699", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_K17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.029, + "y": 30.379, + "z": 0.61 + }, + "position3d": { + "x": 83.029, + "y": 30.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "K17_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.029, + "y": 30.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_L17", + "uuid": "ff756ccb-656f-4791-a202-992c11ddcb86", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_L17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.029, + "y": 25.879, + "z": 0.61 + }, + "position3d": { + "x": 83.029, + "y": 25.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "L17_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.029, + "y": 25.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_M17", + "uuid": "27657862-ad5f-48cf-9123-b41baa2d7675", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_M17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.029, + "y": 21.379, + "z": 0.61 + }, + "position3d": { + "x": 83.029, + "y": 21.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "M17_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.029, + "y": 21.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_N17", + "uuid": "09eecc1e-bbeb-4bbe-9519-a932834381c9", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_N17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.029, + "y": 16.879, + "z": 0.61 + }, + "position3d": { + "x": 83.029, + "y": 16.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "N17_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.029, + "y": 16.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_O17", + "uuid": "cc7f471e-d9da-4556-8800-0fc803775d70", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_O17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.029, + "y": 12.379, + "z": 0.61 + }, + "position3d": { + "x": 83.029, + "y": 12.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "O17_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.029, + "y": 12.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_P17", + "uuid": "d3da05de-7688-40f1-a12d-44bd98e7db21", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_P17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.029, + "y": 7.879, + "z": 0.61 + }, + "position3d": { + "x": 83.029, + "y": 7.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "P17_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.029, + "y": 7.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_A18", + "uuid": "c680e3ca-9705-4b49-8a24-44dcbcdd6598", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_A18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 87.529, + "y": 75.379, + "z": 0.61 + }, + "position3d": { + "x": 87.529, + "y": 75.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A18_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 87.529, + "y": 75.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_B18", + "uuid": "3fd272f2-1508-417b-8f23-6f1a38e95975", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_B18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 87.529, + "y": 70.879, + "z": 0.61 + }, + "position3d": { + "x": 87.529, + "y": 70.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B18_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 87.529, + "y": 70.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_C18", + "uuid": "37c85862-832a-4eb6-931b-48f554c06dee", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_C18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 87.529, + "y": 66.379, + "z": 0.61 + }, + "position3d": { + "x": 87.529, + "y": 66.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C18_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 87.529, + "y": 66.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_D18", + "uuid": "faeb5e82-5e25-4071-ac94-8eee8c6a56f9", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_D18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 87.529, + "y": 61.879, + "z": 0.61 + }, + "position3d": { + "x": 87.529, + "y": 61.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D18_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 87.529, + "y": 61.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_E18", + "uuid": "8244eb2c-b1aa-4048-acdd-93bd1c4b7a32", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_E18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 87.529, + "y": 57.379, + "z": 0.61 + }, + "position3d": { + "x": 87.529, + "y": 57.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E18_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 87.529, + "y": 57.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_F18", + "uuid": "a472afd1-615f-4300-b75d-5143862443f1", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_F18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 87.529, + "y": 52.879, + "z": 0.61 + }, + "position3d": { + "x": 87.529, + "y": 52.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F18_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 87.529, + "y": 52.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_G18", + "uuid": "54d69f4d-3bca-4051-8766-b8b7d1428cc0", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_G18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 87.529, + "y": 48.379, + "z": 0.61 + }, + "position3d": { + "x": 87.529, + "y": 48.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G18_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 87.529, + "y": 48.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_H18", + "uuid": "c66fed95-c815-4844-818a-317c84ac9b56", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_H18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 87.529, + "y": 43.879, + "z": 0.61 + }, + "position3d": { + "x": 87.529, + "y": 43.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H18_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 87.529, + "y": 43.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_I18", + "uuid": "28452fdd-9504-4695-8124-764e163047e9", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_I18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 87.529, + "y": 39.379, + "z": 0.61 + }, + "position3d": { + "x": 87.529, + "y": 39.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "I18_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 87.529, + "y": 39.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_J18", + "uuid": "1e38bced-a2ca-4232-b3da-d1dceca184d2", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_J18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 87.529, + "y": 34.879, + "z": 0.61 + }, + "position3d": { + "x": 87.529, + "y": 34.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "J18_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 87.529, + "y": 34.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_K18", + "uuid": "9f0e6fcc-9c13-4b09-83dd-bbed4c32e080", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_K18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 87.529, + "y": 30.379, + "z": 0.61 + }, + "position3d": { + "x": 87.529, + "y": 30.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "K18_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 87.529, + "y": 30.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_L18", + "uuid": "bb0b8440-2759-486a-a52d-cac161b49c3b", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_L18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 87.529, + "y": 25.879, + "z": 0.61 + }, + "position3d": { + "x": 87.529, + "y": 25.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "L18_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 87.529, + "y": 25.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_M18", + "uuid": "877bc96f-2c3d-4106-b367-496e1d157b34", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_M18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 87.529, + "y": 21.379, + "z": 0.61 + }, + "position3d": { + "x": 87.529, + "y": 21.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "M18_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 87.529, + "y": 21.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_N18", + "uuid": "679bfeb2-7ded-4096-a9f7-574ca259e9f8", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_N18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 87.529, + "y": 16.879, + "z": 0.61 + }, + "position3d": { + "x": 87.529, + "y": 16.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "N18_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 87.529, + "y": 16.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_O18", + "uuid": "c2ad77dd-ab6e-4200-9d4b-fea42e56cb16", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_O18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 87.529, + "y": 12.379, + "z": 0.61 + }, + "position3d": { + "x": 87.529, + "y": 12.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "O18_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 87.529, + "y": 12.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_P18", + "uuid": "b5061a45-39fc-4683-89b2-71f55f57b219", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_P18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 87.529, + "y": 7.879, + "z": 0.61 + }, + "position3d": { + "x": 87.529, + "y": 7.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "P18_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 87.529, + "y": 7.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_A19", + "uuid": "084ade73-d4e8-41fb-ac10-8e04ada99231", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_A19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.029, + "y": 75.379, + "z": 0.61 + }, + "position3d": { + "x": 92.029, + "y": 75.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A19_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.029, + "y": 75.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_B19", + "uuid": "5d9e54ee-413c-4dcf-885a-734add5203bf", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_B19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.029, + "y": 70.879, + "z": 0.61 + }, + "position3d": { + "x": 92.029, + "y": 70.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B19_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.029, + "y": 70.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_C19", + "uuid": "b1029f04-a1c0-4f4e-88e0-b93cca503872", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_C19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.029, + "y": 66.379, + "z": 0.61 + }, + "position3d": { + "x": 92.029, + "y": 66.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C19_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.029, + "y": 66.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_D19", + "uuid": "981f4113-9bb9-463f-8c3d-d713a04f0cd6", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_D19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.029, + "y": 61.879, + "z": 0.61 + }, + "position3d": { + "x": 92.029, + "y": 61.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D19_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.029, + "y": 61.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_E19", + "uuid": "18092380-5a9c-4e15-9345-de46094425a9", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_E19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.029, + "y": 57.379, + "z": 0.61 + }, + "position3d": { + "x": 92.029, + "y": 57.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E19_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.029, + "y": 57.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_F19", + "uuid": "e4a6dc59-c4e7-49ef-b97c-456057ba01a7", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_F19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.029, + "y": 52.879, + "z": 0.61 + }, + "position3d": { + "x": 92.029, + "y": 52.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F19_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.029, + "y": 52.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_G19", + "uuid": "d1ecff23-d1c9-4b5e-b95f-ea302a8f887d", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_G19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.029, + "y": 48.379, + "z": 0.61 + }, + "position3d": { + "x": 92.029, + "y": 48.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G19_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.029, + "y": 48.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_H19", + "uuid": "512f127a-842b-4e3c-9e57-e265af454f7d", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_H19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.029, + "y": 43.879, + "z": 0.61 + }, + "position3d": { + "x": 92.029, + "y": 43.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H19_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.029, + "y": 43.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_I19", + "uuid": "5e499b68-1780-46fd-8e6a-04a677029c96", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_I19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.029, + "y": 39.379, + "z": 0.61 + }, + "position3d": { + "x": 92.029, + "y": 39.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "I19_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.029, + "y": 39.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_J19", + "uuid": "9780e46e-287b-4b06-8a58-692929f81ae1", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_J19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.029, + "y": 34.879, + "z": 0.61 + }, + "position3d": { + "x": 92.029, + "y": 34.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "J19_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.029, + "y": 34.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_K19", + "uuid": "e9d62528-2b4e-4925-87a3-34bbee7101a4", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_K19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.029, + "y": 30.379, + "z": 0.61 + }, + "position3d": { + "x": 92.029, + "y": 30.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "K19_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.029, + "y": 30.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_L19", + "uuid": "e9a97683-27b6-494b-b661-33b899dd46d5", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_L19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.029, + "y": 25.879, + "z": 0.61 + }, + "position3d": { + "x": 92.029, + "y": 25.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "L19_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.029, + "y": 25.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_M19", + "uuid": "4b4dd008-4e56-4c76-9d75-0dc6b189bec8", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_M19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.029, + "y": 21.379, + "z": 0.61 + }, + "position3d": { + "x": 92.029, + "y": 21.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "M19_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.029, + "y": 21.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_N19", + "uuid": "a2d9e56c-440d-495b-b396-4a522a909c60", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_N19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.029, + "y": 16.879, + "z": 0.61 + }, + "position3d": { + "x": 92.029, + "y": 16.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "N19_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.029, + "y": 16.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_O19", + "uuid": "21cfafb4-32bd-4e3c-8482-3f149a8407bf", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_O19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.029, + "y": 12.379, + "z": 0.61 + }, + "position3d": { + "x": 92.029, + "y": 12.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "O19_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.029, + "y": 12.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_P19", + "uuid": "b56785ae-60c8-4d78-a966-922e135083e7", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_P19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.029, + "y": 7.879, + "z": 0.61 + }, + "position3d": { + "x": 92.029, + "y": 7.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "P19_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.029, + "y": 7.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_A20", + "uuid": "bfb41807-2556-4528-b1fa-99b92e075839", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_A20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 96.529, + "y": 75.379, + "z": 0.61 + }, + "position3d": { + "x": 96.529, + "y": 75.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A20_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 96.529, + "y": 75.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_B20", + "uuid": "a6c578be-10c5-4a7a-9880-9ac604df0e36", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_B20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 96.529, + "y": 70.879, + "z": 0.61 + }, + "position3d": { + "x": 96.529, + "y": 70.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B20_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 96.529, + "y": 70.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_C20", + "uuid": "7bf10528-2d6c-424c-bd8f-7b531d18382f", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_C20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 96.529, + "y": 66.379, + "z": 0.61 + }, + "position3d": { + "x": 96.529, + "y": 66.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C20_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 96.529, + "y": 66.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_D20", + "uuid": "e53a311f-3c26-4c3f-b25a-22106487be2d", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_D20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 96.529, + "y": 61.879, + "z": 0.61 + }, + "position3d": { + "x": 96.529, + "y": 61.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D20_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 96.529, + "y": 61.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_E20", + "uuid": "7190deaf-3b23-4a5e-9b4d-70b9290c391d", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_E20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 96.529, + "y": 57.379, + "z": 0.61 + }, + "position3d": { + "x": 96.529, + "y": 57.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E20_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 96.529, + "y": 57.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_F20", + "uuid": "a83dcaf3-4cbd-430a-8de4-0de86f8f61ae", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_F20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 96.529, + "y": 52.879, + "z": 0.61 + }, + "position3d": { + "x": 96.529, + "y": 52.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F20_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 96.529, + "y": 52.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_G20", + "uuid": "adfddc6d-befa-466d-b1b0-7b4b34526e6c", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_G20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 96.529, + "y": 48.379, + "z": 0.61 + }, + "position3d": { + "x": 96.529, + "y": 48.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G20_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 96.529, + "y": 48.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_H20", + "uuid": "018fafb3-685e-4907-b174-27068f348c03", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_H20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 96.529, + "y": 43.879, + "z": 0.61 + }, + "position3d": { + "x": 96.529, + "y": 43.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H20_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 96.529, + "y": 43.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_I20", + "uuid": "a21a06bb-074a-4808-8459-0b0a8040f93a", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_I20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 96.529, + "y": 39.379, + "z": 0.61 + }, + "position3d": { + "x": 96.529, + "y": 39.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "I20_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 96.529, + "y": 39.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_J20", + "uuid": "c7f76a69-7bc5-4748-962e-0d4eeac65252", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_J20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 96.529, + "y": 34.879, + "z": 0.61 + }, + "position3d": { + "x": 96.529, + "y": 34.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "J20_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 96.529, + "y": 34.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_K20", + "uuid": "541e6bc7-9366-470c-8622-19764aa488fe", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_K20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 96.529, + "y": 30.379, + "z": 0.61 + }, + "position3d": { + "x": 96.529, + "y": 30.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "K20_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 96.529, + "y": 30.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_L20", + "uuid": "9831f2f3-24f9-47aa-b120-dea8cd45a845", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_L20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 96.529, + "y": 25.879, + "z": 0.61 + }, + "position3d": { + "x": 96.529, + "y": 25.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "L20_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 96.529, + "y": 25.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_M20", + "uuid": "a5021e77-50b3-4075-ae8f-288f4ffef0e2", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_M20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 96.529, + "y": 21.379, + "z": 0.61 + }, + "position3d": { + "x": 96.529, + "y": 21.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "M20_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 96.529, + "y": 21.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_N20", + "uuid": "09eba7bf-a941-4804-bf17-961631869432", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_N20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 96.529, + "y": 16.879, + "z": 0.61 + }, + "position3d": { + "x": 96.529, + "y": 16.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "N20_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 96.529, + "y": 16.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_O20", + "uuid": "aa6bf6ef-cebd-42ed-a1d0-6be4e13afb21", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_O20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 96.529, + "y": 12.379, + "z": 0.61 + }, + "position3d": { + "x": 96.529, + "y": 12.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "O20_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 96.529, + "y": 12.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_P20", + "uuid": "91964901-65ad-462a-adb1-035b2c787f81", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_P20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 96.529, + "y": 7.879, + "z": 0.61 + }, + "position3d": { + "x": 96.529, + "y": 7.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "P20_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 96.529, + "y": 7.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_A21", + "uuid": "dcd7a526-8688-4871-8737-14cb2b7c0c17", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_A21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.029, + "y": 75.379, + "z": 0.61 + }, + "position3d": { + "x": 101.029, + "y": 75.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A21_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.029, + "y": 75.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_B21", + "uuid": "c948869c-d182-4000-ae15-335ca3cc5863", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_B21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.029, + "y": 70.879, + "z": 0.61 + }, + "position3d": { + "x": 101.029, + "y": 70.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B21_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.029, + "y": 70.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_C21", + "uuid": "81b97323-7c0d-41fa-a4f1-cda88c0b64cc", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_C21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.029, + "y": 66.379, + "z": 0.61 + }, + "position3d": { + "x": 101.029, + "y": 66.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C21_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.029, + "y": 66.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_D21", + "uuid": "1df09a98-6d60-4643-be0a-e5e1a3e14f56", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_D21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.029, + "y": 61.879, + "z": 0.61 + }, + "position3d": { + "x": 101.029, + "y": 61.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D21_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.029, + "y": 61.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_E21", + "uuid": "468705b5-53e3-4c05-9f97-3897ad90fbe8", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_E21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.029, + "y": 57.379, + "z": 0.61 + }, + "position3d": { + "x": 101.029, + "y": 57.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E21_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.029, + "y": 57.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_F21", + "uuid": "567f7e30-905f-456f-bbf4-3834cd6fa264", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_F21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.029, + "y": 52.879, + "z": 0.61 + }, + "position3d": { + "x": 101.029, + "y": 52.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F21_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.029, + "y": 52.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_G21", + "uuid": "c2ab68b8-e148-4929-be29-0d77c85b89ea", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_G21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.029, + "y": 48.379, + "z": 0.61 + }, + "position3d": { + "x": 101.029, + "y": 48.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G21_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.029, + "y": 48.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_H21", + "uuid": "863e2632-8bd6-4e4b-8257-d5f96cfe9d03", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_H21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.029, + "y": 43.879, + "z": 0.61 + }, + "position3d": { + "x": 101.029, + "y": 43.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H21_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.029, + "y": 43.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_I21", + "uuid": "b29b2cb0-7c7f-4d79-a374-67af7df84549", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_I21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.029, + "y": 39.379, + "z": 0.61 + }, + "position3d": { + "x": 101.029, + "y": 39.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "I21_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.029, + "y": 39.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_J21", + "uuid": "944d943b-5e17-4a89-bfb4-24eea5ca8c80", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_J21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.029, + "y": 34.879, + "z": 0.61 + }, + "position3d": { + "x": 101.029, + "y": 34.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "J21_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.029, + "y": 34.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_K21", + "uuid": "5fa5c7cf-c4d7-470f-984f-006a47b3f645", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_K21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.029, + "y": 30.379, + "z": 0.61 + }, + "position3d": { + "x": 101.029, + "y": 30.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "K21_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.029, + "y": 30.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_L21", + "uuid": "b3190856-057d-4b3e-963d-7713e5acf034", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_L21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.029, + "y": 25.879, + "z": 0.61 + }, + "position3d": { + "x": 101.029, + "y": 25.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "L21_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.029, + "y": 25.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_M21", + "uuid": "e30b95d5-c1a8-4865-84bb-efb4a1e0bc60", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_M21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.029, + "y": 21.379, + "z": 0.61 + }, + "position3d": { + "x": 101.029, + "y": 21.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "M21_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.029, + "y": 21.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_N21", + "uuid": "ce054c26-1848-4458-aefa-de003fbeea16", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_N21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.029, + "y": 16.879, + "z": 0.61 + }, + "position3d": { + "x": 101.029, + "y": 16.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "N21_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.029, + "y": 16.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_O21", + "uuid": "df0baefd-182d-435f-b55c-fe18c8f672a7", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_O21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.029, + "y": 12.379, + "z": 0.61 + }, + "position3d": { + "x": 101.029, + "y": 12.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "O21_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.029, + "y": 12.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_P21", + "uuid": "fac812ba-1561-4b92-8c84-873f964ce1a5", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_P21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.029, + "y": 7.879, + "z": 0.61 + }, + "position3d": { + "x": 101.029, + "y": 7.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "P21_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.029, + "y": 7.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_A22", + "uuid": "a1de9b7d-eecc-4403-9a96-7c835a31bcd5", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_A22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 105.529, + "y": 75.379, + "z": 0.61 + }, + "position3d": { + "x": 105.529, + "y": 75.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A22_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 105.529, + "y": 75.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_B22", + "uuid": "65b2aa88-8e85-4bf7-8e81-28401a3c2037", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_B22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 105.529, + "y": 70.879, + "z": 0.61 + }, + "position3d": { + "x": 105.529, + "y": 70.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B22_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 105.529, + "y": 70.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_C22", + "uuid": "a89d0aa4-1f57-4484-9f67-dedb45ac0837", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_C22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 105.529, + "y": 66.379, + "z": 0.61 + }, + "position3d": { + "x": 105.529, + "y": 66.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C22_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 105.529, + "y": 66.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_D22", + "uuid": "f2cbd767-5973-451b-a770-0097a4ff1272", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_D22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 105.529, + "y": 61.879, + "z": 0.61 + }, + "position3d": { + "x": 105.529, + "y": 61.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D22_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 105.529, + "y": 61.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_E22", + "uuid": "b39a4059-559e-4418-a81f-1e6fa838c1b4", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_E22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 105.529, + "y": 57.379, + "z": 0.61 + }, + "position3d": { + "x": 105.529, + "y": 57.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E22_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 105.529, + "y": 57.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_F22", + "uuid": "6db100ac-2fe8-4b87-9096-99ff4ec68e1c", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_F22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 105.529, + "y": 52.879, + "z": 0.61 + }, + "position3d": { + "x": 105.529, + "y": 52.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F22_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 105.529, + "y": 52.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_G22", + "uuid": "694d4abd-7253-4477-9b14-f0c0dd7ecd98", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_G22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 105.529, + "y": 48.379, + "z": 0.61 + }, + "position3d": { + "x": 105.529, + "y": 48.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G22_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 105.529, + "y": 48.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_H22", + "uuid": "2743ae77-838b-4130-9c76-92e22fbfd261", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_H22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 105.529, + "y": 43.879, + "z": 0.61 + }, + "position3d": { + "x": 105.529, + "y": 43.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H22_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 105.529, + "y": 43.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_I22", + "uuid": "5472045b-2d3e-42d3-b6de-368e6169ad7d", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_I22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 105.529, + "y": 39.379, + "z": 0.61 + }, + "position3d": { + "x": 105.529, + "y": 39.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "I22_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 105.529, + "y": 39.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_J22", + "uuid": "82c73b47-06bc-43be-8b9a-92e8a896146a", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_J22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 105.529, + "y": 34.879, + "z": 0.61 + }, + "position3d": { + "x": 105.529, + "y": 34.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "J22_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 105.529, + "y": 34.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_K22", + "uuid": "fac58dac-5fe4-455d-95e5-6283394d87a0", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_K22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 105.529, + "y": 30.379, + "z": 0.61 + }, + "position3d": { + "x": 105.529, + "y": 30.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "K22_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 105.529, + "y": 30.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_L22", + "uuid": "5c6425f8-f858-4cb7-b15f-5603a46fb4cd", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_L22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 105.529, + "y": 25.879, + "z": 0.61 + }, + "position3d": { + "x": 105.529, + "y": 25.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "L22_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 105.529, + "y": 25.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_M22", + "uuid": "03669b64-8785-4a6f-bfce-0726ea3edea7", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_M22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 105.529, + "y": 21.379, + "z": 0.61 + }, + "position3d": { + "x": 105.529, + "y": 21.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "M22_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 105.529, + "y": 21.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_N22", + "uuid": "22866a54-7549-4171-864e-ca991520a70b", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_N22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 105.529, + "y": 16.879, + "z": 0.61 + }, + "position3d": { + "x": 105.529, + "y": 16.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "N22_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 105.529, + "y": 16.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_O22", + "uuid": "665cc80f-a574-435e-abe8-fb1a3541319f", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_O22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 105.529, + "y": 12.379, + "z": 0.61 + }, + "position3d": { + "x": 105.529, + "y": 12.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "O22_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 105.529, + "y": 12.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_P22", + "uuid": "b0afe2d3-55b7-4159-8df4-deea7da20e39", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_P22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 105.529, + "y": 7.879, + "z": 0.61 + }, + "position3d": { + "x": 105.529, + "y": 7.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "P22_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 105.529, + "y": 7.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_A23", + "uuid": "6eb8a285-7bb5-400c-acac-e6e4feb7e338", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_A23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.029, + "y": 75.379, + "z": 0.61 + }, + "position3d": { + "x": 110.029, + "y": 75.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A23_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.029, + "y": 75.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_B23", + "uuid": "fc0ef08e-a6e4-415b-bca6-0f87b7efd99b", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_B23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.029, + "y": 70.879, + "z": 0.61 + }, + "position3d": { + "x": 110.029, + "y": 70.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B23_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.029, + "y": 70.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_C23", + "uuid": "9f3e82c9-0e88-4d08-bef8-129d699bf7a8", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_C23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.029, + "y": 66.379, + "z": 0.61 + }, + "position3d": { + "x": 110.029, + "y": 66.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C23_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.029, + "y": 66.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_D23", + "uuid": "53d210f0-63e7-4feb-adb4-7722cc195bda", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_D23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.029, + "y": 61.879, + "z": 0.61 + }, + "position3d": { + "x": 110.029, + "y": 61.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D23_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.029, + "y": 61.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_E23", + "uuid": "36b83a84-25cd-4d88-9d47-f33df1abdd42", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_E23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.029, + "y": 57.379, + "z": 0.61 + }, + "position3d": { + "x": 110.029, + "y": 57.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E23_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.029, + "y": 57.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_F23", + "uuid": "a2a7158c-5038-4c5e-acd3-4dc1d4ea324f", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_F23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.029, + "y": 52.879, + "z": 0.61 + }, + "position3d": { + "x": 110.029, + "y": 52.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F23_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.029, + "y": 52.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_G23", + "uuid": "6f96aca8-c22e-464f-8a87-b366f8ebf61e", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_G23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.029, + "y": 48.379, + "z": 0.61 + }, + "position3d": { + "x": 110.029, + "y": 48.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G23_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.029, + "y": 48.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_H23", + "uuid": "167fd123-405e-4153-8d15-e0dc81451c84", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_H23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.029, + "y": 43.879, + "z": 0.61 + }, + "position3d": { + "x": 110.029, + "y": 43.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H23_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.029, + "y": 43.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_I23", + "uuid": "492620f0-3bf5-480c-b538-df20407e3d83", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_I23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.029, + "y": 39.379, + "z": 0.61 + }, + "position3d": { + "x": 110.029, + "y": 39.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "I23_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.029, + "y": 39.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_J23", + "uuid": "0f1cfa12-4397-4686-bb80-580a3f21699b", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_J23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.029, + "y": 34.879, + "z": 0.61 + }, + "position3d": { + "x": 110.029, + "y": 34.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "J23_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.029, + "y": 34.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_K23", + "uuid": "c10a5472-4bb8-4b44-b7ae-8fd8f0183033", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_K23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.029, + "y": 30.379, + "z": 0.61 + }, + "position3d": { + "x": 110.029, + "y": 30.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "K23_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.029, + "y": 30.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_L23", + "uuid": "5fd85503-708c-4cd6-882d-c5731ca129b2", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_L23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.029, + "y": 25.879, + "z": 0.61 + }, + "position3d": { + "x": 110.029, + "y": 25.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "L23_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.029, + "y": 25.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_M23", + "uuid": "2ccde56a-aed2-404a-9fdf-7d104dd0b9c2", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_M23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.029, + "y": 21.379, + "z": 0.61 + }, + "position3d": { + "x": 110.029, + "y": 21.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "M23_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.029, + "y": 21.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_N23", + "uuid": "4ca0d0ed-985c-47a1-8f5d-6af457a63ef9", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_N23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.029, + "y": 16.879, + "z": 0.61 + }, + "position3d": { + "x": 110.029, + "y": 16.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "N23_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.029, + "y": 16.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_O23", + "uuid": "abd6e2a3-8256-499c-9ffd-87a835924915", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_O23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.029, + "y": 12.379, + "z": 0.61 + }, + "position3d": { + "x": 110.029, + "y": 12.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "O23_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.029, + "y": 12.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_P23", + "uuid": "c7435c65-5a70-424a-8437-f48d37a82f7f", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_P23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.029, + "y": 7.879, + "z": 0.61 + }, + "position3d": { + "x": 110.029, + "y": 7.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "P23_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.029, + "y": 7.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_A24", + "uuid": "0023d51f-174d-4794-a0c7-80fca9b9dfb0", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_A24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.529, + "y": 75.379, + "z": 0.61 + }, + "position3d": { + "x": 114.529, + "y": 75.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A24_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.529, + "y": 75.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_B24", + "uuid": "6d4878d4-693a-4611-85e1-1c55b8f239fc", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_B24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.529, + "y": 70.879, + "z": 0.61 + }, + "position3d": { + "x": 114.529, + "y": 70.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B24_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.529, + "y": 70.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_C24", + "uuid": "23a1cb63-d24b-45cf-a81e-53f9445dc576", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_C24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.529, + "y": 66.379, + "z": 0.61 + }, + "position3d": { + "x": 114.529, + "y": 66.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C24_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.529, + "y": 66.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_D24", + "uuid": "6daf1436-e7c6-4000-96b4-2e7ae1000da5", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_D24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.529, + "y": 61.879, + "z": 0.61 + }, + "position3d": { + "x": 114.529, + "y": 61.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D24_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.529, + "y": 61.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_E24", + "uuid": "01e855c5-0a94-448a-acd6-d560d6f9aa1a", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_E24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.529, + "y": 57.379, + "z": 0.61 + }, + "position3d": { + "x": 114.529, + "y": 57.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E24_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.529, + "y": 57.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_F24", + "uuid": "0762ee6b-ac16-4b97-832d-b9e64b74c84d", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_F24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.529, + "y": 52.879, + "z": 0.61 + }, + "position3d": { + "x": 114.529, + "y": 52.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F24_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.529, + "y": 52.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_G24", + "uuid": "f27406c1-b7cd-4c6a-9415-8ce23fa3bc3a", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_G24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.529, + "y": 48.379, + "z": 0.61 + }, + "position3d": { + "x": 114.529, + "y": 48.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G24_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.529, + "y": 48.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_H24", + "uuid": "445579b6-0af1-413a-9a1c-1eebbaee882e", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_H24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.529, + "y": 43.879, + "z": 0.61 + }, + "position3d": { + "x": 114.529, + "y": 43.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H24_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.529, + "y": 43.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_I24", + "uuid": "9c0af0d9-e97a-4159-9d47-c86842efed82", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_I24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.529, + "y": 39.379, + "z": 0.61 + }, + "position3d": { + "x": 114.529, + "y": 39.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "I24_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.529, + "y": 39.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_J24", + "uuid": "5e9430a6-1460-44eb-8f71-bdc44be43714", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_J24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.529, + "y": 34.879, + "z": 0.61 + }, + "position3d": { + "x": 114.529, + "y": 34.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "J24_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.529, + "y": 34.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_K24", + "uuid": "5e9595e4-b0d3-453b-919c-f6e566a512ae", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_K24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.529, + "y": 30.379, + "z": 0.61 + }, + "position3d": { + "x": 114.529, + "y": 30.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "K24_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.529, + "y": 30.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_L24", + "uuid": "cbe31759-14c8-4723-8a69-59a572f3a9e5", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_L24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.529, + "y": 25.879, + "z": 0.61 + }, + "position3d": { + "x": 114.529, + "y": 25.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "L24_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.529, + "y": 25.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_M24", + "uuid": "36beda28-e002-447f-a275-f1379a359424", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_M24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.529, + "y": 21.379, + "z": 0.61 + }, + "position3d": { + "x": 114.529, + "y": 21.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "M24_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.529, + "y": 21.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_N24", + "uuid": "30a18346-a600-41b3-aa14-42e3f2f5ca57", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_N24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.529, + "y": 16.879, + "z": 0.61 + }, + "position3d": { + "x": 114.529, + "y": 16.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "N24_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.529, + "y": 16.879, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_O24", + "uuid": "72de9445-8d95-4c23-b4db-e8130f56af01", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_O24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.529, + "y": 12.379, + "z": 0.61 + }, + "position3d": { + "x": 114.529, + "y": 12.379, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "O24_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.529, + "y": 12.379, + "z": 0.61 + } + }, + { + "id": "appliedbiosystemsmicroamp_384_wellplate_40ul_P24", + "uuid": "735ca76b-9b29-460e-a32d-6c7fc7d9555d", + "name": "appliedbiosystemsmicroamp_384_wellplate_40ul_P24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "224b3f44-74e4-47c2-9e92-25417329017a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.09, + "width": 2.242, + "height": 2.242 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.529, + "y": 7.879, + "z": 0.61 + }, + "position3d": { + "x": 114.529, + "y": 7.879, + "z": 0.61 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.242, + "size_y": 2.242, + "size_z": 9.09, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 40, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "P24_volume_tracker", + "max_volume": 40, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.529, + "y": 7.879, + "z": 0.61 + } + } + ] + }, + { + "id": "biorad_384_wellplate_50ul", + "category": [ + "plates" + ], + "class": { + "module": "pylabrobot.resources.opentrons.plates:biorad_384_wellplate_50ul", + "type": "pylabrobot" + }, + "description": "BioRad 384 wellplate 50ul", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/opentrons/plates.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "biorad_384_wellplate_50ul", + "uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "name": "biorad_384_wellplate_50ul", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "plate", + "class": "", + "pose": { + "size": { + "depth": 10.4, + "width": 127.76, + "height": 85.48 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Plate", + "size_x": 127.76, + "size_y": 85.48, + "size_z": 10.4, + "category": "plate", + "model": "Bio-Rad 384 Well Plate 50 µL", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "biorad_384_wellplate_50ul_A1", + "B1": "biorad_384_wellplate_50ul_B1", + "C1": "biorad_384_wellplate_50ul_C1", + "D1": "biorad_384_wellplate_50ul_D1", + "E1": "biorad_384_wellplate_50ul_E1", + "F1": "biorad_384_wellplate_50ul_F1", + "G1": "biorad_384_wellplate_50ul_G1", + "H1": "biorad_384_wellplate_50ul_H1", + "I1": "biorad_384_wellplate_50ul_I1", + "J1": "biorad_384_wellplate_50ul_J1", + "K1": "biorad_384_wellplate_50ul_K1", + "L1": "biorad_384_wellplate_50ul_L1", + "M1": "biorad_384_wellplate_50ul_M1", + "N1": "biorad_384_wellplate_50ul_N1", + "O1": "biorad_384_wellplate_50ul_O1", + "P1": "biorad_384_wellplate_50ul_P1", + "A2": "biorad_384_wellplate_50ul_A2", + "B2": "biorad_384_wellplate_50ul_B2", + "C2": "biorad_384_wellplate_50ul_C2", + "D2": "biorad_384_wellplate_50ul_D2", + "E2": "biorad_384_wellplate_50ul_E2", + "F2": "biorad_384_wellplate_50ul_F2", + "G2": "biorad_384_wellplate_50ul_G2", + "H2": "biorad_384_wellplate_50ul_H2", + "I2": "biorad_384_wellplate_50ul_I2", + "J2": "biorad_384_wellplate_50ul_J2", + "K2": "biorad_384_wellplate_50ul_K2", + "L2": "biorad_384_wellplate_50ul_L2", + "M2": "biorad_384_wellplate_50ul_M2", + "N2": "biorad_384_wellplate_50ul_N2", + "O2": "biorad_384_wellplate_50ul_O2", + "P2": "biorad_384_wellplate_50ul_P2", + "A3": "biorad_384_wellplate_50ul_A3", + "B3": "biorad_384_wellplate_50ul_B3", + "C3": "biorad_384_wellplate_50ul_C3", + "D3": "biorad_384_wellplate_50ul_D3", + "E3": "biorad_384_wellplate_50ul_E3", + "F3": "biorad_384_wellplate_50ul_F3", + "G3": "biorad_384_wellplate_50ul_G3", + "H3": "biorad_384_wellplate_50ul_H3", + "I3": "biorad_384_wellplate_50ul_I3", + "J3": "biorad_384_wellplate_50ul_J3", + "K3": "biorad_384_wellplate_50ul_K3", + "L3": "biorad_384_wellplate_50ul_L3", + "M3": "biorad_384_wellplate_50ul_M3", + "N3": "biorad_384_wellplate_50ul_N3", + "O3": "biorad_384_wellplate_50ul_O3", + "P3": "biorad_384_wellplate_50ul_P3", + "A4": "biorad_384_wellplate_50ul_A4", + "B4": "biorad_384_wellplate_50ul_B4", + "C4": "biorad_384_wellplate_50ul_C4", + "D4": "biorad_384_wellplate_50ul_D4", + "E4": "biorad_384_wellplate_50ul_E4", + "F4": "biorad_384_wellplate_50ul_F4", + "G4": "biorad_384_wellplate_50ul_G4", + "H4": "biorad_384_wellplate_50ul_H4", + "I4": "biorad_384_wellplate_50ul_I4", + "J4": "biorad_384_wellplate_50ul_J4", + "K4": "biorad_384_wellplate_50ul_K4", + "L4": "biorad_384_wellplate_50ul_L4", + "M4": "biorad_384_wellplate_50ul_M4", + "N4": "biorad_384_wellplate_50ul_N4", + "O4": "biorad_384_wellplate_50ul_O4", + "P4": "biorad_384_wellplate_50ul_P4", + "A5": "biorad_384_wellplate_50ul_A5", + "B5": "biorad_384_wellplate_50ul_B5", + "C5": "biorad_384_wellplate_50ul_C5", + "D5": "biorad_384_wellplate_50ul_D5", + "E5": "biorad_384_wellplate_50ul_E5", + "F5": "biorad_384_wellplate_50ul_F5", + "G5": "biorad_384_wellplate_50ul_G5", + "H5": "biorad_384_wellplate_50ul_H5", + "I5": "biorad_384_wellplate_50ul_I5", + "J5": "biorad_384_wellplate_50ul_J5", + "K5": "biorad_384_wellplate_50ul_K5", + "L5": "biorad_384_wellplate_50ul_L5", + "M5": "biorad_384_wellplate_50ul_M5", + "N5": "biorad_384_wellplate_50ul_N5", + "O5": "biorad_384_wellplate_50ul_O5", + "P5": "biorad_384_wellplate_50ul_P5", + "A6": "biorad_384_wellplate_50ul_A6", + "B6": "biorad_384_wellplate_50ul_B6", + "C6": "biorad_384_wellplate_50ul_C6", + "D6": "biorad_384_wellplate_50ul_D6", + "E6": "biorad_384_wellplate_50ul_E6", + "F6": "biorad_384_wellplate_50ul_F6", + "G6": "biorad_384_wellplate_50ul_G6", + "H6": "biorad_384_wellplate_50ul_H6", + "I6": "biorad_384_wellplate_50ul_I6", + "J6": "biorad_384_wellplate_50ul_J6", + "K6": "biorad_384_wellplate_50ul_K6", + "L6": "biorad_384_wellplate_50ul_L6", + "M6": "biorad_384_wellplate_50ul_M6", + "N6": "biorad_384_wellplate_50ul_N6", + "O6": "biorad_384_wellplate_50ul_O6", + "P6": "biorad_384_wellplate_50ul_P6", + "A7": "biorad_384_wellplate_50ul_A7", + "B7": "biorad_384_wellplate_50ul_B7", + "C7": "biorad_384_wellplate_50ul_C7", + "D7": "biorad_384_wellplate_50ul_D7", + "E7": "biorad_384_wellplate_50ul_E7", + "F7": "biorad_384_wellplate_50ul_F7", + "G7": "biorad_384_wellplate_50ul_G7", + "H7": "biorad_384_wellplate_50ul_H7", + "I7": "biorad_384_wellplate_50ul_I7", + "J7": "biorad_384_wellplate_50ul_J7", + "K7": "biorad_384_wellplate_50ul_K7", + "L7": "biorad_384_wellplate_50ul_L7", + "M7": "biorad_384_wellplate_50ul_M7", + "N7": "biorad_384_wellplate_50ul_N7", + "O7": "biorad_384_wellplate_50ul_O7", + "P7": "biorad_384_wellplate_50ul_P7", + "A8": "biorad_384_wellplate_50ul_A8", + "B8": "biorad_384_wellplate_50ul_B8", + "C8": "biorad_384_wellplate_50ul_C8", + "D8": "biorad_384_wellplate_50ul_D8", + "E8": "biorad_384_wellplate_50ul_E8", + "F8": "biorad_384_wellplate_50ul_F8", + "G8": "biorad_384_wellplate_50ul_G8", + "H8": "biorad_384_wellplate_50ul_H8", + "I8": "biorad_384_wellplate_50ul_I8", + "J8": "biorad_384_wellplate_50ul_J8", + "K8": "biorad_384_wellplate_50ul_K8", + "L8": "biorad_384_wellplate_50ul_L8", + "M8": "biorad_384_wellplate_50ul_M8", + "N8": "biorad_384_wellplate_50ul_N8", + "O8": "biorad_384_wellplate_50ul_O8", + "P8": "biorad_384_wellplate_50ul_P8", + "A9": "biorad_384_wellplate_50ul_A9", + "B9": "biorad_384_wellplate_50ul_B9", + "C9": "biorad_384_wellplate_50ul_C9", + "D9": "biorad_384_wellplate_50ul_D9", + "E9": "biorad_384_wellplate_50ul_E9", + "F9": "biorad_384_wellplate_50ul_F9", + "G9": "biorad_384_wellplate_50ul_G9", + "H9": "biorad_384_wellplate_50ul_H9", + "I9": "biorad_384_wellplate_50ul_I9", + "J9": "biorad_384_wellplate_50ul_J9", + "K9": "biorad_384_wellplate_50ul_K9", + "L9": "biorad_384_wellplate_50ul_L9", + "M9": "biorad_384_wellplate_50ul_M9", + "N9": "biorad_384_wellplate_50ul_N9", + "O9": "biorad_384_wellplate_50ul_O9", + "P9": "biorad_384_wellplate_50ul_P9", + "A10": "biorad_384_wellplate_50ul_A10", + "B10": "biorad_384_wellplate_50ul_B10", + "C10": "biorad_384_wellplate_50ul_C10", + "D10": "biorad_384_wellplate_50ul_D10", + "E10": "biorad_384_wellplate_50ul_E10", + "F10": "biorad_384_wellplate_50ul_F10", + "G10": "biorad_384_wellplate_50ul_G10", + "H10": "biorad_384_wellplate_50ul_H10", + "I10": "biorad_384_wellplate_50ul_I10", + "J10": "biorad_384_wellplate_50ul_J10", + "K10": "biorad_384_wellplate_50ul_K10", + "L10": "biorad_384_wellplate_50ul_L10", + "M10": "biorad_384_wellplate_50ul_M10", + "N10": "biorad_384_wellplate_50ul_N10", + "O10": "biorad_384_wellplate_50ul_O10", + "P10": "biorad_384_wellplate_50ul_P10", + "A11": "biorad_384_wellplate_50ul_A11", + "B11": "biorad_384_wellplate_50ul_B11", + "C11": "biorad_384_wellplate_50ul_C11", + "D11": "biorad_384_wellplate_50ul_D11", + "E11": "biorad_384_wellplate_50ul_E11", + "F11": "biorad_384_wellplate_50ul_F11", + "G11": "biorad_384_wellplate_50ul_G11", + "H11": "biorad_384_wellplate_50ul_H11", + "I11": "biorad_384_wellplate_50ul_I11", + "J11": "biorad_384_wellplate_50ul_J11", + "K11": "biorad_384_wellplate_50ul_K11", + "L11": "biorad_384_wellplate_50ul_L11", + "M11": "biorad_384_wellplate_50ul_M11", + "N11": "biorad_384_wellplate_50ul_N11", + "O11": "biorad_384_wellplate_50ul_O11", + "P11": "biorad_384_wellplate_50ul_P11", + "A12": "biorad_384_wellplate_50ul_A12", + "B12": "biorad_384_wellplate_50ul_B12", + "C12": "biorad_384_wellplate_50ul_C12", + "D12": "biorad_384_wellplate_50ul_D12", + "E12": "biorad_384_wellplate_50ul_E12", + "F12": "biorad_384_wellplate_50ul_F12", + "G12": "biorad_384_wellplate_50ul_G12", + "H12": "biorad_384_wellplate_50ul_H12", + "I12": "biorad_384_wellplate_50ul_I12", + "J12": "biorad_384_wellplate_50ul_J12", + "K12": "biorad_384_wellplate_50ul_K12", + "L12": "biorad_384_wellplate_50ul_L12", + "M12": "biorad_384_wellplate_50ul_M12", + "N12": "biorad_384_wellplate_50ul_N12", + "O12": "biorad_384_wellplate_50ul_O12", + "P12": "biorad_384_wellplate_50ul_P12", + "A13": "biorad_384_wellplate_50ul_A13", + "B13": "biorad_384_wellplate_50ul_B13", + "C13": "biorad_384_wellplate_50ul_C13", + "D13": "biorad_384_wellplate_50ul_D13", + "E13": "biorad_384_wellplate_50ul_E13", + "F13": "biorad_384_wellplate_50ul_F13", + "G13": "biorad_384_wellplate_50ul_G13", + "H13": "biorad_384_wellplate_50ul_H13", + "I13": "biorad_384_wellplate_50ul_I13", + "J13": "biorad_384_wellplate_50ul_J13", + "K13": "biorad_384_wellplate_50ul_K13", + "L13": "biorad_384_wellplate_50ul_L13", + "M13": "biorad_384_wellplate_50ul_M13", + "N13": "biorad_384_wellplate_50ul_N13", + "O13": "biorad_384_wellplate_50ul_O13", + "P13": "biorad_384_wellplate_50ul_P13", + "A14": "biorad_384_wellplate_50ul_A14", + "B14": "biorad_384_wellplate_50ul_B14", + "C14": "biorad_384_wellplate_50ul_C14", + "D14": "biorad_384_wellplate_50ul_D14", + "E14": "biorad_384_wellplate_50ul_E14", + "F14": "biorad_384_wellplate_50ul_F14", + "G14": "biorad_384_wellplate_50ul_G14", + "H14": "biorad_384_wellplate_50ul_H14", + "I14": "biorad_384_wellplate_50ul_I14", + "J14": "biorad_384_wellplate_50ul_J14", + "K14": "biorad_384_wellplate_50ul_K14", + "L14": "biorad_384_wellplate_50ul_L14", + "M14": "biorad_384_wellplate_50ul_M14", + "N14": "biorad_384_wellplate_50ul_N14", + "O14": "biorad_384_wellplate_50ul_O14", + "P14": "biorad_384_wellplate_50ul_P14", + "A15": "biorad_384_wellplate_50ul_A15", + "B15": "biorad_384_wellplate_50ul_B15", + "C15": "biorad_384_wellplate_50ul_C15", + "D15": "biorad_384_wellplate_50ul_D15", + "E15": "biorad_384_wellplate_50ul_E15", + "F15": "biorad_384_wellplate_50ul_F15", + "G15": "biorad_384_wellplate_50ul_G15", + "H15": "biorad_384_wellplate_50ul_H15", + "I15": "biorad_384_wellplate_50ul_I15", + "J15": "biorad_384_wellplate_50ul_J15", + "K15": "biorad_384_wellplate_50ul_K15", + "L15": "biorad_384_wellplate_50ul_L15", + "M15": "biorad_384_wellplate_50ul_M15", + "N15": "biorad_384_wellplate_50ul_N15", + "O15": "biorad_384_wellplate_50ul_O15", + "P15": "biorad_384_wellplate_50ul_P15", + "A16": "biorad_384_wellplate_50ul_A16", + "B16": "biorad_384_wellplate_50ul_B16", + "C16": "biorad_384_wellplate_50ul_C16", + "D16": "biorad_384_wellplate_50ul_D16", + "E16": "biorad_384_wellplate_50ul_E16", + "F16": "biorad_384_wellplate_50ul_F16", + "G16": "biorad_384_wellplate_50ul_G16", + "H16": "biorad_384_wellplate_50ul_H16", + "I16": "biorad_384_wellplate_50ul_I16", + "J16": "biorad_384_wellplate_50ul_J16", + "K16": "biorad_384_wellplate_50ul_K16", + "L16": "biorad_384_wellplate_50ul_L16", + "M16": "biorad_384_wellplate_50ul_M16", + "N16": "biorad_384_wellplate_50ul_N16", + "O16": "biorad_384_wellplate_50ul_O16", + "P16": "biorad_384_wellplate_50ul_P16", + "A17": "biorad_384_wellplate_50ul_A17", + "B17": "biorad_384_wellplate_50ul_B17", + "C17": "biorad_384_wellplate_50ul_C17", + "D17": "biorad_384_wellplate_50ul_D17", + "E17": "biorad_384_wellplate_50ul_E17", + "F17": "biorad_384_wellplate_50ul_F17", + "G17": "biorad_384_wellplate_50ul_G17", + "H17": "biorad_384_wellplate_50ul_H17", + "I17": "biorad_384_wellplate_50ul_I17", + "J17": "biorad_384_wellplate_50ul_J17", + "K17": "biorad_384_wellplate_50ul_K17", + "L17": "biorad_384_wellplate_50ul_L17", + "M17": "biorad_384_wellplate_50ul_M17", + "N17": "biorad_384_wellplate_50ul_N17", + "O17": "biorad_384_wellplate_50ul_O17", + "P17": "biorad_384_wellplate_50ul_P17", + "A18": "biorad_384_wellplate_50ul_A18", + "B18": "biorad_384_wellplate_50ul_B18", + "C18": "biorad_384_wellplate_50ul_C18", + "D18": "biorad_384_wellplate_50ul_D18", + "E18": "biorad_384_wellplate_50ul_E18", + "F18": "biorad_384_wellplate_50ul_F18", + "G18": "biorad_384_wellplate_50ul_G18", + "H18": "biorad_384_wellplate_50ul_H18", + "I18": "biorad_384_wellplate_50ul_I18", + "J18": "biorad_384_wellplate_50ul_J18", + "K18": "biorad_384_wellplate_50ul_K18", + "L18": "biorad_384_wellplate_50ul_L18", + "M18": "biorad_384_wellplate_50ul_M18", + "N18": "biorad_384_wellplate_50ul_N18", + "O18": "biorad_384_wellplate_50ul_O18", + "P18": "biorad_384_wellplate_50ul_P18", + "A19": "biorad_384_wellplate_50ul_A19", + "B19": "biorad_384_wellplate_50ul_B19", + "C19": "biorad_384_wellplate_50ul_C19", + "D19": "biorad_384_wellplate_50ul_D19", + "E19": "biorad_384_wellplate_50ul_E19", + "F19": "biorad_384_wellplate_50ul_F19", + "G19": "biorad_384_wellplate_50ul_G19", + "H19": "biorad_384_wellplate_50ul_H19", + "I19": "biorad_384_wellplate_50ul_I19", + "J19": "biorad_384_wellplate_50ul_J19", + "K19": "biorad_384_wellplate_50ul_K19", + "L19": "biorad_384_wellplate_50ul_L19", + "M19": "biorad_384_wellplate_50ul_M19", + "N19": "biorad_384_wellplate_50ul_N19", + "O19": "biorad_384_wellplate_50ul_O19", + "P19": "biorad_384_wellplate_50ul_P19", + "A20": "biorad_384_wellplate_50ul_A20", + "B20": "biorad_384_wellplate_50ul_B20", + "C20": "biorad_384_wellplate_50ul_C20", + "D20": "biorad_384_wellplate_50ul_D20", + "E20": "biorad_384_wellplate_50ul_E20", + "F20": "biorad_384_wellplate_50ul_F20", + "G20": "biorad_384_wellplate_50ul_G20", + "H20": "biorad_384_wellplate_50ul_H20", + "I20": "biorad_384_wellplate_50ul_I20", + "J20": "biorad_384_wellplate_50ul_J20", + "K20": "biorad_384_wellplate_50ul_K20", + "L20": "biorad_384_wellplate_50ul_L20", + "M20": "biorad_384_wellplate_50ul_M20", + "N20": "biorad_384_wellplate_50ul_N20", + "O20": "biorad_384_wellplate_50ul_O20", + "P20": "biorad_384_wellplate_50ul_P20", + "A21": "biorad_384_wellplate_50ul_A21", + "B21": "biorad_384_wellplate_50ul_B21", + "C21": "biorad_384_wellplate_50ul_C21", + "D21": "biorad_384_wellplate_50ul_D21", + "E21": "biorad_384_wellplate_50ul_E21", + "F21": "biorad_384_wellplate_50ul_F21", + "G21": "biorad_384_wellplate_50ul_G21", + "H21": "biorad_384_wellplate_50ul_H21", + "I21": "biorad_384_wellplate_50ul_I21", + "J21": "biorad_384_wellplate_50ul_J21", + "K21": "biorad_384_wellplate_50ul_K21", + "L21": "biorad_384_wellplate_50ul_L21", + "M21": "biorad_384_wellplate_50ul_M21", + "N21": "biorad_384_wellplate_50ul_N21", + "O21": "biorad_384_wellplate_50ul_O21", + "P21": "biorad_384_wellplate_50ul_P21", + "A22": "biorad_384_wellplate_50ul_A22", + "B22": "biorad_384_wellplate_50ul_B22", + "C22": "biorad_384_wellplate_50ul_C22", + "D22": "biorad_384_wellplate_50ul_D22", + "E22": "biorad_384_wellplate_50ul_E22", + "F22": "biorad_384_wellplate_50ul_F22", + "G22": "biorad_384_wellplate_50ul_G22", + "H22": "biorad_384_wellplate_50ul_H22", + "I22": "biorad_384_wellplate_50ul_I22", + "J22": "biorad_384_wellplate_50ul_J22", + "K22": "biorad_384_wellplate_50ul_K22", + "L22": "biorad_384_wellplate_50ul_L22", + "M22": "biorad_384_wellplate_50ul_M22", + "N22": "biorad_384_wellplate_50ul_N22", + "O22": "biorad_384_wellplate_50ul_O22", + "P22": "biorad_384_wellplate_50ul_P22", + "A23": "biorad_384_wellplate_50ul_A23", + "B23": "biorad_384_wellplate_50ul_B23", + "C23": "biorad_384_wellplate_50ul_C23", + "D23": "biorad_384_wellplate_50ul_D23", + "E23": "biorad_384_wellplate_50ul_E23", + "F23": "biorad_384_wellplate_50ul_F23", + "G23": "biorad_384_wellplate_50ul_G23", + "H23": "biorad_384_wellplate_50ul_H23", + "I23": "biorad_384_wellplate_50ul_I23", + "J23": "biorad_384_wellplate_50ul_J23", + "K23": "biorad_384_wellplate_50ul_K23", + "L23": "biorad_384_wellplate_50ul_L23", + "M23": "biorad_384_wellplate_50ul_M23", + "N23": "biorad_384_wellplate_50ul_N23", + "O23": "biorad_384_wellplate_50ul_O23", + "P23": "biorad_384_wellplate_50ul_P23", + "A24": "biorad_384_wellplate_50ul_A24", + "B24": "biorad_384_wellplate_50ul_B24", + "C24": "biorad_384_wellplate_50ul_C24", + "D24": "biorad_384_wellplate_50ul_D24", + "E24": "biorad_384_wellplate_50ul_E24", + "F24": "biorad_384_wellplate_50ul_F24", + "G24": "biorad_384_wellplate_50ul_G24", + "H24": "biorad_384_wellplate_50ul_H24", + "I24": "biorad_384_wellplate_50ul_I24", + "J24": "biorad_384_wellplate_50ul_J24", + "K24": "biorad_384_wellplate_50ul_K24", + "L24": "biorad_384_wellplate_50ul_L24", + "M24": "biorad_384_wellplate_50ul_M24", + "N24": "biorad_384_wellplate_50ul_N24", + "O24": "biorad_384_wellplate_50ul_O24", + "P24": "biorad_384_wellplate_50ul_P24" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "biorad_384_wellplate_50ul_A1", + "uuid": "1036e482-cca9-4f97-9eaf-8beae0314517", + "name": "biorad_384_wellplate_50ul_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.034, + "y": 75.394, + "z": 1.05 + }, + "position3d": { + "x": 11.034, + "y": 75.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A1_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.034, + "y": 75.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_B1", + "uuid": "92ffccfa-6dac-47d2-938b-0419f1944b7f", + "name": "biorad_384_wellplate_50ul_B1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.034, + "y": 70.894, + "z": 1.05 + }, + "position3d": { + "x": 11.034, + "y": 70.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B1_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.034, + "y": 70.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_C1", + "uuid": "f31f84cc-ec3a-4b17-9e36-34afec9aa7f8", + "name": "biorad_384_wellplate_50ul_C1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.034, + "y": 66.394, + "z": 1.05 + }, + "position3d": { + "x": 11.034, + "y": 66.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C1_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.034, + "y": 66.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_D1", + "uuid": "ac10192e-0f1b-4bbf-8be5-66c48536e5a4", + "name": "biorad_384_wellplate_50ul_D1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.034, + "y": 61.894, + "z": 1.05 + }, + "position3d": { + "x": 11.034, + "y": 61.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D1_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.034, + "y": 61.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_E1", + "uuid": "c6456521-31e9-4abe-a7be-6f7330a21133", + "name": "biorad_384_wellplate_50ul_E1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.034, + "y": 57.394, + "z": 1.05 + }, + "position3d": { + "x": 11.034, + "y": 57.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E1_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.034, + "y": 57.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_F1", + "uuid": "cd789874-442c-42a8-af92-be1ff479faa2", + "name": "biorad_384_wellplate_50ul_F1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.034, + "y": 52.894, + "z": 1.05 + }, + "position3d": { + "x": 11.034, + "y": 52.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F1_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.034, + "y": 52.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_G1", + "uuid": "6b5f064e-ee52-409a-8c48-5ab0979f8f23", + "name": "biorad_384_wellplate_50ul_G1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.034, + "y": 48.394, + "z": 1.05 + }, + "position3d": { + "x": 11.034, + "y": 48.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G1_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.034, + "y": 48.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_H1", + "uuid": "b0aefa7f-a018-4958-8354-9ef15b61b7bf", + "name": "biorad_384_wellplate_50ul_H1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.034, + "y": 43.894, + "z": 1.05 + }, + "position3d": { + "x": 11.034, + "y": 43.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H1_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.034, + "y": 43.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_I1", + "uuid": "7ac3b308-e2a4-4155-a58c-b85abbdcc54d", + "name": "biorad_384_wellplate_50ul_I1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.034, + "y": 39.394, + "z": 1.05 + }, + "position3d": { + "x": 11.034, + "y": 39.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "I1_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.034, + "y": 39.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_J1", + "uuid": "f43d0fee-56b3-424b-93ed-ded063b8aeba", + "name": "biorad_384_wellplate_50ul_J1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.034, + "y": 34.894, + "z": 1.05 + }, + "position3d": { + "x": 11.034, + "y": 34.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "J1_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.034, + "y": 34.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_K1", + "uuid": "c6356ea7-bd7d-487e-b0df-ffa380ef8221", + "name": "biorad_384_wellplate_50ul_K1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.034, + "y": 30.394, + "z": 1.05 + }, + "position3d": { + "x": 11.034, + "y": 30.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "K1_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.034, + "y": 30.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_L1", + "uuid": "7bb865f1-66e5-48f1-ba98-909e8c2714ff", + "name": "biorad_384_wellplate_50ul_L1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.034, + "y": 25.894, + "z": 1.05 + }, + "position3d": { + "x": 11.034, + "y": 25.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "L1_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.034, + "y": 25.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_M1", + "uuid": "f7c88e30-c080-4a19-9319-d0f96e0ecc73", + "name": "biorad_384_wellplate_50ul_M1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.034, + "y": 21.394, + "z": 1.05 + }, + "position3d": { + "x": 11.034, + "y": 21.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "M1_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.034, + "y": 21.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_N1", + "uuid": "207490a9-dbf3-48c5-b6b8-22fc819ae315", + "name": "biorad_384_wellplate_50ul_N1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.034, + "y": 16.894, + "z": 1.05 + }, + "position3d": { + "x": 11.034, + "y": 16.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "N1_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.034, + "y": 16.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_O1", + "uuid": "7b4eced7-5de4-4e7d-bf93-65749bc42d1d", + "name": "biorad_384_wellplate_50ul_O1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.034, + "y": 12.394, + "z": 1.05 + }, + "position3d": { + "x": 11.034, + "y": 12.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "O1_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.034, + "y": 12.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_P1", + "uuid": "42353885-676b-45f0-99b1-4e1d3dcba7f1", + "name": "biorad_384_wellplate_50ul_P1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.034, + "y": 7.894, + "z": 1.05 + }, + "position3d": { + "x": 11.034, + "y": 7.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "P1_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.034, + "y": 7.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_A2", + "uuid": "faf645f2-b507-48af-919e-f11de9309ccc", + "name": "biorad_384_wellplate_50ul_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 15.534, + "y": 75.394, + "z": 1.05 + }, + "position3d": { + "x": 15.534, + "y": 75.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A2_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 15.534, + "y": 75.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_B2", + "uuid": "7654b303-f77e-4b4f-a5af-59aa3d97fdf0", + "name": "biorad_384_wellplate_50ul_B2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 15.534, + "y": 70.894, + "z": 1.05 + }, + "position3d": { + "x": 15.534, + "y": 70.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B2_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 15.534, + "y": 70.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_C2", + "uuid": "53b2d9d9-4f8d-4317-9c82-d395f2bc0da4", + "name": "biorad_384_wellplate_50ul_C2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 15.534, + "y": 66.394, + "z": 1.05 + }, + "position3d": { + "x": 15.534, + "y": 66.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C2_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 15.534, + "y": 66.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_D2", + "uuid": "964662c7-e71a-4cda-a2d9-ad973c27d312", + "name": "biorad_384_wellplate_50ul_D2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 15.534, + "y": 61.894, + "z": 1.05 + }, + "position3d": { + "x": 15.534, + "y": 61.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D2_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 15.534, + "y": 61.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_E2", + "uuid": "74821059-1819-4dbc-a476-a6f2962fbaf5", + "name": "biorad_384_wellplate_50ul_E2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 15.534, + "y": 57.394, + "z": 1.05 + }, + "position3d": { + "x": 15.534, + "y": 57.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E2_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 15.534, + "y": 57.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_F2", + "uuid": "3fda0436-362a-45d7-b5d0-050b25c5fbb7", + "name": "biorad_384_wellplate_50ul_F2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 15.534, + "y": 52.894, + "z": 1.05 + }, + "position3d": { + "x": 15.534, + "y": 52.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F2_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 15.534, + "y": 52.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_G2", + "uuid": "58fa93e3-523e-4b75-99e0-adfaa8209f01", + "name": "biorad_384_wellplate_50ul_G2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 15.534, + "y": 48.394, + "z": 1.05 + }, + "position3d": { + "x": 15.534, + "y": 48.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G2_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 15.534, + "y": 48.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_H2", + "uuid": "c8b3cd37-db88-4f21-82bf-156eb976a8c3", + "name": "biorad_384_wellplate_50ul_H2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 15.534, + "y": 43.894, + "z": 1.05 + }, + "position3d": { + "x": 15.534, + "y": 43.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H2_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 15.534, + "y": 43.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_I2", + "uuid": "eef8d904-0c3b-4f1b-85cf-5ff72c9c423f", + "name": "biorad_384_wellplate_50ul_I2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 15.534, + "y": 39.394, + "z": 1.05 + }, + "position3d": { + "x": 15.534, + "y": 39.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "I2_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 15.534, + "y": 39.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_J2", + "uuid": "a2829942-886b-4e99-8d68-67afa70aa563", + "name": "biorad_384_wellplate_50ul_J2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 15.534, + "y": 34.894, + "z": 1.05 + }, + "position3d": { + "x": 15.534, + "y": 34.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "J2_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 15.534, + "y": 34.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_K2", + "uuid": "89485c19-6c16-49b2-a7b0-412087302a22", + "name": "biorad_384_wellplate_50ul_K2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 15.534, + "y": 30.394, + "z": 1.05 + }, + "position3d": { + "x": 15.534, + "y": 30.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "K2_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 15.534, + "y": 30.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_L2", + "uuid": "530f39e7-564f-47b7-8441-f32ab54c35f5", + "name": "biorad_384_wellplate_50ul_L2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 15.534, + "y": 25.894, + "z": 1.05 + }, + "position3d": { + "x": 15.534, + "y": 25.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "L2_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 15.534, + "y": 25.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_M2", + "uuid": "b9208069-0210-4bf0-b863-a65087a7b0ca", + "name": "biorad_384_wellplate_50ul_M2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 15.534, + "y": 21.394, + "z": 1.05 + }, + "position3d": { + "x": 15.534, + "y": 21.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "M2_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 15.534, + "y": 21.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_N2", + "uuid": "e04c646c-67e5-41f8-8f71-364d23a6430b", + "name": "biorad_384_wellplate_50ul_N2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 15.534, + "y": 16.894, + "z": 1.05 + }, + "position3d": { + "x": 15.534, + "y": 16.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "N2_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 15.534, + "y": 16.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_O2", + "uuid": "85dd331f-682f-4eab-835d-1d52daabf482", + "name": "biorad_384_wellplate_50ul_O2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 15.534, + "y": 12.394, + "z": 1.05 + }, + "position3d": { + "x": 15.534, + "y": 12.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "O2_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 15.534, + "y": 12.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_P2", + "uuid": "2fcda6ca-b484-42ba-86ad-ec0d34f2ce56", + "name": "biorad_384_wellplate_50ul_P2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 15.534, + "y": 7.894, + "z": 1.05 + }, + "position3d": { + "x": 15.534, + "y": 7.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "P2_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 15.534, + "y": 7.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_A3", + "uuid": "8d84b740-bdc9-40a7-983d-4549c072fa41", + "name": "biorad_384_wellplate_50ul_A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.034, + "y": 75.394, + "z": 1.05 + }, + "position3d": { + "x": 20.034, + "y": 75.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A3_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.034, + "y": 75.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_B3", + "uuid": "f420c4d4-060a-42e5-b97b-c39716bee972", + "name": "biorad_384_wellplate_50ul_B3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.034, + "y": 70.894, + "z": 1.05 + }, + "position3d": { + "x": 20.034, + "y": 70.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B3_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.034, + "y": 70.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_C3", + "uuid": "09114560-c65a-4502-995f-381964d0cbd9", + "name": "biorad_384_wellplate_50ul_C3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.034, + "y": 66.394, + "z": 1.05 + }, + "position3d": { + "x": 20.034, + "y": 66.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C3_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.034, + "y": 66.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_D3", + "uuid": "1769b041-ae88-4dd5-bcf4-79ccd2b110ba", + "name": "biorad_384_wellplate_50ul_D3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.034, + "y": 61.894, + "z": 1.05 + }, + "position3d": { + "x": 20.034, + "y": 61.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D3_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.034, + "y": 61.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_E3", + "uuid": "137b1835-683f-4f2e-95fa-5b81aefd9a63", + "name": "biorad_384_wellplate_50ul_E3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.034, + "y": 57.394, + "z": 1.05 + }, + "position3d": { + "x": 20.034, + "y": 57.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E3_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.034, + "y": 57.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_F3", + "uuid": "9b9d6f68-c8a8-4195-8f8e-c31fae5603a5", + "name": "biorad_384_wellplate_50ul_F3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.034, + "y": 52.894, + "z": 1.05 + }, + "position3d": { + "x": 20.034, + "y": 52.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F3_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.034, + "y": 52.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_G3", + "uuid": "e9475513-b862-4a51-8423-05bb99df6d13", + "name": "biorad_384_wellplate_50ul_G3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.034, + "y": 48.394, + "z": 1.05 + }, + "position3d": { + "x": 20.034, + "y": 48.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G3_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.034, + "y": 48.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_H3", + "uuid": "0aa1c0a7-dab0-416d-90e8-bb15917af05e", + "name": "biorad_384_wellplate_50ul_H3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.034, + "y": 43.894, + "z": 1.05 + }, + "position3d": { + "x": 20.034, + "y": 43.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H3_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.034, + "y": 43.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_I3", + "uuid": "8f980e14-d1c4-431d-95d8-bce8f9e48049", + "name": "biorad_384_wellplate_50ul_I3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.034, + "y": 39.394, + "z": 1.05 + }, + "position3d": { + "x": 20.034, + "y": 39.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "I3_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.034, + "y": 39.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_J3", + "uuid": "53620a9b-a0ec-439d-a71e-59b4184fd7af", + "name": "biorad_384_wellplate_50ul_J3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.034, + "y": 34.894, + "z": 1.05 + }, + "position3d": { + "x": 20.034, + "y": 34.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "J3_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.034, + "y": 34.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_K3", + "uuid": "93facf64-bbde-4301-9b37-1095a9ba7950", + "name": "biorad_384_wellplate_50ul_K3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.034, + "y": 30.394, + "z": 1.05 + }, + "position3d": { + "x": 20.034, + "y": 30.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "K3_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.034, + "y": 30.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_L3", + "uuid": "3b42aa42-01d2-4b77-99c3-6f449f06b68c", + "name": "biorad_384_wellplate_50ul_L3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.034, + "y": 25.894, + "z": 1.05 + }, + "position3d": { + "x": 20.034, + "y": 25.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "L3_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.034, + "y": 25.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_M3", + "uuid": "09da1296-5cba-4215-9281-b7f3c88b2f71", + "name": "biorad_384_wellplate_50ul_M3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.034, + "y": 21.394, + "z": 1.05 + }, + "position3d": { + "x": 20.034, + "y": 21.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "M3_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.034, + "y": 21.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_N3", + "uuid": "802dcd0d-b6cd-4d20-9476-c82fe07057f3", + "name": "biorad_384_wellplate_50ul_N3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.034, + "y": 16.894, + "z": 1.05 + }, + "position3d": { + "x": 20.034, + "y": 16.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "N3_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.034, + "y": 16.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_O3", + "uuid": "347626e2-3707-4eb2-8f11-068463d1e592", + "name": "biorad_384_wellplate_50ul_O3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.034, + "y": 12.394, + "z": 1.05 + }, + "position3d": { + "x": 20.034, + "y": 12.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "O3_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.034, + "y": 12.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_P3", + "uuid": "47be5fc5-151d-4709-9773-ad6d1963a3b3", + "name": "biorad_384_wellplate_50ul_P3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.034, + "y": 7.894, + "z": 1.05 + }, + "position3d": { + "x": 20.034, + "y": 7.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "P3_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.034, + "y": 7.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_A4", + "uuid": "9a11118e-3110-4a8a-a363-3ab068a164ab", + "name": "biorad_384_wellplate_50ul_A4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 24.534, + "y": 75.394, + "z": 1.05 + }, + "position3d": { + "x": 24.534, + "y": 75.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A4_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 24.534, + "y": 75.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_B4", + "uuid": "a4dc95a6-a8bc-48b1-9a74-e750be5386bd", + "name": "biorad_384_wellplate_50ul_B4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 24.534, + "y": 70.894, + "z": 1.05 + }, + "position3d": { + "x": 24.534, + "y": 70.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B4_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 24.534, + "y": 70.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_C4", + "uuid": "a3b96495-c888-4f81-a50e-ccc593f6751a", + "name": "biorad_384_wellplate_50ul_C4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 24.534, + "y": 66.394, + "z": 1.05 + }, + "position3d": { + "x": 24.534, + "y": 66.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C4_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 24.534, + "y": 66.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_D4", + "uuid": "e5cfbb29-99e6-4be9-8806-2d756ef10982", + "name": "biorad_384_wellplate_50ul_D4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 24.534, + "y": 61.894, + "z": 1.05 + }, + "position3d": { + "x": 24.534, + "y": 61.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D4_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 24.534, + "y": 61.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_E4", + "uuid": "167cdf65-62b3-444f-be3f-d7df713aed5e", + "name": "biorad_384_wellplate_50ul_E4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 24.534, + "y": 57.394, + "z": 1.05 + }, + "position3d": { + "x": 24.534, + "y": 57.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E4_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 24.534, + "y": 57.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_F4", + "uuid": "ecb83340-4004-4724-8ebc-8d005315d691", + "name": "biorad_384_wellplate_50ul_F4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 24.534, + "y": 52.894, + "z": 1.05 + }, + "position3d": { + "x": 24.534, + "y": 52.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F4_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 24.534, + "y": 52.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_G4", + "uuid": "70aee1d7-20ad-4fb5-82f7-43fe3953a6f1", + "name": "biorad_384_wellplate_50ul_G4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 24.534, + "y": 48.394, + "z": 1.05 + }, + "position3d": { + "x": 24.534, + "y": 48.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G4_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 24.534, + "y": 48.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_H4", + "uuid": "0e13a8d3-9be3-4eae-a1dd-1abf7835f8c3", + "name": "biorad_384_wellplate_50ul_H4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 24.534, + "y": 43.894, + "z": 1.05 + }, + "position3d": { + "x": 24.534, + "y": 43.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H4_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 24.534, + "y": 43.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_I4", + "uuid": "19360c44-c9e1-4bdf-a875-b19402b997fc", + "name": "biorad_384_wellplate_50ul_I4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 24.534, + "y": 39.394, + "z": 1.05 + }, + "position3d": { + "x": 24.534, + "y": 39.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "I4_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 24.534, + "y": 39.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_J4", + "uuid": "8a4c39c5-acf5-45dd-90db-9eef0fe53d6f", + "name": "biorad_384_wellplate_50ul_J4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 24.534, + "y": 34.894, + "z": 1.05 + }, + "position3d": { + "x": 24.534, + "y": 34.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "J4_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 24.534, + "y": 34.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_K4", + "uuid": "8ef50dd3-859a-4c5e-8d1a-8b456cd88efe", + "name": "biorad_384_wellplate_50ul_K4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 24.534, + "y": 30.394, + "z": 1.05 + }, + "position3d": { + "x": 24.534, + "y": 30.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "K4_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 24.534, + "y": 30.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_L4", + "uuid": "4bf5242e-94c5-4f2a-bff7-95032c2580a1", + "name": "biorad_384_wellplate_50ul_L4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 24.534, + "y": 25.894, + "z": 1.05 + }, + "position3d": { + "x": 24.534, + "y": 25.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "L4_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 24.534, + "y": 25.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_M4", + "uuid": "113e52d0-5518-4d6c-8e98-4e110655e687", + "name": "biorad_384_wellplate_50ul_M4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 24.534, + "y": 21.394, + "z": 1.05 + }, + "position3d": { + "x": 24.534, + "y": 21.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "M4_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 24.534, + "y": 21.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_N4", + "uuid": "15181f77-75b1-4de2-b7b2-afc372c240b7", + "name": "biorad_384_wellplate_50ul_N4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 24.534, + "y": 16.894, + "z": 1.05 + }, + "position3d": { + "x": 24.534, + "y": 16.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "N4_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 24.534, + "y": 16.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_O4", + "uuid": "9842a2a3-bf31-4056-a79b-bf43bada54de", + "name": "biorad_384_wellplate_50ul_O4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 24.534, + "y": 12.394, + "z": 1.05 + }, + "position3d": { + "x": 24.534, + "y": 12.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "O4_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 24.534, + "y": 12.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_P4", + "uuid": "338b69e0-5e6b-4b2b-aeb1-9d0eb12bc5ef", + "name": "biorad_384_wellplate_50ul_P4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 24.534, + "y": 7.894, + "z": 1.05 + }, + "position3d": { + "x": 24.534, + "y": 7.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "P4_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 24.534, + "y": 7.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_A5", + "uuid": "39825785-53d0-41b3-8f7d-a9cc793581e2", + "name": "biorad_384_wellplate_50ul_A5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.034, + "y": 75.394, + "z": 1.05 + }, + "position3d": { + "x": 29.034, + "y": 75.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A5_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.034, + "y": 75.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_B5", + "uuid": "a9136dd5-092d-4f0b-8913-ce1cbfa0318f", + "name": "biorad_384_wellplate_50ul_B5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.034, + "y": 70.894, + "z": 1.05 + }, + "position3d": { + "x": 29.034, + "y": 70.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B5_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.034, + "y": 70.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_C5", + "uuid": "6ceaa569-b160-4f12-adbd-1c66fdd57b6a", + "name": "biorad_384_wellplate_50ul_C5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.034, + "y": 66.394, + "z": 1.05 + }, + "position3d": { + "x": 29.034, + "y": 66.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C5_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.034, + "y": 66.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_D5", + "uuid": "36f799d9-e616-4b75-b3d0-4e890daf1ec9", + "name": "biorad_384_wellplate_50ul_D5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.034, + "y": 61.894, + "z": 1.05 + }, + "position3d": { + "x": 29.034, + "y": 61.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D5_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.034, + "y": 61.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_E5", + "uuid": "bad9f77c-8990-4145-b5fa-beb2a9b26b9f", + "name": "biorad_384_wellplate_50ul_E5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.034, + "y": 57.394, + "z": 1.05 + }, + "position3d": { + "x": 29.034, + "y": 57.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E5_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.034, + "y": 57.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_F5", + "uuid": "e90c4d05-305a-419a-b6b1-1adc47319ae7", + "name": "biorad_384_wellplate_50ul_F5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.034, + "y": 52.894, + "z": 1.05 + }, + "position3d": { + "x": 29.034, + "y": 52.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F5_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.034, + "y": 52.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_G5", + "uuid": "7561eaa2-fc7c-4500-973e-b95e2682e9e2", + "name": "biorad_384_wellplate_50ul_G5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.034, + "y": 48.394, + "z": 1.05 + }, + "position3d": { + "x": 29.034, + "y": 48.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G5_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.034, + "y": 48.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_H5", + "uuid": "827f4e08-f0a4-468f-81f1-a055d509f85f", + "name": "biorad_384_wellplate_50ul_H5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.034, + "y": 43.894, + "z": 1.05 + }, + "position3d": { + "x": 29.034, + "y": 43.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H5_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.034, + "y": 43.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_I5", + "uuid": "29a7428f-87bb-4406-9925-300792c6f230", + "name": "biorad_384_wellplate_50ul_I5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.034, + "y": 39.394, + "z": 1.05 + }, + "position3d": { + "x": 29.034, + "y": 39.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "I5_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.034, + "y": 39.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_J5", + "uuid": "15b2e493-68c9-46b9-a364-9e66faebb0b6", + "name": "biorad_384_wellplate_50ul_J5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.034, + "y": 34.894, + "z": 1.05 + }, + "position3d": { + "x": 29.034, + "y": 34.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "J5_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.034, + "y": 34.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_K5", + "uuid": "cd0fc14a-9004-4f66-80ed-40be5256e1c1", + "name": "biorad_384_wellplate_50ul_K5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.034, + "y": 30.394, + "z": 1.05 + }, + "position3d": { + "x": 29.034, + "y": 30.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "K5_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.034, + "y": 30.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_L5", + "uuid": "73abebed-66af-4b85-9dfb-853ace6a9fa7", + "name": "biorad_384_wellplate_50ul_L5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.034, + "y": 25.894, + "z": 1.05 + }, + "position3d": { + "x": 29.034, + "y": 25.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "L5_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.034, + "y": 25.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_M5", + "uuid": "eab665fc-ed2e-4e3d-b8f5-9f1f88f93703", + "name": "biorad_384_wellplate_50ul_M5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.034, + "y": 21.394, + "z": 1.05 + }, + "position3d": { + "x": 29.034, + "y": 21.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "M5_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.034, + "y": 21.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_N5", + "uuid": "ffbf2b6a-6c62-4703-9a90-866d0591e56d", + "name": "biorad_384_wellplate_50ul_N5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.034, + "y": 16.894, + "z": 1.05 + }, + "position3d": { + "x": 29.034, + "y": 16.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "N5_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.034, + "y": 16.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_O5", + "uuid": "cce0e75c-8286-43e7-be11-2f98fdba36a8", + "name": "biorad_384_wellplate_50ul_O5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.034, + "y": 12.394, + "z": 1.05 + }, + "position3d": { + "x": 29.034, + "y": 12.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "O5_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.034, + "y": 12.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_P5", + "uuid": "6e6d7b2f-d21c-4980-b4ca-36e968c32370", + "name": "biorad_384_wellplate_50ul_P5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.034, + "y": 7.894, + "z": 1.05 + }, + "position3d": { + "x": 29.034, + "y": 7.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "P5_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.034, + "y": 7.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_A6", + "uuid": "f4bd823a-ed3f-432d-8bcf-d8f7120385d2", + "name": "biorad_384_wellplate_50ul_A6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 33.534, + "y": 75.394, + "z": 1.05 + }, + "position3d": { + "x": 33.534, + "y": 75.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A6_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 33.534, + "y": 75.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_B6", + "uuid": "23e769f0-0c3a-4720-9546-020a4a0b65f1", + "name": "biorad_384_wellplate_50ul_B6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 33.534, + "y": 70.894, + "z": 1.05 + }, + "position3d": { + "x": 33.534, + "y": 70.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B6_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 33.534, + "y": 70.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_C6", + "uuid": "9cb77461-b7ef-4a30-804b-d1ae38b78878", + "name": "biorad_384_wellplate_50ul_C6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 33.534, + "y": 66.394, + "z": 1.05 + }, + "position3d": { + "x": 33.534, + "y": 66.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C6_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 33.534, + "y": 66.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_D6", + "uuid": "3b2c5ba7-55f1-4635-9bf5-de7f117e4f5c", + "name": "biorad_384_wellplate_50ul_D6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 33.534, + "y": 61.894, + "z": 1.05 + }, + "position3d": { + "x": 33.534, + "y": 61.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D6_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 33.534, + "y": 61.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_E6", + "uuid": "263a0b0a-96f1-4199-8792-00f2a5f100f1", + "name": "biorad_384_wellplate_50ul_E6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 33.534, + "y": 57.394, + "z": 1.05 + }, + "position3d": { + "x": 33.534, + "y": 57.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E6_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 33.534, + "y": 57.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_F6", + "uuid": "70a60b12-2374-4123-bbb3-812d321a8e62", + "name": "biorad_384_wellplate_50ul_F6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 33.534, + "y": 52.894, + "z": 1.05 + }, + "position3d": { + "x": 33.534, + "y": 52.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F6_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 33.534, + "y": 52.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_G6", + "uuid": "3e628b70-e00b-41b2-8eb2-3a2fe3505646", + "name": "biorad_384_wellplate_50ul_G6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 33.534, + "y": 48.394, + "z": 1.05 + }, + "position3d": { + "x": 33.534, + "y": 48.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G6_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 33.534, + "y": 48.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_H6", + "uuid": "53b0fb2b-60a7-438c-8390-182d5f639fae", + "name": "biorad_384_wellplate_50ul_H6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 33.534, + "y": 43.894, + "z": 1.05 + }, + "position3d": { + "x": 33.534, + "y": 43.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H6_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 33.534, + "y": 43.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_I6", + "uuid": "80f7b52d-2ef1-40d4-933b-e71dc8a7addd", + "name": "biorad_384_wellplate_50ul_I6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 33.534, + "y": 39.394, + "z": 1.05 + }, + "position3d": { + "x": 33.534, + "y": 39.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "I6_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 33.534, + "y": 39.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_J6", + "uuid": "24d941bc-4548-412a-9f9d-c5ab7d013778", + "name": "biorad_384_wellplate_50ul_J6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 33.534, + "y": 34.894, + "z": 1.05 + }, + "position3d": { + "x": 33.534, + "y": 34.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "J6_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 33.534, + "y": 34.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_K6", + "uuid": "1796e53a-b77c-4dc7-b374-315cfb3fe0d6", + "name": "biorad_384_wellplate_50ul_K6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 33.534, + "y": 30.394, + "z": 1.05 + }, + "position3d": { + "x": 33.534, + "y": 30.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "K6_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 33.534, + "y": 30.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_L6", + "uuid": "43df9b5a-f74e-4992-92ce-04fcd62f0cf2", + "name": "biorad_384_wellplate_50ul_L6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 33.534, + "y": 25.894, + "z": 1.05 + }, + "position3d": { + "x": 33.534, + "y": 25.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "L6_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 33.534, + "y": 25.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_M6", + "uuid": "68b41797-9525-4335-85b4-e92fc7eb61f7", + "name": "biorad_384_wellplate_50ul_M6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 33.534, + "y": 21.394, + "z": 1.05 + }, + "position3d": { + "x": 33.534, + "y": 21.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "M6_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 33.534, + "y": 21.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_N6", + "uuid": "965db1fa-798b-47cd-862d-9ca216d10f36", + "name": "biorad_384_wellplate_50ul_N6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 33.534, + "y": 16.894, + "z": 1.05 + }, + "position3d": { + "x": 33.534, + "y": 16.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "N6_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 33.534, + "y": 16.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_O6", + "uuid": "3ca768bf-8648-4095-bbea-b8f6afd314c9", + "name": "biorad_384_wellplate_50ul_O6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 33.534, + "y": 12.394, + "z": 1.05 + }, + "position3d": { + "x": 33.534, + "y": 12.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "O6_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 33.534, + "y": 12.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_P6", + "uuid": "ed5728ce-f1f4-4778-a242-5ae97fe7edc2", + "name": "biorad_384_wellplate_50ul_P6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 33.534, + "y": 7.894, + "z": 1.05 + }, + "position3d": { + "x": 33.534, + "y": 7.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "P6_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 33.534, + "y": 7.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_A7", + "uuid": "7ce39ec8-78a0-484a-b65a-97a3da862896", + "name": "biorad_384_wellplate_50ul_A7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.034, + "y": 75.394, + "z": 1.05 + }, + "position3d": { + "x": 38.034, + "y": 75.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A7_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.034, + "y": 75.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_B7", + "uuid": "866ca50c-c641-427a-9988-2f0b06e21d8a", + "name": "biorad_384_wellplate_50ul_B7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.034, + "y": 70.894, + "z": 1.05 + }, + "position3d": { + "x": 38.034, + "y": 70.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B7_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.034, + "y": 70.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_C7", + "uuid": "9122c3b7-38ae-474f-8c82-651567c6d333", + "name": "biorad_384_wellplate_50ul_C7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.034, + "y": 66.394, + "z": 1.05 + }, + "position3d": { + "x": 38.034, + "y": 66.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C7_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.034, + "y": 66.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_D7", + "uuid": "bb161a87-6926-4174-a354-10363d7bd1d0", + "name": "biorad_384_wellplate_50ul_D7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.034, + "y": 61.894, + "z": 1.05 + }, + "position3d": { + "x": 38.034, + "y": 61.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D7_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.034, + "y": 61.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_E7", + "uuid": "b8acc765-a5bc-4675-b793-6b12801cf2d3", + "name": "biorad_384_wellplate_50ul_E7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.034, + "y": 57.394, + "z": 1.05 + }, + "position3d": { + "x": 38.034, + "y": 57.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E7_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.034, + "y": 57.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_F7", + "uuid": "e8fa8c9f-d1b3-4204-a9f8-2c986ddfd6b6", + "name": "biorad_384_wellplate_50ul_F7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.034, + "y": 52.894, + "z": 1.05 + }, + "position3d": { + "x": 38.034, + "y": 52.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F7_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.034, + "y": 52.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_G7", + "uuid": "1cfad48c-331f-4fa1-b00d-8f2caaba0c74", + "name": "biorad_384_wellplate_50ul_G7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.034, + "y": 48.394, + "z": 1.05 + }, + "position3d": { + "x": 38.034, + "y": 48.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G7_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.034, + "y": 48.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_H7", + "uuid": "b0194d1b-0451-4e13-86f4-bb498bd7546b", + "name": "biorad_384_wellplate_50ul_H7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.034, + "y": 43.894, + "z": 1.05 + }, + "position3d": { + "x": 38.034, + "y": 43.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H7_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.034, + "y": 43.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_I7", + "uuid": "74bab704-2362-4c45-801b-358a3492994b", + "name": "biorad_384_wellplate_50ul_I7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.034, + "y": 39.394, + "z": 1.05 + }, + "position3d": { + "x": 38.034, + "y": 39.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "I7_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.034, + "y": 39.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_J7", + "uuid": "420ae831-4b78-4263-958e-fab01d0449f6", + "name": "biorad_384_wellplate_50ul_J7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.034, + "y": 34.894, + "z": 1.05 + }, + "position3d": { + "x": 38.034, + "y": 34.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "J7_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.034, + "y": 34.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_K7", + "uuid": "c6340805-f681-49ee-ab14-fa6f667c61e7", + "name": "biorad_384_wellplate_50ul_K7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.034, + "y": 30.394, + "z": 1.05 + }, + "position3d": { + "x": 38.034, + "y": 30.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "K7_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.034, + "y": 30.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_L7", + "uuid": "39d2d623-a7b8-4d04-8094-a4c18bbd66fa", + "name": "biorad_384_wellplate_50ul_L7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.034, + "y": 25.894, + "z": 1.05 + }, + "position3d": { + "x": 38.034, + "y": 25.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "L7_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.034, + "y": 25.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_M7", + "uuid": "bcfd2466-ce66-4e66-8b50-73f0a8731fd5", + "name": "biorad_384_wellplate_50ul_M7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.034, + "y": 21.394, + "z": 1.05 + }, + "position3d": { + "x": 38.034, + "y": 21.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "M7_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.034, + "y": 21.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_N7", + "uuid": "72e899fe-fd62-4074-8f54-796ddfca08ee", + "name": "biorad_384_wellplate_50ul_N7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.034, + "y": 16.894, + "z": 1.05 + }, + "position3d": { + "x": 38.034, + "y": 16.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "N7_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.034, + "y": 16.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_O7", + "uuid": "424c135f-bbde-408b-8210-a1fae16fdcaa", + "name": "biorad_384_wellplate_50ul_O7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.034, + "y": 12.394, + "z": 1.05 + }, + "position3d": { + "x": 38.034, + "y": 12.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "O7_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.034, + "y": 12.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_P7", + "uuid": "c109d64d-e286-4fb4-b275-e149b26ec28b", + "name": "biorad_384_wellplate_50ul_P7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.034, + "y": 7.894, + "z": 1.05 + }, + "position3d": { + "x": 38.034, + "y": 7.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "P7_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.034, + "y": 7.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_A8", + "uuid": "cedd8f19-ca81-4de4-8020-ff78b98e1200", + "name": "biorad_384_wellplate_50ul_A8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 42.534, + "y": 75.394, + "z": 1.05 + }, + "position3d": { + "x": 42.534, + "y": 75.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A8_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 42.534, + "y": 75.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_B8", + "uuid": "342002da-8bd0-40d3-b5ee-fe9ce8d122ea", + "name": "biorad_384_wellplate_50ul_B8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 42.534, + "y": 70.894, + "z": 1.05 + }, + "position3d": { + "x": 42.534, + "y": 70.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B8_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 42.534, + "y": 70.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_C8", + "uuid": "b9b4a762-f5f7-4ee4-9922-fdf2e86a2562", + "name": "biorad_384_wellplate_50ul_C8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 42.534, + "y": 66.394, + "z": 1.05 + }, + "position3d": { + "x": 42.534, + "y": 66.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C8_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 42.534, + "y": 66.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_D8", + "uuid": "e7cc56cf-edf4-48d5-ba74-b3c25cf26ad7", + "name": "biorad_384_wellplate_50ul_D8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 42.534, + "y": 61.894, + "z": 1.05 + }, + "position3d": { + "x": 42.534, + "y": 61.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D8_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 42.534, + "y": 61.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_E8", + "uuid": "e9f45477-434c-4206-9b96-5a1e999e8a3e", + "name": "biorad_384_wellplate_50ul_E8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 42.534, + "y": 57.394, + "z": 1.05 + }, + "position3d": { + "x": 42.534, + "y": 57.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E8_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 42.534, + "y": 57.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_F8", + "uuid": "5b7135aa-5558-441f-8c39-5957197691d4", + "name": "biorad_384_wellplate_50ul_F8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 42.534, + "y": 52.894, + "z": 1.05 + }, + "position3d": { + "x": 42.534, + "y": 52.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F8_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 42.534, + "y": 52.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_G8", + "uuid": "9b60e59e-59c0-4ad7-84dc-2bcd27b23704", + "name": "biorad_384_wellplate_50ul_G8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 42.534, + "y": 48.394, + "z": 1.05 + }, + "position3d": { + "x": 42.534, + "y": 48.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G8_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 42.534, + "y": 48.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_H8", + "uuid": "0702358d-bd46-4562-9cb0-c50313cfa797", + "name": "biorad_384_wellplate_50ul_H8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 42.534, + "y": 43.894, + "z": 1.05 + }, + "position3d": { + "x": 42.534, + "y": 43.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H8_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 42.534, + "y": 43.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_I8", + "uuid": "1af3a26e-fac6-4931-83b4-77259d93fbea", + "name": "biorad_384_wellplate_50ul_I8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 42.534, + "y": 39.394, + "z": 1.05 + }, + "position3d": { + "x": 42.534, + "y": 39.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "I8_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 42.534, + "y": 39.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_J8", + "uuid": "67fde5a2-6ca6-446c-b28e-dd362d1055c4", + "name": "biorad_384_wellplate_50ul_J8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 42.534, + "y": 34.894, + "z": 1.05 + }, + "position3d": { + "x": 42.534, + "y": 34.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "J8_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 42.534, + "y": 34.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_K8", + "uuid": "918a3f4e-033b-468a-8717-27372801ed04", + "name": "biorad_384_wellplate_50ul_K8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 42.534, + "y": 30.394, + "z": 1.05 + }, + "position3d": { + "x": 42.534, + "y": 30.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "K8_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 42.534, + "y": 30.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_L8", + "uuid": "1e6e3854-f807-477f-bad8-197a4b482fff", + "name": "biorad_384_wellplate_50ul_L8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 42.534, + "y": 25.894, + "z": 1.05 + }, + "position3d": { + "x": 42.534, + "y": 25.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "L8_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 42.534, + "y": 25.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_M8", + "uuid": "95b5635b-cbde-4ff4-a6cc-c2b9fa55764f", + "name": "biorad_384_wellplate_50ul_M8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 42.534, + "y": 21.394, + "z": 1.05 + }, + "position3d": { + "x": 42.534, + "y": 21.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "M8_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 42.534, + "y": 21.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_N8", + "uuid": "65b46da9-42f7-4a26-9250-b7da9702c7ce", + "name": "biorad_384_wellplate_50ul_N8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 42.534, + "y": 16.894, + "z": 1.05 + }, + "position3d": { + "x": 42.534, + "y": 16.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "N8_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 42.534, + "y": 16.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_O8", + "uuid": "2e44675c-ac1a-41a4-8b2b-838b23548849", + "name": "biorad_384_wellplate_50ul_O8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 42.534, + "y": 12.394, + "z": 1.05 + }, + "position3d": { + "x": 42.534, + "y": 12.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "O8_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 42.534, + "y": 12.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_P8", + "uuid": "aa88c74c-d983-4fff-a033-26e23aa687b5", + "name": "biorad_384_wellplate_50ul_P8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 42.534, + "y": 7.894, + "z": 1.05 + }, + "position3d": { + "x": 42.534, + "y": 7.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "P8_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 42.534, + "y": 7.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_A9", + "uuid": "e2cfeda6-2aa2-4c8e-ac0d-672819dae823", + "name": "biorad_384_wellplate_50ul_A9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.034, + "y": 75.394, + "z": 1.05 + }, + "position3d": { + "x": 47.034, + "y": 75.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A9_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.034, + "y": 75.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_B9", + "uuid": "98942e86-d790-4cda-8a20-ecaa987be3aa", + "name": "biorad_384_wellplate_50ul_B9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.034, + "y": 70.894, + "z": 1.05 + }, + "position3d": { + "x": 47.034, + "y": 70.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B9_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.034, + "y": 70.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_C9", + "uuid": "f5520b90-4aed-4d0f-930d-a8b96ea79e19", + "name": "biorad_384_wellplate_50ul_C9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.034, + "y": 66.394, + "z": 1.05 + }, + "position3d": { + "x": 47.034, + "y": 66.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C9_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.034, + "y": 66.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_D9", + "uuid": "a1dbcfe1-5bc7-45e9-90eb-941023ee60e7", + "name": "biorad_384_wellplate_50ul_D9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.034, + "y": 61.894, + "z": 1.05 + }, + "position3d": { + "x": 47.034, + "y": 61.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D9_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.034, + "y": 61.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_E9", + "uuid": "75bd7d78-8d21-42ad-8abe-002fe2bb643e", + "name": "biorad_384_wellplate_50ul_E9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.034, + "y": 57.394, + "z": 1.05 + }, + "position3d": { + "x": 47.034, + "y": 57.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E9_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.034, + "y": 57.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_F9", + "uuid": "7ab9ddd7-88c5-462f-bde5-615259fc1468", + "name": "biorad_384_wellplate_50ul_F9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.034, + "y": 52.894, + "z": 1.05 + }, + "position3d": { + "x": 47.034, + "y": 52.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F9_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.034, + "y": 52.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_G9", + "uuid": "973a6349-0bd4-4124-a389-a0ba97e3ccb6", + "name": "biorad_384_wellplate_50ul_G9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.034, + "y": 48.394, + "z": 1.05 + }, + "position3d": { + "x": 47.034, + "y": 48.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G9_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.034, + "y": 48.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_H9", + "uuid": "95e62d4a-d0e9-4b41-80c7-94c000149607", + "name": "biorad_384_wellplate_50ul_H9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.034, + "y": 43.894, + "z": 1.05 + }, + "position3d": { + "x": 47.034, + "y": 43.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H9_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.034, + "y": 43.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_I9", + "uuid": "95c4a4f9-2571-447d-970b-b9343dfd4dbe", + "name": "biorad_384_wellplate_50ul_I9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.034, + "y": 39.394, + "z": 1.05 + }, + "position3d": { + "x": 47.034, + "y": 39.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "I9_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.034, + "y": 39.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_J9", + "uuid": "e845beb3-102f-4f92-9232-7191b4a75a2c", + "name": "biorad_384_wellplate_50ul_J9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.034, + "y": 34.894, + "z": 1.05 + }, + "position3d": { + "x": 47.034, + "y": 34.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "J9_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.034, + "y": 34.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_K9", + "uuid": "52843974-e085-4982-b071-97085df3369e", + "name": "biorad_384_wellplate_50ul_K9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.034, + "y": 30.394, + "z": 1.05 + }, + "position3d": { + "x": 47.034, + "y": 30.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "K9_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.034, + "y": 30.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_L9", + "uuid": "22457dc9-27b5-44b7-aca1-8c103956fef5", + "name": "biorad_384_wellplate_50ul_L9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.034, + "y": 25.894, + "z": 1.05 + }, + "position3d": { + "x": 47.034, + "y": 25.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "L9_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.034, + "y": 25.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_M9", + "uuid": "8d1e220f-ca88-4e52-8c7d-d6b2ecd9f0c0", + "name": "biorad_384_wellplate_50ul_M9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.034, + "y": 21.394, + "z": 1.05 + }, + "position3d": { + "x": 47.034, + "y": 21.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "M9_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.034, + "y": 21.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_N9", + "uuid": "0e4e5c01-52cf-4e74-80d9-e2420426b6dd", + "name": "biorad_384_wellplate_50ul_N9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.034, + "y": 16.894, + "z": 1.05 + }, + "position3d": { + "x": 47.034, + "y": 16.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "N9_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.034, + "y": 16.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_O9", + "uuid": "77d6ee83-6d49-4b72-a32d-5bc9e6a69bf2", + "name": "biorad_384_wellplate_50ul_O9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.034, + "y": 12.394, + "z": 1.05 + }, + "position3d": { + "x": 47.034, + "y": 12.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "O9_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.034, + "y": 12.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_P9", + "uuid": "ec38298c-1547-470f-9866-e80ab2f2ff36", + "name": "biorad_384_wellplate_50ul_P9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.034, + "y": 7.894, + "z": 1.05 + }, + "position3d": { + "x": 47.034, + "y": 7.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "P9_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.034, + "y": 7.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_A10", + "uuid": "458e0427-de79-4ad1-9909-a750a5faacde", + "name": "biorad_384_wellplate_50ul_A10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 51.534, + "y": 75.394, + "z": 1.05 + }, + "position3d": { + "x": 51.534, + "y": 75.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A10_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 51.534, + "y": 75.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_B10", + "uuid": "0af03bb9-f483-4c5d-9cec-81dc53d02bd8", + "name": "biorad_384_wellplate_50ul_B10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 51.534, + "y": 70.894, + "z": 1.05 + }, + "position3d": { + "x": 51.534, + "y": 70.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B10_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 51.534, + "y": 70.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_C10", + "uuid": "e2052d45-04ac-4456-aeaf-b46d8ad7f7aa", + "name": "biorad_384_wellplate_50ul_C10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 51.534, + "y": 66.394, + "z": 1.05 + }, + "position3d": { + "x": 51.534, + "y": 66.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C10_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 51.534, + "y": 66.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_D10", + "uuid": "ab676198-baef-41f9-8125-61d6e5b1f0ca", + "name": "biorad_384_wellplate_50ul_D10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 51.534, + "y": 61.894, + "z": 1.05 + }, + "position3d": { + "x": 51.534, + "y": 61.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D10_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 51.534, + "y": 61.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_E10", + "uuid": "b933d01b-5069-4792-89dc-a1b32b6677c7", + "name": "biorad_384_wellplate_50ul_E10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 51.534, + "y": 57.394, + "z": 1.05 + }, + "position3d": { + "x": 51.534, + "y": 57.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E10_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 51.534, + "y": 57.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_F10", + "uuid": "2afc356b-abdd-4fc0-bafb-06d4b4115470", + "name": "biorad_384_wellplate_50ul_F10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 51.534, + "y": 52.894, + "z": 1.05 + }, + "position3d": { + "x": 51.534, + "y": 52.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F10_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 51.534, + "y": 52.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_G10", + "uuid": "9f4b911b-51cc-46f3-864e-2e0400b1c83b", + "name": "biorad_384_wellplate_50ul_G10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 51.534, + "y": 48.394, + "z": 1.05 + }, + "position3d": { + "x": 51.534, + "y": 48.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G10_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 51.534, + "y": 48.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_H10", + "uuid": "51267ff6-8c24-4645-9757-7b463606674b", + "name": "biorad_384_wellplate_50ul_H10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 51.534, + "y": 43.894, + "z": 1.05 + }, + "position3d": { + "x": 51.534, + "y": 43.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H10_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 51.534, + "y": 43.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_I10", + "uuid": "bbb655a5-08da-41c7-b4f9-c23ea3163cef", + "name": "biorad_384_wellplate_50ul_I10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 51.534, + "y": 39.394, + "z": 1.05 + }, + "position3d": { + "x": 51.534, + "y": 39.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "I10_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 51.534, + "y": 39.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_J10", + "uuid": "12766a3a-7928-4807-86e4-1e863ccf73c2", + "name": "biorad_384_wellplate_50ul_J10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 51.534, + "y": 34.894, + "z": 1.05 + }, + "position3d": { + "x": 51.534, + "y": 34.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "J10_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 51.534, + "y": 34.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_K10", + "uuid": "85e6e24a-52dd-4cf6-99d3-da2a89c58bf1", + "name": "biorad_384_wellplate_50ul_K10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 51.534, + "y": 30.394, + "z": 1.05 + }, + "position3d": { + "x": 51.534, + "y": 30.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "K10_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 51.534, + "y": 30.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_L10", + "uuid": "9643260c-132e-4b1c-bcda-4e652bdf30e5", + "name": "biorad_384_wellplate_50ul_L10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 51.534, + "y": 25.894, + "z": 1.05 + }, + "position3d": { + "x": 51.534, + "y": 25.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "L10_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 51.534, + "y": 25.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_M10", + "uuid": "d83233b3-5869-4a19-bec2-9fb08b2480de", + "name": "biorad_384_wellplate_50ul_M10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 51.534, + "y": 21.394, + "z": 1.05 + }, + "position3d": { + "x": 51.534, + "y": 21.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "M10_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 51.534, + "y": 21.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_N10", + "uuid": "ddeb163e-63b7-4c54-95a6-95976df6077e", + "name": "biorad_384_wellplate_50ul_N10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 51.534, + "y": 16.894, + "z": 1.05 + }, + "position3d": { + "x": 51.534, + "y": 16.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "N10_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 51.534, + "y": 16.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_O10", + "uuid": "2b27dbdb-8a6a-40df-aaa1-c521f8c2f144", + "name": "biorad_384_wellplate_50ul_O10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 51.534, + "y": 12.394, + "z": 1.05 + }, + "position3d": { + "x": 51.534, + "y": 12.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "O10_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 51.534, + "y": 12.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_P10", + "uuid": "11bae4bb-444b-4970-b533-25a39a6bf646", + "name": "biorad_384_wellplate_50ul_P10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 51.534, + "y": 7.894, + "z": 1.05 + }, + "position3d": { + "x": 51.534, + "y": 7.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "P10_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 51.534, + "y": 7.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_A11", + "uuid": "36b3cd2e-f3af-45e9-8723-998e696a736d", + "name": "biorad_384_wellplate_50ul_A11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.034, + "y": 75.394, + "z": 1.05 + }, + "position3d": { + "x": 56.034, + "y": 75.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A11_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.034, + "y": 75.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_B11", + "uuid": "9354ef9f-2a30-419b-a39d-5a270217d77f", + "name": "biorad_384_wellplate_50ul_B11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.034, + "y": 70.894, + "z": 1.05 + }, + "position3d": { + "x": 56.034, + "y": 70.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B11_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.034, + "y": 70.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_C11", + "uuid": "e16044b3-aa13-4afd-b717-6c324044f754", + "name": "biorad_384_wellplate_50ul_C11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.034, + "y": 66.394, + "z": 1.05 + }, + "position3d": { + "x": 56.034, + "y": 66.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C11_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.034, + "y": 66.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_D11", + "uuid": "228b7593-20ca-4867-b8bd-9d46537bfdbe", + "name": "biorad_384_wellplate_50ul_D11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.034, + "y": 61.894, + "z": 1.05 + }, + "position3d": { + "x": 56.034, + "y": 61.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D11_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.034, + "y": 61.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_E11", + "uuid": "6353c89d-1a16-496f-8a77-c86c9a13a1d5", + "name": "biorad_384_wellplate_50ul_E11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.034, + "y": 57.394, + "z": 1.05 + }, + "position3d": { + "x": 56.034, + "y": 57.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E11_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.034, + "y": 57.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_F11", + "uuid": "66a7daf0-56d2-4795-9a03-ac2c3b24d474", + "name": "biorad_384_wellplate_50ul_F11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.034, + "y": 52.894, + "z": 1.05 + }, + "position3d": { + "x": 56.034, + "y": 52.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F11_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.034, + "y": 52.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_G11", + "uuid": "9fbadc86-08e7-4193-bf6e-00a1c954325f", + "name": "biorad_384_wellplate_50ul_G11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.034, + "y": 48.394, + "z": 1.05 + }, + "position3d": { + "x": 56.034, + "y": 48.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G11_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.034, + "y": 48.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_H11", + "uuid": "d7841df5-d9f6-4ad3-bbdf-e9d51baf95fd", + "name": "biorad_384_wellplate_50ul_H11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.034, + "y": 43.894, + "z": 1.05 + }, + "position3d": { + "x": 56.034, + "y": 43.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H11_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.034, + "y": 43.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_I11", + "uuid": "be19c65e-8b9c-4a27-a750-93655a8af58e", + "name": "biorad_384_wellplate_50ul_I11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.034, + "y": 39.394, + "z": 1.05 + }, + "position3d": { + "x": 56.034, + "y": 39.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "I11_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.034, + "y": 39.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_J11", + "uuid": "3103d9d0-1b59-4366-b68a-df38519832a6", + "name": "biorad_384_wellplate_50ul_J11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.034, + "y": 34.894, + "z": 1.05 + }, + "position3d": { + "x": 56.034, + "y": 34.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "J11_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.034, + "y": 34.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_K11", + "uuid": "33b20905-69ba-4f5e-b981-77efec6cc3df", + "name": "biorad_384_wellplate_50ul_K11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.034, + "y": 30.394, + "z": 1.05 + }, + "position3d": { + "x": 56.034, + "y": 30.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "K11_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.034, + "y": 30.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_L11", + "uuid": "2d4b1c46-27c5-40f8-9b39-b77d569b2038", + "name": "biorad_384_wellplate_50ul_L11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.034, + "y": 25.894, + "z": 1.05 + }, + "position3d": { + "x": 56.034, + "y": 25.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "L11_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.034, + "y": 25.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_M11", + "uuid": "2c620cf4-00ac-4217-8f29-85d18c06463d", + "name": "biorad_384_wellplate_50ul_M11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.034, + "y": 21.394, + "z": 1.05 + }, + "position3d": { + "x": 56.034, + "y": 21.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "M11_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.034, + "y": 21.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_N11", + "uuid": "76fa3aa6-fd16-4356-bd45-4cd89e58f618", + "name": "biorad_384_wellplate_50ul_N11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.034, + "y": 16.894, + "z": 1.05 + }, + "position3d": { + "x": 56.034, + "y": 16.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "N11_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.034, + "y": 16.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_O11", + "uuid": "a42cb14c-7341-423c-9570-e62d65c83b61", + "name": "biorad_384_wellplate_50ul_O11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.034, + "y": 12.394, + "z": 1.05 + }, + "position3d": { + "x": 56.034, + "y": 12.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "O11_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.034, + "y": 12.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_P11", + "uuid": "3aa9e27d-6697-4345-b37c-c438333af5c2", + "name": "biorad_384_wellplate_50ul_P11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.034, + "y": 7.894, + "z": 1.05 + }, + "position3d": { + "x": 56.034, + "y": 7.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "P11_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.034, + "y": 7.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_A12", + "uuid": "a8d04b2d-e783-4ec6-9d7a-ff8c58d2a1c6", + "name": "biorad_384_wellplate_50ul_A12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 60.534, + "y": 75.394, + "z": 1.05 + }, + "position3d": { + "x": 60.534, + "y": 75.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A12_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 60.534, + "y": 75.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_B12", + "uuid": "21f3e96e-d017-49dc-a2b7-123e9814a761", + "name": "biorad_384_wellplate_50ul_B12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 60.534, + "y": 70.894, + "z": 1.05 + }, + "position3d": { + "x": 60.534, + "y": 70.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B12_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 60.534, + "y": 70.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_C12", + "uuid": "f8f853b3-2ff8-49ea-b47e-5d33d6d63f1a", + "name": "biorad_384_wellplate_50ul_C12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 60.534, + "y": 66.394, + "z": 1.05 + }, + "position3d": { + "x": 60.534, + "y": 66.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C12_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 60.534, + "y": 66.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_D12", + "uuid": "2669f4f4-5842-4162-985e-05436b4845bf", + "name": "biorad_384_wellplate_50ul_D12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 60.534, + "y": 61.894, + "z": 1.05 + }, + "position3d": { + "x": 60.534, + "y": 61.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D12_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 60.534, + "y": 61.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_E12", + "uuid": "cece6741-5047-4d86-b173-4ac02003f283", + "name": "biorad_384_wellplate_50ul_E12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 60.534, + "y": 57.394, + "z": 1.05 + }, + "position3d": { + "x": 60.534, + "y": 57.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E12_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 60.534, + "y": 57.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_F12", + "uuid": "58365b80-10aa-457a-89b9-65b1cb569799", + "name": "biorad_384_wellplate_50ul_F12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 60.534, + "y": 52.894, + "z": 1.05 + }, + "position3d": { + "x": 60.534, + "y": 52.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F12_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 60.534, + "y": 52.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_G12", + "uuid": "b51f0a30-36e3-44c8-90fb-a3676410ca0f", + "name": "biorad_384_wellplate_50ul_G12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 60.534, + "y": 48.394, + "z": 1.05 + }, + "position3d": { + "x": 60.534, + "y": 48.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G12_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 60.534, + "y": 48.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_H12", + "uuid": "57ddc02d-d8f1-44d3-85b1-87e7872d6548", + "name": "biorad_384_wellplate_50ul_H12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 60.534, + "y": 43.894, + "z": 1.05 + }, + "position3d": { + "x": 60.534, + "y": 43.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H12_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 60.534, + "y": 43.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_I12", + "uuid": "2de812ee-5519-4181-8232-8780f1d4713d", + "name": "biorad_384_wellplate_50ul_I12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 60.534, + "y": 39.394, + "z": 1.05 + }, + "position3d": { + "x": 60.534, + "y": 39.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "I12_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 60.534, + "y": 39.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_J12", + "uuid": "178a5f5f-ac54-4134-a8d9-1f224959350f", + "name": "biorad_384_wellplate_50ul_J12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 60.534, + "y": 34.894, + "z": 1.05 + }, + "position3d": { + "x": 60.534, + "y": 34.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "J12_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 60.534, + "y": 34.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_K12", + "uuid": "b1be388b-aae6-43b2-b383-1c140475af99", + "name": "biorad_384_wellplate_50ul_K12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 60.534, + "y": 30.394, + "z": 1.05 + }, + "position3d": { + "x": 60.534, + "y": 30.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "K12_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 60.534, + "y": 30.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_L12", + "uuid": "ef13151f-b3d9-417c-8360-acac5c0f0208", + "name": "biorad_384_wellplate_50ul_L12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 60.534, + "y": 25.894, + "z": 1.05 + }, + "position3d": { + "x": 60.534, + "y": 25.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "L12_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 60.534, + "y": 25.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_M12", + "uuid": "9225e1e8-6c92-4e00-bd4f-53f503fcb96b", + "name": "biorad_384_wellplate_50ul_M12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 60.534, + "y": 21.394, + "z": 1.05 + }, + "position3d": { + "x": 60.534, + "y": 21.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "M12_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 60.534, + "y": 21.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_N12", + "uuid": "dc052a80-15d3-4ed6-9068-1f8a44cdf8ce", + "name": "biorad_384_wellplate_50ul_N12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 60.534, + "y": 16.894, + "z": 1.05 + }, + "position3d": { + "x": 60.534, + "y": 16.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "N12_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 60.534, + "y": 16.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_O12", + "uuid": "60107612-137b-487e-b7ca-d7854b09e5c6", + "name": "biorad_384_wellplate_50ul_O12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 60.534, + "y": 12.394, + "z": 1.05 + }, + "position3d": { + "x": 60.534, + "y": 12.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "O12_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 60.534, + "y": 12.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_P12", + "uuid": "7248d75f-848d-4ad1-ac33-4cbb767a6960", + "name": "biorad_384_wellplate_50ul_P12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 60.534, + "y": 7.894, + "z": 1.05 + }, + "position3d": { + "x": 60.534, + "y": 7.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "P12_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 60.534, + "y": 7.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_A13", + "uuid": "c041c60b-b699-4950-9b7c-5cba51c7c1c7", + "name": "biorad_384_wellplate_50ul_A13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.034, + "y": 75.394, + "z": 1.05 + }, + "position3d": { + "x": 65.034, + "y": 75.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A13_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.034, + "y": 75.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_B13", + "uuid": "55111e16-b81a-49f4-bb2c-ef681224a7a6", + "name": "biorad_384_wellplate_50ul_B13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.034, + "y": 70.894, + "z": 1.05 + }, + "position3d": { + "x": 65.034, + "y": 70.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B13_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.034, + "y": 70.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_C13", + "uuid": "259184be-2f46-45f0-88f3-88f522d756e5", + "name": "biorad_384_wellplate_50ul_C13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.034, + "y": 66.394, + "z": 1.05 + }, + "position3d": { + "x": 65.034, + "y": 66.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C13_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.034, + "y": 66.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_D13", + "uuid": "a94b9545-1dc0-436b-abcc-2ae2e1ccd6e7", + "name": "biorad_384_wellplate_50ul_D13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.034, + "y": 61.894, + "z": 1.05 + }, + "position3d": { + "x": 65.034, + "y": 61.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D13_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.034, + "y": 61.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_E13", + "uuid": "3b2e5941-aefb-4e22-96fc-03babe7ff75f", + "name": "biorad_384_wellplate_50ul_E13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.034, + "y": 57.394, + "z": 1.05 + }, + "position3d": { + "x": 65.034, + "y": 57.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E13_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.034, + "y": 57.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_F13", + "uuid": "865e82ec-7061-4294-82dc-2e347df9cd2e", + "name": "biorad_384_wellplate_50ul_F13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.034, + "y": 52.894, + "z": 1.05 + }, + "position3d": { + "x": 65.034, + "y": 52.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F13_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.034, + "y": 52.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_G13", + "uuid": "9142d359-48d9-4fd3-bf6a-4729369515fe", + "name": "biorad_384_wellplate_50ul_G13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.034, + "y": 48.394, + "z": 1.05 + }, + "position3d": { + "x": 65.034, + "y": 48.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G13_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.034, + "y": 48.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_H13", + "uuid": "2a5fe593-6bc5-4c8d-943d-edde3c342bad", + "name": "biorad_384_wellplate_50ul_H13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.034, + "y": 43.894, + "z": 1.05 + }, + "position3d": { + "x": 65.034, + "y": 43.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H13_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.034, + "y": 43.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_I13", + "uuid": "3313fd17-3810-416a-8c47-b900399c152e", + "name": "biorad_384_wellplate_50ul_I13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.034, + "y": 39.394, + "z": 1.05 + }, + "position3d": { + "x": 65.034, + "y": 39.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "I13_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.034, + "y": 39.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_J13", + "uuid": "ae5985da-a1db-4b62-9b79-3e7d80d0862d", + "name": "biorad_384_wellplate_50ul_J13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.034, + "y": 34.894, + "z": 1.05 + }, + "position3d": { + "x": 65.034, + "y": 34.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "J13_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.034, + "y": 34.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_K13", + "uuid": "357750b6-3231-4177-9dc3-99a4d238872a", + "name": "biorad_384_wellplate_50ul_K13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.034, + "y": 30.394, + "z": 1.05 + }, + "position3d": { + "x": 65.034, + "y": 30.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "K13_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.034, + "y": 30.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_L13", + "uuid": "b83f0721-179a-4f07-83bf-ca49cf484752", + "name": "biorad_384_wellplate_50ul_L13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.034, + "y": 25.894, + "z": 1.05 + }, + "position3d": { + "x": 65.034, + "y": 25.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "L13_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.034, + "y": 25.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_M13", + "uuid": "69b477a2-eaf6-47ad-91c4-6db8b0cf1760", + "name": "biorad_384_wellplate_50ul_M13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.034, + "y": 21.394, + "z": 1.05 + }, + "position3d": { + "x": 65.034, + "y": 21.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "M13_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.034, + "y": 21.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_N13", + "uuid": "7678f5c1-f51b-4a50-a32f-0b4a337b0f70", + "name": "biorad_384_wellplate_50ul_N13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.034, + "y": 16.894, + "z": 1.05 + }, + "position3d": { + "x": 65.034, + "y": 16.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "N13_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.034, + "y": 16.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_O13", + "uuid": "7f82e7d1-acc8-43dd-916e-fc1d74fe0426", + "name": "biorad_384_wellplate_50ul_O13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.034, + "y": 12.394, + "z": 1.05 + }, + "position3d": { + "x": 65.034, + "y": 12.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "O13_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.034, + "y": 12.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_P13", + "uuid": "1232b080-e001-4b88-93b4-42404a266990", + "name": "biorad_384_wellplate_50ul_P13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.034, + "y": 7.894, + "z": 1.05 + }, + "position3d": { + "x": 65.034, + "y": 7.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "P13_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.034, + "y": 7.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_A14", + "uuid": "f4da4b1a-9ca0-4422-9adb-3e48c8c46ae1", + "name": "biorad_384_wellplate_50ul_A14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 69.534, + "y": 75.394, + "z": 1.05 + }, + "position3d": { + "x": 69.534, + "y": 75.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A14_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 69.534, + "y": 75.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_B14", + "uuid": "9ff94096-8b7f-4a9c-9dfc-4e077818e5bb", + "name": "biorad_384_wellplate_50ul_B14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 69.534, + "y": 70.894, + "z": 1.05 + }, + "position3d": { + "x": 69.534, + "y": 70.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B14_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 69.534, + "y": 70.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_C14", + "uuid": "6fc1465a-257e-4da3-90d2-3b36da1334f1", + "name": "biorad_384_wellplate_50ul_C14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 69.534, + "y": 66.394, + "z": 1.05 + }, + "position3d": { + "x": 69.534, + "y": 66.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C14_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 69.534, + "y": 66.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_D14", + "uuid": "094aa47b-70c0-4188-92c4-a2f96dc8c2d0", + "name": "biorad_384_wellplate_50ul_D14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 69.534, + "y": 61.894, + "z": 1.05 + }, + "position3d": { + "x": 69.534, + "y": 61.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D14_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 69.534, + "y": 61.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_E14", + "uuid": "2182a8b5-6f88-49c6-867e-d6fcc9e44189", + "name": "biorad_384_wellplate_50ul_E14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 69.534, + "y": 57.394, + "z": 1.05 + }, + "position3d": { + "x": 69.534, + "y": 57.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E14_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 69.534, + "y": 57.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_F14", + "uuid": "a7235ffb-fc9f-45ea-a618-4b9efa214c78", + "name": "biorad_384_wellplate_50ul_F14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 69.534, + "y": 52.894, + "z": 1.05 + }, + "position3d": { + "x": 69.534, + "y": 52.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F14_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 69.534, + "y": 52.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_G14", + "uuid": "f8aa3f1c-888d-44ed-b55d-5b47885c797a", + "name": "biorad_384_wellplate_50ul_G14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 69.534, + "y": 48.394, + "z": 1.05 + }, + "position3d": { + "x": 69.534, + "y": 48.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G14_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 69.534, + "y": 48.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_H14", + "uuid": "4407f5b3-74a1-499e-8131-65b491197493", + "name": "biorad_384_wellplate_50ul_H14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 69.534, + "y": 43.894, + "z": 1.05 + }, + "position3d": { + "x": 69.534, + "y": 43.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H14_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 69.534, + "y": 43.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_I14", + "uuid": "08a8a959-44df-4b61-8b6c-bce3bc208e08", + "name": "biorad_384_wellplate_50ul_I14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 69.534, + "y": 39.394, + "z": 1.05 + }, + "position3d": { + "x": 69.534, + "y": 39.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "I14_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 69.534, + "y": 39.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_J14", + "uuid": "eef8cb04-5356-4925-9fab-16a95e82b375", + "name": "biorad_384_wellplate_50ul_J14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 69.534, + "y": 34.894, + "z": 1.05 + }, + "position3d": { + "x": 69.534, + "y": 34.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "J14_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 69.534, + "y": 34.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_K14", + "uuid": "ec5b73a1-a0a7-4469-8a58-f7973e01debe", + "name": "biorad_384_wellplate_50ul_K14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 69.534, + "y": 30.394, + "z": 1.05 + }, + "position3d": { + "x": 69.534, + "y": 30.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "K14_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 69.534, + "y": 30.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_L14", + "uuid": "849ff46f-060d-4b2a-ba32-52a682721eb0", + "name": "biorad_384_wellplate_50ul_L14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 69.534, + "y": 25.894, + "z": 1.05 + }, + "position3d": { + "x": 69.534, + "y": 25.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "L14_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 69.534, + "y": 25.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_M14", + "uuid": "eaa515ee-c8f8-44b4-a751-52a794079d0c", + "name": "biorad_384_wellplate_50ul_M14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 69.534, + "y": 21.394, + "z": 1.05 + }, + "position3d": { + "x": 69.534, + "y": 21.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "M14_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 69.534, + "y": 21.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_N14", + "uuid": "c3d83750-4765-4a65-8388-1978a35ffc13", + "name": "biorad_384_wellplate_50ul_N14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 69.534, + "y": 16.894, + "z": 1.05 + }, + "position3d": { + "x": 69.534, + "y": 16.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "N14_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 69.534, + "y": 16.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_O14", + "uuid": "ec63085c-9082-4008-8559-b75decef7a3c", + "name": "biorad_384_wellplate_50ul_O14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 69.534, + "y": 12.394, + "z": 1.05 + }, + "position3d": { + "x": 69.534, + "y": 12.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "O14_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 69.534, + "y": 12.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_P14", + "uuid": "5737f510-0730-4fba-93dd-fa18f2146ad7", + "name": "biorad_384_wellplate_50ul_P14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 69.534, + "y": 7.894, + "z": 1.05 + }, + "position3d": { + "x": 69.534, + "y": 7.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "P14_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 69.534, + "y": 7.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_A15", + "uuid": "5a8d2429-2f8e-45f5-b167-0dbc833321fc", + "name": "biorad_384_wellplate_50ul_A15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.034, + "y": 75.394, + "z": 1.05 + }, + "position3d": { + "x": 74.034, + "y": 75.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A15_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.034, + "y": 75.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_B15", + "uuid": "b22c4c28-23d6-48fa-9300-c2867ffbc8e7", + "name": "biorad_384_wellplate_50ul_B15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.034, + "y": 70.894, + "z": 1.05 + }, + "position3d": { + "x": 74.034, + "y": 70.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B15_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.034, + "y": 70.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_C15", + "uuid": "809a91ce-ec82-4077-b459-8b4b2de3679b", + "name": "biorad_384_wellplate_50ul_C15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.034, + "y": 66.394, + "z": 1.05 + }, + "position3d": { + "x": 74.034, + "y": 66.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C15_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.034, + "y": 66.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_D15", + "uuid": "78af9e06-c005-4956-8abd-c3b7b3e260af", + "name": "biorad_384_wellplate_50ul_D15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.034, + "y": 61.894, + "z": 1.05 + }, + "position3d": { + "x": 74.034, + "y": 61.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D15_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.034, + "y": 61.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_E15", + "uuid": "8f9a8d83-d160-4848-ae37-a4e533cc0026", + "name": "biorad_384_wellplate_50ul_E15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.034, + "y": 57.394, + "z": 1.05 + }, + "position3d": { + "x": 74.034, + "y": 57.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E15_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.034, + "y": 57.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_F15", + "uuid": "b400650c-ad69-49b0-8046-12a06a2e7e5e", + "name": "biorad_384_wellplate_50ul_F15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.034, + "y": 52.894, + "z": 1.05 + }, + "position3d": { + "x": 74.034, + "y": 52.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F15_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.034, + "y": 52.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_G15", + "uuid": "df737c37-922e-4110-92a8-a06729358ad5", + "name": "biorad_384_wellplate_50ul_G15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.034, + "y": 48.394, + "z": 1.05 + }, + "position3d": { + "x": 74.034, + "y": 48.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G15_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.034, + "y": 48.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_H15", + "uuid": "3b9ecd4a-053e-4a46-b6d8-f59eb2d8fcf7", + "name": "biorad_384_wellplate_50ul_H15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.034, + "y": 43.894, + "z": 1.05 + }, + "position3d": { + "x": 74.034, + "y": 43.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H15_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.034, + "y": 43.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_I15", + "uuid": "39b0ff4a-226a-45ef-850d-9efa070ae559", + "name": "biorad_384_wellplate_50ul_I15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.034, + "y": 39.394, + "z": 1.05 + }, + "position3d": { + "x": 74.034, + "y": 39.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "I15_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.034, + "y": 39.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_J15", + "uuid": "bc034de3-efd0-4b7c-be7b-6af64ba780a8", + "name": "biorad_384_wellplate_50ul_J15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.034, + "y": 34.894, + "z": 1.05 + }, + "position3d": { + "x": 74.034, + "y": 34.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "J15_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.034, + "y": 34.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_K15", + "uuid": "e9900821-3944-461f-8a09-5d5d1db0599a", + "name": "biorad_384_wellplate_50ul_K15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.034, + "y": 30.394, + "z": 1.05 + }, + "position3d": { + "x": 74.034, + "y": 30.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "K15_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.034, + "y": 30.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_L15", + "uuid": "1df15613-18de-4c66-8225-d0f6c98fe3fc", + "name": "biorad_384_wellplate_50ul_L15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.034, + "y": 25.894, + "z": 1.05 + }, + "position3d": { + "x": 74.034, + "y": 25.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "L15_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.034, + "y": 25.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_M15", + "uuid": "e7e3e1ff-498e-4fad-b44d-0925ae2c1d3b", + "name": "biorad_384_wellplate_50ul_M15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.034, + "y": 21.394, + "z": 1.05 + }, + "position3d": { + "x": 74.034, + "y": 21.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "M15_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.034, + "y": 21.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_N15", + "uuid": "e9b65499-d127-4bf4-a46f-55060f00310b", + "name": "biorad_384_wellplate_50ul_N15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.034, + "y": 16.894, + "z": 1.05 + }, + "position3d": { + "x": 74.034, + "y": 16.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "N15_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.034, + "y": 16.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_O15", + "uuid": "c41974d7-1060-4152-92b7-195125efa362", + "name": "biorad_384_wellplate_50ul_O15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.034, + "y": 12.394, + "z": 1.05 + }, + "position3d": { + "x": 74.034, + "y": 12.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "O15_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.034, + "y": 12.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_P15", + "uuid": "6d71ff72-005e-4da1-8db9-87335102d106", + "name": "biorad_384_wellplate_50ul_P15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.034, + "y": 7.894, + "z": 1.05 + }, + "position3d": { + "x": 74.034, + "y": 7.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "P15_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.034, + "y": 7.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_A16", + "uuid": "9d171c88-3fec-4b8d-9b5e-f9bc0acd708f", + "name": "biorad_384_wellplate_50ul_A16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 78.534, + "y": 75.394, + "z": 1.05 + }, + "position3d": { + "x": 78.534, + "y": 75.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A16_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 78.534, + "y": 75.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_B16", + "uuid": "f524d87c-7ea9-4e92-8f5d-9b18ebd56cb3", + "name": "biorad_384_wellplate_50ul_B16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 78.534, + "y": 70.894, + "z": 1.05 + }, + "position3d": { + "x": 78.534, + "y": 70.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B16_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 78.534, + "y": 70.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_C16", + "uuid": "ee3916cc-3689-425f-8a7c-eeb449f2c3c3", + "name": "biorad_384_wellplate_50ul_C16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 78.534, + "y": 66.394, + "z": 1.05 + }, + "position3d": { + "x": 78.534, + "y": 66.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C16_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 78.534, + "y": 66.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_D16", + "uuid": "fa3d53f9-d07b-45b9-bc27-a167833f234c", + "name": "biorad_384_wellplate_50ul_D16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 78.534, + "y": 61.894, + "z": 1.05 + }, + "position3d": { + "x": 78.534, + "y": 61.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D16_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 78.534, + "y": 61.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_E16", + "uuid": "f3f7d019-ca30-494b-88e2-5183f20d328a", + "name": "biorad_384_wellplate_50ul_E16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 78.534, + "y": 57.394, + "z": 1.05 + }, + "position3d": { + "x": 78.534, + "y": 57.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E16_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 78.534, + "y": 57.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_F16", + "uuid": "29900177-aac5-4768-9421-39c3645e8031", + "name": "biorad_384_wellplate_50ul_F16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 78.534, + "y": 52.894, + "z": 1.05 + }, + "position3d": { + "x": 78.534, + "y": 52.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F16_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 78.534, + "y": 52.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_G16", + "uuid": "e1089f79-04cf-4162-9a2f-ebb1d28decdd", + "name": "biorad_384_wellplate_50ul_G16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 78.534, + "y": 48.394, + "z": 1.05 + }, + "position3d": { + "x": 78.534, + "y": 48.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G16_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 78.534, + "y": 48.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_H16", + "uuid": "25a503d2-6107-4e43-901d-292bdbb25616", + "name": "biorad_384_wellplate_50ul_H16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 78.534, + "y": 43.894, + "z": 1.05 + }, + "position3d": { + "x": 78.534, + "y": 43.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H16_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 78.534, + "y": 43.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_I16", + "uuid": "4b99192f-4736-4463-926b-27d4e9654a5d", + "name": "biorad_384_wellplate_50ul_I16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 78.534, + "y": 39.394, + "z": 1.05 + }, + "position3d": { + "x": 78.534, + "y": 39.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "I16_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 78.534, + "y": 39.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_J16", + "uuid": "621fc58c-e2bc-4e5b-a6bb-1caae3f1cd63", + "name": "biorad_384_wellplate_50ul_J16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 78.534, + "y": 34.894, + "z": 1.05 + }, + "position3d": { + "x": 78.534, + "y": 34.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "J16_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 78.534, + "y": 34.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_K16", + "uuid": "e145b2d6-97c9-432d-b378-b02c56c57d22", + "name": "biorad_384_wellplate_50ul_K16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 78.534, + "y": 30.394, + "z": 1.05 + }, + "position3d": { + "x": 78.534, + "y": 30.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "K16_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 78.534, + "y": 30.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_L16", + "uuid": "d51040cf-0fdc-4092-a4bf-af53ec096d18", + "name": "biorad_384_wellplate_50ul_L16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 78.534, + "y": 25.894, + "z": 1.05 + }, + "position3d": { + "x": 78.534, + "y": 25.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "L16_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 78.534, + "y": 25.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_M16", + "uuid": "bf217767-9568-4ee2-a9a1-43f9f3ccd208", + "name": "biorad_384_wellplate_50ul_M16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 78.534, + "y": 21.394, + "z": 1.05 + }, + "position3d": { + "x": 78.534, + "y": 21.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "M16_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 78.534, + "y": 21.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_N16", + "uuid": "7d9607d6-f104-42a1-8d71-7384955a0a8c", + "name": "biorad_384_wellplate_50ul_N16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 78.534, + "y": 16.894, + "z": 1.05 + }, + "position3d": { + "x": 78.534, + "y": 16.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "N16_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 78.534, + "y": 16.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_O16", + "uuid": "8fef310e-0cd5-4c99-86d7-9499c08f8ffe", + "name": "biorad_384_wellplate_50ul_O16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 78.534, + "y": 12.394, + "z": 1.05 + }, + "position3d": { + "x": 78.534, + "y": 12.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "O16_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 78.534, + "y": 12.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_P16", + "uuid": "e781cbd1-e6e9-492f-af47-f97cc7ab80a3", + "name": "biorad_384_wellplate_50ul_P16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 78.534, + "y": 7.894, + "z": 1.05 + }, + "position3d": { + "x": 78.534, + "y": 7.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "P16_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 78.534, + "y": 7.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_A17", + "uuid": "ee79333f-c922-4f8e-a69a-2634ce27fa2e", + "name": "biorad_384_wellplate_50ul_A17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.034, + "y": 75.394, + "z": 1.05 + }, + "position3d": { + "x": 83.034, + "y": 75.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A17_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.034, + "y": 75.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_B17", + "uuid": "5f91b6f7-5765-4d38-a8d2-7289679c7a6e", + "name": "biorad_384_wellplate_50ul_B17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.034, + "y": 70.894, + "z": 1.05 + }, + "position3d": { + "x": 83.034, + "y": 70.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B17_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.034, + "y": 70.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_C17", + "uuid": "7f05c618-3b36-440a-a733-57a319c26380", + "name": "biorad_384_wellplate_50ul_C17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.034, + "y": 66.394, + "z": 1.05 + }, + "position3d": { + "x": 83.034, + "y": 66.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C17_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.034, + "y": 66.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_D17", + "uuid": "ef5327cd-da32-4ce6-8337-0ac4802e9402", + "name": "biorad_384_wellplate_50ul_D17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.034, + "y": 61.894, + "z": 1.05 + }, + "position3d": { + "x": 83.034, + "y": 61.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D17_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.034, + "y": 61.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_E17", + "uuid": "0b810054-7a00-4dea-99dc-0786881f46d8", + "name": "biorad_384_wellplate_50ul_E17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.034, + "y": 57.394, + "z": 1.05 + }, + "position3d": { + "x": 83.034, + "y": 57.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E17_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.034, + "y": 57.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_F17", + "uuid": "ca4c77f9-5f37-473b-9710-27958029a590", + "name": "biorad_384_wellplate_50ul_F17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.034, + "y": 52.894, + "z": 1.05 + }, + "position3d": { + "x": 83.034, + "y": 52.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F17_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.034, + "y": 52.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_G17", + "uuid": "7ab75651-12b8-43f1-9c9c-21d7dce74f90", + "name": "biorad_384_wellplate_50ul_G17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.034, + "y": 48.394, + "z": 1.05 + }, + "position3d": { + "x": 83.034, + "y": 48.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G17_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.034, + "y": 48.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_H17", + "uuid": "d5e6fb74-3e67-4ae8-813b-0736477bf790", + "name": "biorad_384_wellplate_50ul_H17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.034, + "y": 43.894, + "z": 1.05 + }, + "position3d": { + "x": 83.034, + "y": 43.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H17_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.034, + "y": 43.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_I17", + "uuid": "d3933311-4557-491b-994d-d54ec6a4a2c9", + "name": "biorad_384_wellplate_50ul_I17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.034, + "y": 39.394, + "z": 1.05 + }, + "position3d": { + "x": 83.034, + "y": 39.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "I17_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.034, + "y": 39.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_J17", + "uuid": "ddc24f71-9447-4238-b10f-b502f63c9823", + "name": "biorad_384_wellplate_50ul_J17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.034, + "y": 34.894, + "z": 1.05 + }, + "position3d": { + "x": 83.034, + "y": 34.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "J17_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.034, + "y": 34.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_K17", + "uuid": "51e5e874-f5ab-4ee9-b308-02c3cae48f07", + "name": "biorad_384_wellplate_50ul_K17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.034, + "y": 30.394, + "z": 1.05 + }, + "position3d": { + "x": 83.034, + "y": 30.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "K17_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.034, + "y": 30.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_L17", + "uuid": "ad1f66c9-4d38-465c-beb1-26bc0d29b393", + "name": "biorad_384_wellplate_50ul_L17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.034, + "y": 25.894, + "z": 1.05 + }, + "position3d": { + "x": 83.034, + "y": 25.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "L17_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.034, + "y": 25.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_M17", + "uuid": "1204a40e-bb0b-4af6-8cc8-d781ee142775", + "name": "biorad_384_wellplate_50ul_M17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.034, + "y": 21.394, + "z": 1.05 + }, + "position3d": { + "x": 83.034, + "y": 21.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "M17_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.034, + "y": 21.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_N17", + "uuid": "5ead1994-3ce5-4537-bfd0-08a302d41f5d", + "name": "biorad_384_wellplate_50ul_N17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.034, + "y": 16.894, + "z": 1.05 + }, + "position3d": { + "x": 83.034, + "y": 16.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "N17_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.034, + "y": 16.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_O17", + "uuid": "8357a027-8a4c-4ba2-99d3-01b4a012d1d1", + "name": "biorad_384_wellplate_50ul_O17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.034, + "y": 12.394, + "z": 1.05 + }, + "position3d": { + "x": 83.034, + "y": 12.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "O17_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.034, + "y": 12.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_P17", + "uuid": "879484fb-df9b-4bd2-a7e2-8454e264f197", + "name": "biorad_384_wellplate_50ul_P17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.034, + "y": 7.894, + "z": 1.05 + }, + "position3d": { + "x": 83.034, + "y": 7.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "P17_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.034, + "y": 7.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_A18", + "uuid": "f59dc870-d4da-4556-a1d1-d934a1a897d7", + "name": "biorad_384_wellplate_50ul_A18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 87.534, + "y": 75.394, + "z": 1.05 + }, + "position3d": { + "x": 87.534, + "y": 75.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A18_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 87.534, + "y": 75.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_B18", + "uuid": "3ef9d0ec-f767-4e61-9699-5d641131fbc5", + "name": "biorad_384_wellplate_50ul_B18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 87.534, + "y": 70.894, + "z": 1.05 + }, + "position3d": { + "x": 87.534, + "y": 70.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B18_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 87.534, + "y": 70.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_C18", + "uuid": "29ce2ae7-26f8-4e7f-aa5c-fd943607fcac", + "name": "biorad_384_wellplate_50ul_C18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 87.534, + "y": 66.394, + "z": 1.05 + }, + "position3d": { + "x": 87.534, + "y": 66.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C18_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 87.534, + "y": 66.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_D18", + "uuid": "b7609e8c-f998-4bc0-8a0f-0892c8ed7859", + "name": "biorad_384_wellplate_50ul_D18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 87.534, + "y": 61.894, + "z": 1.05 + }, + "position3d": { + "x": 87.534, + "y": 61.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D18_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 87.534, + "y": 61.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_E18", + "uuid": "063ee182-3823-4913-bc0d-cf9eb2f98065", + "name": "biorad_384_wellplate_50ul_E18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 87.534, + "y": 57.394, + "z": 1.05 + }, + "position3d": { + "x": 87.534, + "y": 57.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E18_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 87.534, + "y": 57.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_F18", + "uuid": "ac262785-b3a2-4134-9488-29f0220947a5", + "name": "biorad_384_wellplate_50ul_F18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 87.534, + "y": 52.894, + "z": 1.05 + }, + "position3d": { + "x": 87.534, + "y": 52.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F18_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 87.534, + "y": 52.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_G18", + "uuid": "bbaf0e7a-1b53-4c5f-b180-c38275628f60", + "name": "biorad_384_wellplate_50ul_G18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 87.534, + "y": 48.394, + "z": 1.05 + }, + "position3d": { + "x": 87.534, + "y": 48.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G18_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 87.534, + "y": 48.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_H18", + "uuid": "6db60d69-bae3-4022-8814-d4c4daab1305", + "name": "biorad_384_wellplate_50ul_H18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 87.534, + "y": 43.894, + "z": 1.05 + }, + "position3d": { + "x": 87.534, + "y": 43.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H18_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 87.534, + "y": 43.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_I18", + "uuid": "c2d7aa5d-24c8-4d63-bd9e-5486079ac525", + "name": "biorad_384_wellplate_50ul_I18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 87.534, + "y": 39.394, + "z": 1.05 + }, + "position3d": { + "x": 87.534, + "y": 39.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "I18_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 87.534, + "y": 39.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_J18", + "uuid": "cc4ae379-b5bd-4b40-bb5a-5fd8f0d089e4", + "name": "biorad_384_wellplate_50ul_J18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 87.534, + "y": 34.894, + "z": 1.05 + }, + "position3d": { + "x": 87.534, + "y": 34.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "J18_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 87.534, + "y": 34.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_K18", + "uuid": "71cc5b45-0f3b-4ad4-a9a2-b88cbb590690", + "name": "biorad_384_wellplate_50ul_K18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 87.534, + "y": 30.394, + "z": 1.05 + }, + "position3d": { + "x": 87.534, + "y": 30.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "K18_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 87.534, + "y": 30.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_L18", + "uuid": "d874f2aa-1520-42ff-a779-d79ac64acd33", + "name": "biorad_384_wellplate_50ul_L18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 87.534, + "y": 25.894, + "z": 1.05 + }, + "position3d": { + "x": 87.534, + "y": 25.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "L18_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 87.534, + "y": 25.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_M18", + "uuid": "23e31dff-78c0-4f47-88d9-aae514f2aeca", + "name": "biorad_384_wellplate_50ul_M18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 87.534, + "y": 21.394, + "z": 1.05 + }, + "position3d": { + "x": 87.534, + "y": 21.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "M18_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 87.534, + "y": 21.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_N18", + "uuid": "c17bfb1b-1a2f-49e4-b364-1596bdcdea03", + "name": "biorad_384_wellplate_50ul_N18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 87.534, + "y": 16.894, + "z": 1.05 + }, + "position3d": { + "x": 87.534, + "y": 16.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "N18_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 87.534, + "y": 16.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_O18", + "uuid": "b3289ff4-c4da-4a91-97c4-8fb835724281", + "name": "biorad_384_wellplate_50ul_O18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 87.534, + "y": 12.394, + "z": 1.05 + }, + "position3d": { + "x": 87.534, + "y": 12.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "O18_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 87.534, + "y": 12.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_P18", + "uuid": "ab970ea0-febc-4ef1-a25d-bd82312ddebd", + "name": "biorad_384_wellplate_50ul_P18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 87.534, + "y": 7.894, + "z": 1.05 + }, + "position3d": { + "x": 87.534, + "y": 7.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "P18_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 87.534, + "y": 7.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_A19", + "uuid": "de7746b7-00ac-417b-9bce-3d9fd8736620", + "name": "biorad_384_wellplate_50ul_A19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.034, + "y": 75.394, + "z": 1.05 + }, + "position3d": { + "x": 92.034, + "y": 75.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A19_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.034, + "y": 75.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_B19", + "uuid": "4fc6c223-29ab-41d9-9fc6-374897427b3c", + "name": "biorad_384_wellplate_50ul_B19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.034, + "y": 70.894, + "z": 1.05 + }, + "position3d": { + "x": 92.034, + "y": 70.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B19_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.034, + "y": 70.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_C19", + "uuid": "feefe838-c2a6-498e-8778-fe78883e57b9", + "name": "biorad_384_wellplate_50ul_C19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.034, + "y": 66.394, + "z": 1.05 + }, + "position3d": { + "x": 92.034, + "y": 66.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C19_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.034, + "y": 66.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_D19", + "uuid": "658264e4-063d-4153-b0e1-d1f1566f09bd", + "name": "biorad_384_wellplate_50ul_D19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.034, + "y": 61.894, + "z": 1.05 + }, + "position3d": { + "x": 92.034, + "y": 61.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D19_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.034, + "y": 61.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_E19", + "uuid": "f1cf9a3d-020e-491f-98d0-d9ccffbfd7c1", + "name": "biorad_384_wellplate_50ul_E19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.034, + "y": 57.394, + "z": 1.05 + }, + "position3d": { + "x": 92.034, + "y": 57.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E19_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.034, + "y": 57.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_F19", + "uuid": "6c1edfc6-7822-4b68-a86c-250eb56559dd", + "name": "biorad_384_wellplate_50ul_F19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.034, + "y": 52.894, + "z": 1.05 + }, + "position3d": { + "x": 92.034, + "y": 52.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F19_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.034, + "y": 52.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_G19", + "uuid": "d573e9e2-3a7b-4384-8422-169d8fd4f1b1", + "name": "biorad_384_wellplate_50ul_G19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.034, + "y": 48.394, + "z": 1.05 + }, + "position3d": { + "x": 92.034, + "y": 48.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G19_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.034, + "y": 48.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_H19", + "uuid": "879ad676-6879-4826-984a-0fda4135cb86", + "name": "biorad_384_wellplate_50ul_H19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.034, + "y": 43.894, + "z": 1.05 + }, + "position3d": { + "x": 92.034, + "y": 43.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H19_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.034, + "y": 43.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_I19", + "uuid": "20167e28-45f3-466b-93e3-3331b6b38a13", + "name": "biorad_384_wellplate_50ul_I19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.034, + "y": 39.394, + "z": 1.05 + }, + "position3d": { + "x": 92.034, + "y": 39.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "I19_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.034, + "y": 39.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_J19", + "uuid": "eeeec8f7-48cc-4921-a684-c855ec3cfae6", + "name": "biorad_384_wellplate_50ul_J19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.034, + "y": 34.894, + "z": 1.05 + }, + "position3d": { + "x": 92.034, + "y": 34.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "J19_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.034, + "y": 34.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_K19", + "uuid": "98708a8a-1930-4c92-9444-04843c9a44c9", + "name": "biorad_384_wellplate_50ul_K19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.034, + "y": 30.394, + "z": 1.05 + }, + "position3d": { + "x": 92.034, + "y": 30.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "K19_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.034, + "y": 30.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_L19", + "uuid": "e88f9aed-0336-4301-88c1-35db2ddd78b7", + "name": "biorad_384_wellplate_50ul_L19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.034, + "y": 25.894, + "z": 1.05 + }, + "position3d": { + "x": 92.034, + "y": 25.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "L19_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.034, + "y": 25.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_M19", + "uuid": "366ff796-0b36-4354-8492-b5ff82dd0547", + "name": "biorad_384_wellplate_50ul_M19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.034, + "y": 21.394, + "z": 1.05 + }, + "position3d": { + "x": 92.034, + "y": 21.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "M19_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.034, + "y": 21.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_N19", + "uuid": "65fb5865-7ce6-4f90-bc63-67ed402ef215", + "name": "biorad_384_wellplate_50ul_N19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.034, + "y": 16.894, + "z": 1.05 + }, + "position3d": { + "x": 92.034, + "y": 16.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "N19_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.034, + "y": 16.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_O19", + "uuid": "a1eefc81-d31f-44bb-ad1c-6ad7cb44e9ad", + "name": "biorad_384_wellplate_50ul_O19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.034, + "y": 12.394, + "z": 1.05 + }, + "position3d": { + "x": 92.034, + "y": 12.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "O19_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.034, + "y": 12.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_P19", + "uuid": "70c325d5-5fb5-4cc1-9317-62a3139ad80a", + "name": "biorad_384_wellplate_50ul_P19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.034, + "y": 7.894, + "z": 1.05 + }, + "position3d": { + "x": 92.034, + "y": 7.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "P19_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.034, + "y": 7.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_A20", + "uuid": "b53f9f4b-f88d-4955-9064-ecc069da230b", + "name": "biorad_384_wellplate_50ul_A20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 96.534, + "y": 75.394, + "z": 1.05 + }, + "position3d": { + "x": 96.534, + "y": 75.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A20_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 96.534, + "y": 75.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_B20", + "uuid": "3c53e252-7a37-483b-ba46-d493b732a696", + "name": "biorad_384_wellplate_50ul_B20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 96.534, + "y": 70.894, + "z": 1.05 + }, + "position3d": { + "x": 96.534, + "y": 70.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B20_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 96.534, + "y": 70.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_C20", + "uuid": "116001ff-28e5-4d12-8536-6c77b46ec612", + "name": "biorad_384_wellplate_50ul_C20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 96.534, + "y": 66.394, + "z": 1.05 + }, + "position3d": { + "x": 96.534, + "y": 66.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C20_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 96.534, + "y": 66.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_D20", + "uuid": "55068ccd-6759-4aa7-89c2-fc543ce9dd0c", + "name": "biorad_384_wellplate_50ul_D20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 96.534, + "y": 61.894, + "z": 1.05 + }, + "position3d": { + "x": 96.534, + "y": 61.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D20_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 96.534, + "y": 61.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_E20", + "uuid": "efd82742-f730-411d-ab27-68d07bdc6c64", + "name": "biorad_384_wellplate_50ul_E20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 96.534, + "y": 57.394, + "z": 1.05 + }, + "position3d": { + "x": 96.534, + "y": 57.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E20_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 96.534, + "y": 57.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_F20", + "uuid": "8b0f57a0-dcf2-4dc0-9797-a0122cc9b3df", + "name": "biorad_384_wellplate_50ul_F20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 96.534, + "y": 52.894, + "z": 1.05 + }, + "position3d": { + "x": 96.534, + "y": 52.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F20_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 96.534, + "y": 52.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_G20", + "uuid": "9903102e-e8ca-45af-b46a-b4490f45a207", + "name": "biorad_384_wellplate_50ul_G20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 96.534, + "y": 48.394, + "z": 1.05 + }, + "position3d": { + "x": 96.534, + "y": 48.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G20_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 96.534, + "y": 48.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_H20", + "uuid": "bf3bd66b-e8fc-4531-9167-5aaef9cfa1bb", + "name": "biorad_384_wellplate_50ul_H20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 96.534, + "y": 43.894, + "z": 1.05 + }, + "position3d": { + "x": 96.534, + "y": 43.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H20_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 96.534, + "y": 43.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_I20", + "uuid": "c448e581-b495-48b5-a2bd-dd8db565d777", + "name": "biorad_384_wellplate_50ul_I20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 96.534, + "y": 39.394, + "z": 1.05 + }, + "position3d": { + "x": 96.534, + "y": 39.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "I20_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 96.534, + "y": 39.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_J20", + "uuid": "7bb4346f-ce61-4171-88af-8b2ca68fd6c6", + "name": "biorad_384_wellplate_50ul_J20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 96.534, + "y": 34.894, + "z": 1.05 + }, + "position3d": { + "x": 96.534, + "y": 34.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "J20_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 96.534, + "y": 34.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_K20", + "uuid": "eb180d34-d9c7-4027-8d21-0c56d9e6f22f", + "name": "biorad_384_wellplate_50ul_K20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 96.534, + "y": 30.394, + "z": 1.05 + }, + "position3d": { + "x": 96.534, + "y": 30.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "K20_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 96.534, + "y": 30.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_L20", + "uuid": "e0863758-8f4d-4dbf-958d-a450acd7b1d0", + "name": "biorad_384_wellplate_50ul_L20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 96.534, + "y": 25.894, + "z": 1.05 + }, + "position3d": { + "x": 96.534, + "y": 25.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "L20_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 96.534, + "y": 25.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_M20", + "uuid": "113dbbcd-f4e1-418f-9374-2dd80ebf810a", + "name": "biorad_384_wellplate_50ul_M20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 96.534, + "y": 21.394, + "z": 1.05 + }, + "position3d": { + "x": 96.534, + "y": 21.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "M20_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 96.534, + "y": 21.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_N20", + "uuid": "7802adbb-64f3-450e-b03e-84f25d956919", + "name": "biorad_384_wellplate_50ul_N20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 96.534, + "y": 16.894, + "z": 1.05 + }, + "position3d": { + "x": 96.534, + "y": 16.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "N20_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 96.534, + "y": 16.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_O20", + "uuid": "73744c3a-87d6-42a4-8757-4ede919908fd", + "name": "biorad_384_wellplate_50ul_O20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 96.534, + "y": 12.394, + "z": 1.05 + }, + "position3d": { + "x": 96.534, + "y": 12.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "O20_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 96.534, + "y": 12.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_P20", + "uuid": "3ddeac93-36d9-4f91-9f6a-d8c819e04b0d", + "name": "biorad_384_wellplate_50ul_P20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 96.534, + "y": 7.894, + "z": 1.05 + }, + "position3d": { + "x": 96.534, + "y": 7.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "P20_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 96.534, + "y": 7.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_A21", + "uuid": "5431fe57-7be7-48c0-a8bc-dc54036f865b", + "name": "biorad_384_wellplate_50ul_A21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.034, + "y": 75.394, + "z": 1.05 + }, + "position3d": { + "x": 101.034, + "y": 75.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A21_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.034, + "y": 75.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_B21", + "uuid": "3e333e5a-9c57-4b88-af51-a0ffcbc20518", + "name": "biorad_384_wellplate_50ul_B21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.034, + "y": 70.894, + "z": 1.05 + }, + "position3d": { + "x": 101.034, + "y": 70.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B21_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.034, + "y": 70.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_C21", + "uuid": "b86bd8f6-7e1c-4ae5-add4-73a9618cf364", + "name": "biorad_384_wellplate_50ul_C21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.034, + "y": 66.394, + "z": 1.05 + }, + "position3d": { + "x": 101.034, + "y": 66.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C21_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.034, + "y": 66.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_D21", + "uuid": "bb6a2f01-e847-4286-95d2-7ae1e14eb827", + "name": "biorad_384_wellplate_50ul_D21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.034, + "y": 61.894, + "z": 1.05 + }, + "position3d": { + "x": 101.034, + "y": 61.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D21_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.034, + "y": 61.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_E21", + "uuid": "0b3545f8-18a9-4ae3-b21e-279014c842fb", + "name": "biorad_384_wellplate_50ul_E21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.034, + "y": 57.394, + "z": 1.05 + }, + "position3d": { + "x": 101.034, + "y": 57.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E21_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.034, + "y": 57.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_F21", + "uuid": "493cd387-42e6-4def-ad28-df445f4162e8", + "name": "biorad_384_wellplate_50ul_F21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.034, + "y": 52.894, + "z": 1.05 + }, + "position3d": { + "x": 101.034, + "y": 52.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F21_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.034, + "y": 52.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_G21", + "uuid": "2ac2e6e8-52a8-4000-a2bf-6355024c107f", + "name": "biorad_384_wellplate_50ul_G21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.034, + "y": 48.394, + "z": 1.05 + }, + "position3d": { + "x": 101.034, + "y": 48.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G21_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.034, + "y": 48.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_H21", + "uuid": "0b80e067-8700-4cf9-b924-48bda4f17575", + "name": "biorad_384_wellplate_50ul_H21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.034, + "y": 43.894, + "z": 1.05 + }, + "position3d": { + "x": 101.034, + "y": 43.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H21_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.034, + "y": 43.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_I21", + "uuid": "6f51e4cf-c91c-49d5-926d-3fa23e1d86d8", + "name": "biorad_384_wellplate_50ul_I21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.034, + "y": 39.394, + "z": 1.05 + }, + "position3d": { + "x": 101.034, + "y": 39.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "I21_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.034, + "y": 39.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_J21", + "uuid": "3174d391-f632-4f37-862c-680082dfc3a6", + "name": "biorad_384_wellplate_50ul_J21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.034, + "y": 34.894, + "z": 1.05 + }, + "position3d": { + "x": 101.034, + "y": 34.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "J21_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.034, + "y": 34.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_K21", + "uuid": "9318ad0e-09fd-4ee5-bd67-ebc3aa302a0a", + "name": "biorad_384_wellplate_50ul_K21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.034, + "y": 30.394, + "z": 1.05 + }, + "position3d": { + "x": 101.034, + "y": 30.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "K21_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.034, + "y": 30.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_L21", + "uuid": "5fd8d55a-6707-458b-b485-3d6f566a5787", + "name": "biorad_384_wellplate_50ul_L21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.034, + "y": 25.894, + "z": 1.05 + }, + "position3d": { + "x": 101.034, + "y": 25.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "L21_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.034, + "y": 25.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_M21", + "uuid": "40088d8c-48e4-4240-9065-ab5bae6b7a6b", + "name": "biorad_384_wellplate_50ul_M21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.034, + "y": 21.394, + "z": 1.05 + }, + "position3d": { + "x": 101.034, + "y": 21.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "M21_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.034, + "y": 21.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_N21", + "uuid": "42ee76a5-4ccf-4dd0-a7cb-9a3964767deb", + "name": "biorad_384_wellplate_50ul_N21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.034, + "y": 16.894, + "z": 1.05 + }, + "position3d": { + "x": 101.034, + "y": 16.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "N21_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.034, + "y": 16.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_O21", + "uuid": "c2545ed1-4b56-4059-ac27-a07ec820c340", + "name": "biorad_384_wellplate_50ul_O21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.034, + "y": 12.394, + "z": 1.05 + }, + "position3d": { + "x": 101.034, + "y": 12.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "O21_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.034, + "y": 12.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_P21", + "uuid": "38273036-36f8-4890-b208-413fca4ed79f", + "name": "biorad_384_wellplate_50ul_P21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.034, + "y": 7.894, + "z": 1.05 + }, + "position3d": { + "x": 101.034, + "y": 7.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "P21_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.034, + "y": 7.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_A22", + "uuid": "b34c8936-45fd-45e0-9cbb-398b90f35f38", + "name": "biorad_384_wellplate_50ul_A22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 105.534, + "y": 75.394, + "z": 1.05 + }, + "position3d": { + "x": 105.534, + "y": 75.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A22_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 105.534, + "y": 75.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_B22", + "uuid": "578a2515-3544-4650-8749-e9dcad5da5f7", + "name": "biorad_384_wellplate_50ul_B22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 105.534, + "y": 70.894, + "z": 1.05 + }, + "position3d": { + "x": 105.534, + "y": 70.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B22_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 105.534, + "y": 70.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_C22", + "uuid": "1e83c5bf-6051-40d6-8b4c-fcd1d87ca672", + "name": "biorad_384_wellplate_50ul_C22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 105.534, + "y": 66.394, + "z": 1.05 + }, + "position3d": { + "x": 105.534, + "y": 66.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C22_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 105.534, + "y": 66.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_D22", + "uuid": "840131a0-17f4-4061-9fe0-064babfce131", + "name": "biorad_384_wellplate_50ul_D22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 105.534, + "y": 61.894, + "z": 1.05 + }, + "position3d": { + "x": 105.534, + "y": 61.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D22_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 105.534, + "y": 61.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_E22", + "uuid": "4f6ba1ca-ebcd-40ac-b1bb-ce31ed870e6e", + "name": "biorad_384_wellplate_50ul_E22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 105.534, + "y": 57.394, + "z": 1.05 + }, + "position3d": { + "x": 105.534, + "y": 57.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E22_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 105.534, + "y": 57.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_F22", + "uuid": "8298be02-a899-4655-a3af-dd513413b63c", + "name": "biorad_384_wellplate_50ul_F22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 105.534, + "y": 52.894, + "z": 1.05 + }, + "position3d": { + "x": 105.534, + "y": 52.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F22_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 105.534, + "y": 52.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_G22", + "uuid": "989593bc-c8dc-46ce-85d0-09927557d516", + "name": "biorad_384_wellplate_50ul_G22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 105.534, + "y": 48.394, + "z": 1.05 + }, + "position3d": { + "x": 105.534, + "y": 48.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G22_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 105.534, + "y": 48.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_H22", + "uuid": "5f3382c0-43aa-451a-9371-53551c06100a", + "name": "biorad_384_wellplate_50ul_H22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 105.534, + "y": 43.894, + "z": 1.05 + }, + "position3d": { + "x": 105.534, + "y": 43.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H22_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 105.534, + "y": 43.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_I22", + "uuid": "5fc3fe4b-98b7-4f58-81dc-ff811bff57d6", + "name": "biorad_384_wellplate_50ul_I22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 105.534, + "y": 39.394, + "z": 1.05 + }, + "position3d": { + "x": 105.534, + "y": 39.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "I22_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 105.534, + "y": 39.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_J22", + "uuid": "f7d63cc6-fd93-44b2-84ab-33674bfa2fbf", + "name": "biorad_384_wellplate_50ul_J22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 105.534, + "y": 34.894, + "z": 1.05 + }, + "position3d": { + "x": 105.534, + "y": 34.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "J22_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 105.534, + "y": 34.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_K22", + "uuid": "79ba61d7-3c53-4975-9269-0ea71ca63af2", + "name": "biorad_384_wellplate_50ul_K22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 105.534, + "y": 30.394, + "z": 1.05 + }, + "position3d": { + "x": 105.534, + "y": 30.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "K22_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 105.534, + "y": 30.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_L22", + "uuid": "2d20a2b1-4e96-4420-8701-4819a12d6069", + "name": "biorad_384_wellplate_50ul_L22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 105.534, + "y": 25.894, + "z": 1.05 + }, + "position3d": { + "x": 105.534, + "y": 25.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "L22_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 105.534, + "y": 25.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_M22", + "uuid": "78917109-cdc3-4461-a114-9343080f3dc8", + "name": "biorad_384_wellplate_50ul_M22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 105.534, + "y": 21.394, + "z": 1.05 + }, + "position3d": { + "x": 105.534, + "y": 21.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "M22_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 105.534, + "y": 21.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_N22", + "uuid": "9cccb968-cc25-4aa5-a97a-f7cef18386e0", + "name": "biorad_384_wellplate_50ul_N22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 105.534, + "y": 16.894, + "z": 1.05 + }, + "position3d": { + "x": 105.534, + "y": 16.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "N22_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 105.534, + "y": 16.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_O22", + "uuid": "efc0be7f-db57-498d-aa84-b7fec9f7353d", + "name": "biorad_384_wellplate_50ul_O22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 105.534, + "y": 12.394, + "z": 1.05 + }, + "position3d": { + "x": 105.534, + "y": 12.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "O22_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 105.534, + "y": 12.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_P22", + "uuid": "a192d59a-f439-43da-ac25-146488811df1", + "name": "biorad_384_wellplate_50ul_P22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 105.534, + "y": 7.894, + "z": 1.05 + }, + "position3d": { + "x": 105.534, + "y": 7.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "P22_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 105.534, + "y": 7.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_A23", + "uuid": "ef5d9b40-4250-4c77-84b3-af3fe6549571", + "name": "biorad_384_wellplate_50ul_A23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.034, + "y": 75.394, + "z": 1.05 + }, + "position3d": { + "x": 110.034, + "y": 75.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A23_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.034, + "y": 75.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_B23", + "uuid": "5762407f-09a6-4987-8839-d16fe9a0745a", + "name": "biorad_384_wellplate_50ul_B23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.034, + "y": 70.894, + "z": 1.05 + }, + "position3d": { + "x": 110.034, + "y": 70.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B23_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.034, + "y": 70.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_C23", + "uuid": "c95974e7-a8ad-4e79-b8d5-d3a7a7bccc14", + "name": "biorad_384_wellplate_50ul_C23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.034, + "y": 66.394, + "z": 1.05 + }, + "position3d": { + "x": 110.034, + "y": 66.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C23_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.034, + "y": 66.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_D23", + "uuid": "bc85efa3-5ecd-44b5-9758-df2c43b5a80e", + "name": "biorad_384_wellplate_50ul_D23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.034, + "y": 61.894, + "z": 1.05 + }, + "position3d": { + "x": 110.034, + "y": 61.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D23_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.034, + "y": 61.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_E23", + "uuid": "af6419f3-9ab0-4a71-8afb-caed8d466053", + "name": "biorad_384_wellplate_50ul_E23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.034, + "y": 57.394, + "z": 1.05 + }, + "position3d": { + "x": 110.034, + "y": 57.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E23_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.034, + "y": 57.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_F23", + "uuid": "82deea77-95db-487f-bb04-514ae1a082c9", + "name": "biorad_384_wellplate_50ul_F23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.034, + "y": 52.894, + "z": 1.05 + }, + "position3d": { + "x": 110.034, + "y": 52.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F23_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.034, + "y": 52.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_G23", + "uuid": "e38cfbf7-7abb-4a18-83db-5f41aeab4957", + "name": "biorad_384_wellplate_50ul_G23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.034, + "y": 48.394, + "z": 1.05 + }, + "position3d": { + "x": 110.034, + "y": 48.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G23_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.034, + "y": 48.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_H23", + "uuid": "ddddb6bf-a4dd-4713-af7e-7bd5837ae633", + "name": "biorad_384_wellplate_50ul_H23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.034, + "y": 43.894, + "z": 1.05 + }, + "position3d": { + "x": 110.034, + "y": 43.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H23_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.034, + "y": 43.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_I23", + "uuid": "a421c51e-39f8-4f4b-9212-90f41a314845", + "name": "biorad_384_wellplate_50ul_I23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.034, + "y": 39.394, + "z": 1.05 + }, + "position3d": { + "x": 110.034, + "y": 39.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "I23_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.034, + "y": 39.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_J23", + "uuid": "28cf01f2-feec-478f-8fa0-7d88d96145f5", + "name": "biorad_384_wellplate_50ul_J23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.034, + "y": 34.894, + "z": 1.05 + }, + "position3d": { + "x": 110.034, + "y": 34.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "J23_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.034, + "y": 34.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_K23", + "uuid": "405d90e4-2d8a-411f-9fdc-fc0e60c5c55e", + "name": "biorad_384_wellplate_50ul_K23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.034, + "y": 30.394, + "z": 1.05 + }, + "position3d": { + "x": 110.034, + "y": 30.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "K23_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.034, + "y": 30.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_L23", + "uuid": "19d63120-d06f-43eb-85d3-0e4c37d3a177", + "name": "biorad_384_wellplate_50ul_L23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.034, + "y": 25.894, + "z": 1.05 + }, + "position3d": { + "x": 110.034, + "y": 25.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "L23_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.034, + "y": 25.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_M23", + "uuid": "ef603a9f-2d90-4b3f-9267-2941dcee231d", + "name": "biorad_384_wellplate_50ul_M23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.034, + "y": 21.394, + "z": 1.05 + }, + "position3d": { + "x": 110.034, + "y": 21.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "M23_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.034, + "y": 21.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_N23", + "uuid": "d6b1a5c0-e6a6-4cce-b22b-7d10d8ba265e", + "name": "biorad_384_wellplate_50ul_N23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.034, + "y": 16.894, + "z": 1.05 + }, + "position3d": { + "x": 110.034, + "y": 16.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "N23_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.034, + "y": 16.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_O23", + "uuid": "332e3279-5612-4ae2-99fc-17ecba477ff7", + "name": "biorad_384_wellplate_50ul_O23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.034, + "y": 12.394, + "z": 1.05 + }, + "position3d": { + "x": 110.034, + "y": 12.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "O23_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.034, + "y": 12.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_P23", + "uuid": "88f6bd8a-f2ca-4b52-82fc-d85e7869c53f", + "name": "biorad_384_wellplate_50ul_P23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.034, + "y": 7.894, + "z": 1.05 + }, + "position3d": { + "x": 110.034, + "y": 7.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "P23_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.034, + "y": 7.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_A24", + "uuid": "1cd3ecdd-70e1-4d52-a3f2-1f86dd0b804b", + "name": "biorad_384_wellplate_50ul_A24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.534, + "y": 75.394, + "z": 1.05 + }, + "position3d": { + "x": 114.534, + "y": 75.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A24_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.534, + "y": 75.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_B24", + "uuid": "1a37110f-0954-4acd-a38d-3443b2f5b079", + "name": "biorad_384_wellplate_50ul_B24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.534, + "y": 70.894, + "z": 1.05 + }, + "position3d": { + "x": 114.534, + "y": 70.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B24_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.534, + "y": 70.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_C24", + "uuid": "a2f86a29-cb05-41a9-82ce-ab3066f252e2", + "name": "biorad_384_wellplate_50ul_C24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.534, + "y": 66.394, + "z": 1.05 + }, + "position3d": { + "x": 114.534, + "y": 66.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C24_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.534, + "y": 66.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_D24", + "uuid": "90da575b-093d-4868-91fa-46b9b755ed2b", + "name": "biorad_384_wellplate_50ul_D24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.534, + "y": 61.894, + "z": 1.05 + }, + "position3d": { + "x": 114.534, + "y": 61.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D24_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.534, + "y": 61.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_E24", + "uuid": "03b76314-1ed3-4231-a852-9ec83c3a3739", + "name": "biorad_384_wellplate_50ul_E24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.534, + "y": 57.394, + "z": 1.05 + }, + "position3d": { + "x": 114.534, + "y": 57.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E24_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.534, + "y": 57.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_F24", + "uuid": "aa31b315-b668-4f69-b5cd-30f680ed9652", + "name": "biorad_384_wellplate_50ul_F24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.534, + "y": 52.894, + "z": 1.05 + }, + "position3d": { + "x": 114.534, + "y": 52.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F24_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.534, + "y": 52.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_G24", + "uuid": "4b29766f-64db-4b0c-9ec4-d6c4be3fa5eb", + "name": "biorad_384_wellplate_50ul_G24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.534, + "y": 48.394, + "z": 1.05 + }, + "position3d": { + "x": 114.534, + "y": 48.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G24_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.534, + "y": 48.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_H24", + "uuid": "4bfeafac-6ccd-40d0-97eb-54d6c19b355a", + "name": "biorad_384_wellplate_50ul_H24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.534, + "y": 43.894, + "z": 1.05 + }, + "position3d": { + "x": 114.534, + "y": 43.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H24_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.534, + "y": 43.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_I24", + "uuid": "cc7874eb-6952-4ae7-bfd5-09407c1dbcfb", + "name": "biorad_384_wellplate_50ul_I24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.534, + "y": 39.394, + "z": 1.05 + }, + "position3d": { + "x": 114.534, + "y": 39.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "I24_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.534, + "y": 39.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_J24", + "uuid": "3e37b7db-4378-417d-b458-55b298482027", + "name": "biorad_384_wellplate_50ul_J24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.534, + "y": 34.894, + "z": 1.05 + }, + "position3d": { + "x": 114.534, + "y": 34.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "J24_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.534, + "y": 34.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_K24", + "uuid": "94b17a40-6cff-4650-a91c-518e2c38622d", + "name": "biorad_384_wellplate_50ul_K24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.534, + "y": 30.394, + "z": 1.05 + }, + "position3d": { + "x": 114.534, + "y": 30.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "K24_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.534, + "y": 30.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_L24", + "uuid": "a414aef1-4d38-419f-8ca3-6df7cd3273c0", + "name": "biorad_384_wellplate_50ul_L24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.534, + "y": 25.894, + "z": 1.05 + }, + "position3d": { + "x": 114.534, + "y": 25.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "L24_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.534, + "y": 25.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_M24", + "uuid": "d9675ccc-9c2a-4332-805f-5d602ee3dc66", + "name": "biorad_384_wellplate_50ul_M24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.534, + "y": 21.394, + "z": 1.05 + }, + "position3d": { + "x": 114.534, + "y": 21.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "M24_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.534, + "y": 21.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_N24", + "uuid": "2be8586a-91db-47dc-99f9-784f33bb3161", + "name": "biorad_384_wellplate_50ul_N24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.534, + "y": 16.894, + "z": 1.05 + }, + "position3d": { + "x": 114.534, + "y": 16.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "N24_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.534, + "y": 16.894, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_O24", + "uuid": "2c7721f2-3702-4ecf-9576-9ffcbae4e40c", + "name": "biorad_384_wellplate_50ul_O24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.534, + "y": 12.394, + "z": 1.05 + }, + "position3d": { + "x": 114.534, + "y": 12.394, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "O24_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.534, + "y": 12.394, + "z": 1.05 + } + }, + { + "id": "biorad_384_wellplate_50ul_P24", + "uuid": "04a3b687-576c-4828-b3f8-dc024e9266fc", + "name": "biorad_384_wellplate_50ul_P24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "592b813f-27b2-4a2b-bd4b-47e0f7fbdde1", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 2.192, + "height": 2.192 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.534, + "y": 7.894, + "z": 1.05 + }, + "position3d": { + "x": 114.534, + "y": 7.894, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 2.192, + "size_y": 2.192, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "P24_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.534, + "y": 7.894, + "z": 1.05 + } + } + ] + }, + { + "id": "biorad_96_wellplate_200ul_pcr", + "category": [ + "plates" + ], + "class": { + "module": "pylabrobot.resources.opentrons.plates:biorad_96_wellplate_200ul_pcr", + "type": "pylabrobot" + }, + "description": "BioRad 96 wellplate 200ul pcr", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/opentrons/plates.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "biorad_96_wellplate_200ul_pcr", + "uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "name": "biorad_96_wellplate_200ul_pcr", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "plate", + "class": "", + "pose": { + "size": { + "depth": 16.06, + "width": 127.76, + "height": 85.48 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Plate", + "size_x": 127.76, + "size_y": 85.48, + "size_z": 16.06, + "category": "plate", + "model": "Bio-Rad 96 Well Plate 200 µL PCR", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "biorad_96_wellplate_200ul_pcr_A1", + "B1": "biorad_96_wellplate_200ul_pcr_B1", + "C1": "biorad_96_wellplate_200ul_pcr_C1", + "D1": "biorad_96_wellplate_200ul_pcr_D1", + "E1": "biorad_96_wellplate_200ul_pcr_E1", + "F1": "biorad_96_wellplate_200ul_pcr_F1", + "G1": "biorad_96_wellplate_200ul_pcr_G1", + "H1": "biorad_96_wellplate_200ul_pcr_H1", + "A2": "biorad_96_wellplate_200ul_pcr_A2", + "B2": "biorad_96_wellplate_200ul_pcr_B2", + "C2": "biorad_96_wellplate_200ul_pcr_C2", + "D2": "biorad_96_wellplate_200ul_pcr_D2", + "E2": "biorad_96_wellplate_200ul_pcr_E2", + "F2": "biorad_96_wellplate_200ul_pcr_F2", + "G2": "biorad_96_wellplate_200ul_pcr_G2", + "H2": "biorad_96_wellplate_200ul_pcr_H2", + "A3": "biorad_96_wellplate_200ul_pcr_A3", + "B3": "biorad_96_wellplate_200ul_pcr_B3", + "C3": "biorad_96_wellplate_200ul_pcr_C3", + "D3": "biorad_96_wellplate_200ul_pcr_D3", + "E3": "biorad_96_wellplate_200ul_pcr_E3", + "F3": "biorad_96_wellplate_200ul_pcr_F3", + "G3": "biorad_96_wellplate_200ul_pcr_G3", + "H3": "biorad_96_wellplate_200ul_pcr_H3", + "A4": "biorad_96_wellplate_200ul_pcr_A4", + "B4": "biorad_96_wellplate_200ul_pcr_B4", + "C4": "biorad_96_wellplate_200ul_pcr_C4", + "D4": "biorad_96_wellplate_200ul_pcr_D4", + "E4": "biorad_96_wellplate_200ul_pcr_E4", + "F4": "biorad_96_wellplate_200ul_pcr_F4", + "G4": "biorad_96_wellplate_200ul_pcr_G4", + "H4": "biorad_96_wellplate_200ul_pcr_H4", + "A5": "biorad_96_wellplate_200ul_pcr_A5", + "B5": "biorad_96_wellplate_200ul_pcr_B5", + "C5": "biorad_96_wellplate_200ul_pcr_C5", + "D5": "biorad_96_wellplate_200ul_pcr_D5", + "E5": "biorad_96_wellplate_200ul_pcr_E5", + "F5": "biorad_96_wellplate_200ul_pcr_F5", + "G5": "biorad_96_wellplate_200ul_pcr_G5", + "H5": "biorad_96_wellplate_200ul_pcr_H5", + "A6": "biorad_96_wellplate_200ul_pcr_A6", + "B6": "biorad_96_wellplate_200ul_pcr_B6", + "C6": "biorad_96_wellplate_200ul_pcr_C6", + "D6": "biorad_96_wellplate_200ul_pcr_D6", + "E6": "biorad_96_wellplate_200ul_pcr_E6", + "F6": "biorad_96_wellplate_200ul_pcr_F6", + "G6": "biorad_96_wellplate_200ul_pcr_G6", + "H6": "biorad_96_wellplate_200ul_pcr_H6", + "A7": "biorad_96_wellplate_200ul_pcr_A7", + "B7": "biorad_96_wellplate_200ul_pcr_B7", + "C7": "biorad_96_wellplate_200ul_pcr_C7", + "D7": "biorad_96_wellplate_200ul_pcr_D7", + "E7": "biorad_96_wellplate_200ul_pcr_E7", + "F7": "biorad_96_wellplate_200ul_pcr_F7", + "G7": "biorad_96_wellplate_200ul_pcr_G7", + "H7": "biorad_96_wellplate_200ul_pcr_H7", + "A8": "biorad_96_wellplate_200ul_pcr_A8", + "B8": "biorad_96_wellplate_200ul_pcr_B8", + "C8": "biorad_96_wellplate_200ul_pcr_C8", + "D8": "biorad_96_wellplate_200ul_pcr_D8", + "E8": "biorad_96_wellplate_200ul_pcr_E8", + "F8": "biorad_96_wellplate_200ul_pcr_F8", + "G8": "biorad_96_wellplate_200ul_pcr_G8", + "H8": "biorad_96_wellplate_200ul_pcr_H8", + "A9": "biorad_96_wellplate_200ul_pcr_A9", + "B9": "biorad_96_wellplate_200ul_pcr_B9", + "C9": "biorad_96_wellplate_200ul_pcr_C9", + "D9": "biorad_96_wellplate_200ul_pcr_D9", + "E9": "biorad_96_wellplate_200ul_pcr_E9", + "F9": "biorad_96_wellplate_200ul_pcr_F9", + "G9": "biorad_96_wellplate_200ul_pcr_G9", + "H9": "biorad_96_wellplate_200ul_pcr_H9", + "A10": "biorad_96_wellplate_200ul_pcr_A10", + "B10": "biorad_96_wellplate_200ul_pcr_B10", + "C10": "biorad_96_wellplate_200ul_pcr_C10", + "D10": "biorad_96_wellplate_200ul_pcr_D10", + "E10": "biorad_96_wellplate_200ul_pcr_E10", + "F10": "biorad_96_wellplate_200ul_pcr_F10", + "G10": "biorad_96_wellplate_200ul_pcr_G10", + "H10": "biorad_96_wellplate_200ul_pcr_H10", + "A11": "biorad_96_wellplate_200ul_pcr_A11", + "B11": "biorad_96_wellplate_200ul_pcr_B11", + "C11": "biorad_96_wellplate_200ul_pcr_C11", + "D11": "biorad_96_wellplate_200ul_pcr_D11", + "E11": "biorad_96_wellplate_200ul_pcr_E11", + "F11": "biorad_96_wellplate_200ul_pcr_F11", + "G11": "biorad_96_wellplate_200ul_pcr_G11", + "H11": "biorad_96_wellplate_200ul_pcr_H11", + "A12": "biorad_96_wellplate_200ul_pcr_A12", + "B12": "biorad_96_wellplate_200ul_pcr_B12", + "C12": "biorad_96_wellplate_200ul_pcr_C12", + "D12": "biorad_96_wellplate_200ul_pcr_D12", + "E12": "biorad_96_wellplate_200ul_pcr_E12", + "F12": "biorad_96_wellplate_200ul_pcr_F12", + "G12": "biorad_96_wellplate_200ul_pcr_G12", + "H12": "biorad_96_wellplate_200ul_pcr_H12" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_A1", + "uuid": "1dd99a0b-1269-4402-b4c5-5839fd41fc81", + "name": "biorad_96_wellplate_200ul_pcr_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 12.4495, + "y": 72.3095, + "z": 1.25 + }, + "position3d": { + "x": 12.4495, + "y": 72.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A1_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 12.4495, + "y": 72.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_B1", + "uuid": "080d592d-476d-444f-a298-9fa94d1e0bae", + "name": "biorad_96_wellplate_200ul_pcr_B1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 12.4495, + "y": 63.3095, + "z": 1.25 + }, + "position3d": { + "x": 12.4495, + "y": 63.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B1_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 12.4495, + "y": 63.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_C1", + "uuid": "b0a647a2-cd7a-4d32-bbef-c8b5ac279c9c", + "name": "biorad_96_wellplate_200ul_pcr_C1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 12.4495, + "y": 54.3095, + "z": 1.25 + }, + "position3d": { + "x": 12.4495, + "y": 54.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C1_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 12.4495, + "y": 54.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_D1", + "uuid": "406f6786-d396-40f7-bafb-6301434a2e05", + "name": "biorad_96_wellplate_200ul_pcr_D1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 12.4495, + "y": 45.3095, + "z": 1.25 + }, + "position3d": { + "x": 12.4495, + "y": 45.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D1_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 12.4495, + "y": 45.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_E1", + "uuid": "8fb61abc-474b-48c1-a6df-fe30356ed828", + "name": "biorad_96_wellplate_200ul_pcr_E1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 12.4495, + "y": 36.3095, + "z": 1.25 + }, + "position3d": { + "x": 12.4495, + "y": 36.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E1_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 12.4495, + "y": 36.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_F1", + "uuid": "1ced3815-ea57-4f92-946c-df99a9c5b6a0", + "name": "biorad_96_wellplate_200ul_pcr_F1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 12.4495, + "y": 27.3095, + "z": 1.25 + }, + "position3d": { + "x": 12.4495, + "y": 27.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F1_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 12.4495, + "y": 27.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_G1", + "uuid": "13d1b95a-1902-47b3-a370-c02850780127", + "name": "biorad_96_wellplate_200ul_pcr_G1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 12.4495, + "y": 18.3095, + "z": 1.25 + }, + "position3d": { + "x": 12.4495, + "y": 18.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G1_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 12.4495, + "y": 18.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_H1", + "uuid": "6829023a-a4c8-485a-a464-6cdaa920dabb", + "name": "biorad_96_wellplate_200ul_pcr_H1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 12.4495, + "y": 9.3095, + "z": 1.25 + }, + "position3d": { + "x": 12.4495, + "y": 9.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H1_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 12.4495, + "y": 9.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_A2", + "uuid": "6166078b-1e75-45a6-82f6-04c9c7c21242", + "name": "biorad_96_wellplate_200ul_pcr_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 21.4495, + "y": 72.3095, + "z": 1.25 + }, + "position3d": { + "x": 21.4495, + "y": 72.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A2_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 21.4495, + "y": 72.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_B2", + "uuid": "21149c2a-00ba-4b21-a205-3d1c7ace45f0", + "name": "biorad_96_wellplate_200ul_pcr_B2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 21.4495, + "y": 63.3095, + "z": 1.25 + }, + "position3d": { + "x": 21.4495, + "y": 63.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B2_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 21.4495, + "y": 63.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_C2", + "uuid": "23c66a5d-44a3-40b9-aa0a-3767e3f17172", + "name": "biorad_96_wellplate_200ul_pcr_C2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 21.4495, + "y": 54.3095, + "z": 1.25 + }, + "position3d": { + "x": 21.4495, + "y": 54.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C2_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 21.4495, + "y": 54.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_D2", + "uuid": "9fa80893-58e3-4f90-a2d4-a6ef30694a68", + "name": "biorad_96_wellplate_200ul_pcr_D2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 21.4495, + "y": 45.3095, + "z": 1.25 + }, + "position3d": { + "x": 21.4495, + "y": 45.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D2_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 21.4495, + "y": 45.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_E2", + "uuid": "aa0f0bd5-6ffb-490c-83a8-a03e00f8f38d", + "name": "biorad_96_wellplate_200ul_pcr_E2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 21.4495, + "y": 36.3095, + "z": 1.25 + }, + "position3d": { + "x": 21.4495, + "y": 36.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E2_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 21.4495, + "y": 36.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_F2", + "uuid": "1f1b5529-0419-4687-8cbd-26f9ec60c768", + "name": "biorad_96_wellplate_200ul_pcr_F2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 21.4495, + "y": 27.3095, + "z": 1.25 + }, + "position3d": { + "x": 21.4495, + "y": 27.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F2_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 21.4495, + "y": 27.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_G2", + "uuid": "708ba6c7-83ce-4835-9edf-a07a7667b615", + "name": "biorad_96_wellplate_200ul_pcr_G2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 21.4495, + "y": 18.3095, + "z": 1.25 + }, + "position3d": { + "x": 21.4495, + "y": 18.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G2_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 21.4495, + "y": 18.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_H2", + "uuid": "3cdf5e4e-55aa-4ff3-b6ee-b367a57b3b9e", + "name": "biorad_96_wellplate_200ul_pcr_H2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 21.4495, + "y": 9.3095, + "z": 1.25 + }, + "position3d": { + "x": 21.4495, + "y": 9.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H2_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 21.4495, + "y": 9.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_A3", + "uuid": "dabf8268-d57b-409b-91e9-d7507b8e08c7", + "name": "biorad_96_wellplate_200ul_pcr_A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 30.4495, + "y": 72.3095, + "z": 1.25 + }, + "position3d": { + "x": 30.4495, + "y": 72.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A3_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 30.4495, + "y": 72.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_B3", + "uuid": "e5a95e35-8e1a-4ceb-9fb6-46f8be67c39f", + "name": "biorad_96_wellplate_200ul_pcr_B3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 30.4495, + "y": 63.3095, + "z": 1.25 + }, + "position3d": { + "x": 30.4495, + "y": 63.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B3_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 30.4495, + "y": 63.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_C3", + "uuid": "7978ef36-54ab-4932-bfdb-01e2f8e37de2", + "name": "biorad_96_wellplate_200ul_pcr_C3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 30.4495, + "y": 54.3095, + "z": 1.25 + }, + "position3d": { + "x": 30.4495, + "y": 54.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C3_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 30.4495, + "y": 54.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_D3", + "uuid": "abb8279d-ccc5-44e7-b450-85ce5c430671", + "name": "biorad_96_wellplate_200ul_pcr_D3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 30.4495, + "y": 45.3095, + "z": 1.25 + }, + "position3d": { + "x": 30.4495, + "y": 45.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D3_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 30.4495, + "y": 45.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_E3", + "uuid": "c67492e0-eadc-40d3-a4d1-bd58b62b13d7", + "name": "biorad_96_wellplate_200ul_pcr_E3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 30.4495, + "y": 36.3095, + "z": 1.25 + }, + "position3d": { + "x": 30.4495, + "y": 36.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E3_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 30.4495, + "y": 36.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_F3", + "uuid": "99955394-b8f0-45d0-8cb3-2e099b3a93be", + "name": "biorad_96_wellplate_200ul_pcr_F3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 30.4495, + "y": 27.3095, + "z": 1.25 + }, + "position3d": { + "x": 30.4495, + "y": 27.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F3_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 30.4495, + "y": 27.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_G3", + "uuid": "38fc1a24-c4e2-4516-acb5-afc06ad4f908", + "name": "biorad_96_wellplate_200ul_pcr_G3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 30.4495, + "y": 18.3095, + "z": 1.25 + }, + "position3d": { + "x": 30.4495, + "y": 18.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G3_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 30.4495, + "y": 18.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_H3", + "uuid": "455f418d-5e31-4ca2-96cd-35bdd29698cf", + "name": "biorad_96_wellplate_200ul_pcr_H3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 30.4495, + "y": 9.3095, + "z": 1.25 + }, + "position3d": { + "x": 30.4495, + "y": 9.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H3_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 30.4495, + "y": 9.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_A4", + "uuid": "89f45cae-e309-4e3e-b415-e5413e6c60fa", + "name": "biorad_96_wellplate_200ul_pcr_A4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 39.4495, + "y": 72.3095, + "z": 1.25 + }, + "position3d": { + "x": 39.4495, + "y": 72.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A4_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 39.4495, + "y": 72.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_B4", + "uuid": "fde2b6f7-cc3c-4f00-98ec-ca73c6429642", + "name": "biorad_96_wellplate_200ul_pcr_B4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 39.4495, + "y": 63.3095, + "z": 1.25 + }, + "position3d": { + "x": 39.4495, + "y": 63.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B4_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 39.4495, + "y": 63.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_C4", + "uuid": "0238b299-823b-4db1-88bd-2bd937d83a07", + "name": "biorad_96_wellplate_200ul_pcr_C4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 39.4495, + "y": 54.3095, + "z": 1.25 + }, + "position3d": { + "x": 39.4495, + "y": 54.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C4_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 39.4495, + "y": 54.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_D4", + "uuid": "17d638a5-43e1-465e-ad5d-32a3a15a17b4", + "name": "biorad_96_wellplate_200ul_pcr_D4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 39.4495, + "y": 45.3095, + "z": 1.25 + }, + "position3d": { + "x": 39.4495, + "y": 45.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D4_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 39.4495, + "y": 45.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_E4", + "uuid": "cbc14f86-234d-4983-9ce3-2ee71208b9f0", + "name": "biorad_96_wellplate_200ul_pcr_E4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 39.4495, + "y": 36.3095, + "z": 1.25 + }, + "position3d": { + "x": 39.4495, + "y": 36.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E4_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 39.4495, + "y": 36.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_F4", + "uuid": "99cefc14-beda-472a-92dd-b4122f0a7e0b", + "name": "biorad_96_wellplate_200ul_pcr_F4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 39.4495, + "y": 27.3095, + "z": 1.25 + }, + "position3d": { + "x": 39.4495, + "y": 27.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F4_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 39.4495, + "y": 27.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_G4", + "uuid": "5e1113c1-0755-4164-99ee-e95ee32e3249", + "name": "biorad_96_wellplate_200ul_pcr_G4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 39.4495, + "y": 18.3095, + "z": 1.25 + }, + "position3d": { + "x": 39.4495, + "y": 18.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G4_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 39.4495, + "y": 18.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_H4", + "uuid": "8dc9995b-d414-48ed-a01b-7da850d30af6", + "name": "biorad_96_wellplate_200ul_pcr_H4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 39.4495, + "y": 9.3095, + "z": 1.25 + }, + "position3d": { + "x": 39.4495, + "y": 9.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H4_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 39.4495, + "y": 9.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_A5", + "uuid": "78bc5f16-5f7c-4fa8-a290-f4a441605e5f", + "name": "biorad_96_wellplate_200ul_pcr_A5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 48.4495, + "y": 72.3095, + "z": 1.25 + }, + "position3d": { + "x": 48.4495, + "y": 72.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A5_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 48.4495, + "y": 72.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_B5", + "uuid": "fe2e1f17-f06c-42fc-b5b4-8d6f7de6fb66", + "name": "biorad_96_wellplate_200ul_pcr_B5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 48.4495, + "y": 63.3095, + "z": 1.25 + }, + "position3d": { + "x": 48.4495, + "y": 63.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B5_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 48.4495, + "y": 63.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_C5", + "uuid": "d01f8b56-14ef-430a-a71b-fabe561c7bf0", + "name": "biorad_96_wellplate_200ul_pcr_C5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 48.4495, + "y": 54.3095, + "z": 1.25 + }, + "position3d": { + "x": 48.4495, + "y": 54.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C5_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 48.4495, + "y": 54.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_D5", + "uuid": "10561be8-11d6-48a0-9dd8-fdf2ea9d093f", + "name": "biorad_96_wellplate_200ul_pcr_D5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 48.4495, + "y": 45.3095, + "z": 1.25 + }, + "position3d": { + "x": 48.4495, + "y": 45.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D5_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 48.4495, + "y": 45.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_E5", + "uuid": "09fbde19-3c5c-44de-8f01-2945b8ca04ed", + "name": "biorad_96_wellplate_200ul_pcr_E5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 48.4495, + "y": 36.3095, + "z": 1.25 + }, + "position3d": { + "x": 48.4495, + "y": 36.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E5_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 48.4495, + "y": 36.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_F5", + "uuid": "1c7efb75-a366-42c2-a645-689dde3aff35", + "name": "biorad_96_wellplate_200ul_pcr_F5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 48.4495, + "y": 27.3095, + "z": 1.25 + }, + "position3d": { + "x": 48.4495, + "y": 27.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F5_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 48.4495, + "y": 27.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_G5", + "uuid": "878f12d2-42f7-46fa-ba44-a674ed048880", + "name": "biorad_96_wellplate_200ul_pcr_G5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 48.4495, + "y": 18.3095, + "z": 1.25 + }, + "position3d": { + "x": 48.4495, + "y": 18.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G5_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 48.4495, + "y": 18.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_H5", + "uuid": "9cf5364a-e536-48e2-9191-ede8ed70d492", + "name": "biorad_96_wellplate_200ul_pcr_H5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 48.4495, + "y": 9.3095, + "z": 1.25 + }, + "position3d": { + "x": 48.4495, + "y": 9.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H5_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 48.4495, + "y": 9.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_A6", + "uuid": "bd3e8fe7-abcb-4fd3-b060-eeaf95cd8919", + "name": "biorad_96_wellplate_200ul_pcr_A6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 57.4495, + "y": 72.3095, + "z": 1.25 + }, + "position3d": { + "x": 57.4495, + "y": 72.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A6_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 57.4495, + "y": 72.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_B6", + "uuid": "9dc90c65-607e-4b8e-8c48-1bc023809630", + "name": "biorad_96_wellplate_200ul_pcr_B6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 57.4495, + "y": 63.3095, + "z": 1.25 + }, + "position3d": { + "x": 57.4495, + "y": 63.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B6_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 57.4495, + "y": 63.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_C6", + "uuid": "7393acee-4cb7-4e44-bfa8-4bf469dda31f", + "name": "biorad_96_wellplate_200ul_pcr_C6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 57.4495, + "y": 54.3095, + "z": 1.25 + }, + "position3d": { + "x": 57.4495, + "y": 54.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C6_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 57.4495, + "y": 54.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_D6", + "uuid": "b57d23c0-a66c-442f-8d29-20d8e76cb753", + "name": "biorad_96_wellplate_200ul_pcr_D6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 57.4495, + "y": 45.3095, + "z": 1.25 + }, + "position3d": { + "x": 57.4495, + "y": 45.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D6_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 57.4495, + "y": 45.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_E6", + "uuid": "93e8a2ac-0a0e-4b5b-829d-186f3f9695ff", + "name": "biorad_96_wellplate_200ul_pcr_E6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 57.4495, + "y": 36.3095, + "z": 1.25 + }, + "position3d": { + "x": 57.4495, + "y": 36.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E6_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 57.4495, + "y": 36.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_F6", + "uuid": "7f1163cd-4388-4ceb-91f2-ed47f6fe788e", + "name": "biorad_96_wellplate_200ul_pcr_F6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 57.4495, + "y": 27.3095, + "z": 1.25 + }, + "position3d": { + "x": 57.4495, + "y": 27.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F6_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 57.4495, + "y": 27.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_G6", + "uuid": "dcc30ff0-a454-4aa3-a705-17c3b7a85867", + "name": "biorad_96_wellplate_200ul_pcr_G6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 57.4495, + "y": 18.3095, + "z": 1.25 + }, + "position3d": { + "x": 57.4495, + "y": 18.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G6_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 57.4495, + "y": 18.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_H6", + "uuid": "584f3c0d-c4c7-443c-b023-fff9e311aa48", + "name": "biorad_96_wellplate_200ul_pcr_H6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 57.4495, + "y": 9.3095, + "z": 1.25 + }, + "position3d": { + "x": 57.4495, + "y": 9.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H6_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 57.4495, + "y": 9.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_A7", + "uuid": "f2b71c51-4c5d-4037-9c2d-c4374adc53dd", + "name": "biorad_96_wellplate_200ul_pcr_A7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 66.4495, + "y": 72.3095, + "z": 1.25 + }, + "position3d": { + "x": 66.4495, + "y": 72.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A7_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 66.4495, + "y": 72.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_B7", + "uuid": "4b9161ef-0cb0-459b-8e44-e964b30957a5", + "name": "biorad_96_wellplate_200ul_pcr_B7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 66.4495, + "y": 63.3095, + "z": 1.25 + }, + "position3d": { + "x": 66.4495, + "y": 63.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B7_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 66.4495, + "y": 63.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_C7", + "uuid": "3b495dc5-6804-4add-9936-c4f1bb9d88fc", + "name": "biorad_96_wellplate_200ul_pcr_C7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 66.4495, + "y": 54.3095, + "z": 1.25 + }, + "position3d": { + "x": 66.4495, + "y": 54.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C7_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 66.4495, + "y": 54.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_D7", + "uuid": "81892541-8daa-4619-8431-f6d1cf7434b5", + "name": "biorad_96_wellplate_200ul_pcr_D7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 66.4495, + "y": 45.3095, + "z": 1.25 + }, + "position3d": { + "x": 66.4495, + "y": 45.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D7_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 66.4495, + "y": 45.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_E7", + "uuid": "e1f19b87-4f69-47a3-98b6-78596fa6e81d", + "name": "biorad_96_wellplate_200ul_pcr_E7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 66.4495, + "y": 36.3095, + "z": 1.25 + }, + "position3d": { + "x": 66.4495, + "y": 36.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E7_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 66.4495, + "y": 36.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_F7", + "uuid": "73c428a3-0030-412d-9960-c9550a74984a", + "name": "biorad_96_wellplate_200ul_pcr_F7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 66.4495, + "y": 27.3095, + "z": 1.25 + }, + "position3d": { + "x": 66.4495, + "y": 27.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F7_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 66.4495, + "y": 27.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_G7", + "uuid": "6e21daee-ca00-44f7-8f86-f3af7e00d8b7", + "name": "biorad_96_wellplate_200ul_pcr_G7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 66.4495, + "y": 18.3095, + "z": 1.25 + }, + "position3d": { + "x": 66.4495, + "y": 18.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G7_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 66.4495, + "y": 18.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_H7", + "uuid": "585757b3-9b5c-4ed0-8f2a-89af9bfb14ef", + "name": "biorad_96_wellplate_200ul_pcr_H7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 66.4495, + "y": 9.3095, + "z": 1.25 + }, + "position3d": { + "x": 66.4495, + "y": 9.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H7_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 66.4495, + "y": 9.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_A8", + "uuid": "36689ac2-8d79-48e0-bf74-475b366e1961", + "name": "biorad_96_wellplate_200ul_pcr_A8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 75.4495, + "y": 72.3095, + "z": 1.25 + }, + "position3d": { + "x": 75.4495, + "y": 72.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A8_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 75.4495, + "y": 72.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_B8", + "uuid": "39958725-8c7e-4273-a98c-bc82ef823006", + "name": "biorad_96_wellplate_200ul_pcr_B8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 75.4495, + "y": 63.3095, + "z": 1.25 + }, + "position3d": { + "x": 75.4495, + "y": 63.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B8_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 75.4495, + "y": 63.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_C8", + "uuid": "d59e79df-2856-490b-954d-511478aa1fc2", + "name": "biorad_96_wellplate_200ul_pcr_C8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 75.4495, + "y": 54.3095, + "z": 1.25 + }, + "position3d": { + "x": 75.4495, + "y": 54.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C8_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 75.4495, + "y": 54.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_D8", + "uuid": "9d0d9863-5ae8-494d-a681-ec28f5570457", + "name": "biorad_96_wellplate_200ul_pcr_D8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 75.4495, + "y": 45.3095, + "z": 1.25 + }, + "position3d": { + "x": 75.4495, + "y": 45.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D8_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 75.4495, + "y": 45.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_E8", + "uuid": "91fa0132-bcbf-4076-8096-e72e71c1c85d", + "name": "biorad_96_wellplate_200ul_pcr_E8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 75.4495, + "y": 36.3095, + "z": 1.25 + }, + "position3d": { + "x": 75.4495, + "y": 36.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E8_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 75.4495, + "y": 36.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_F8", + "uuid": "ac06ab70-e48a-44b2-9a58-533da0550149", + "name": "biorad_96_wellplate_200ul_pcr_F8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 75.4495, + "y": 27.3095, + "z": 1.25 + }, + "position3d": { + "x": 75.4495, + "y": 27.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F8_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 75.4495, + "y": 27.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_G8", + "uuid": "22d39fa2-8fff-4e33-8238-258e74110691", + "name": "biorad_96_wellplate_200ul_pcr_G8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 75.4495, + "y": 18.3095, + "z": 1.25 + }, + "position3d": { + "x": 75.4495, + "y": 18.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G8_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 75.4495, + "y": 18.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_H8", + "uuid": "99803c2f-567c-461f-af58-e385a3dbd3cd", + "name": "biorad_96_wellplate_200ul_pcr_H8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 75.4495, + "y": 9.3095, + "z": 1.25 + }, + "position3d": { + "x": 75.4495, + "y": 9.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H8_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 75.4495, + "y": 9.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_A9", + "uuid": "ae0771ec-b86b-4a9a-888d-cbfec371e78d", + "name": "biorad_96_wellplate_200ul_pcr_A9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 84.4495, + "y": 72.3095, + "z": 1.25 + }, + "position3d": { + "x": 84.4495, + "y": 72.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A9_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 84.4495, + "y": 72.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_B9", + "uuid": "9967546d-bc54-4b32-aa9c-7638122c95ff", + "name": "biorad_96_wellplate_200ul_pcr_B9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 84.4495, + "y": 63.3095, + "z": 1.25 + }, + "position3d": { + "x": 84.4495, + "y": 63.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B9_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 84.4495, + "y": 63.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_C9", + "uuid": "78aa0ea3-a6ec-4034-a835-9ac6494af997", + "name": "biorad_96_wellplate_200ul_pcr_C9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 84.4495, + "y": 54.3095, + "z": 1.25 + }, + "position3d": { + "x": 84.4495, + "y": 54.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C9_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 84.4495, + "y": 54.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_D9", + "uuid": "bcc711c0-614e-4cde-b2c5-25524dcb1b82", + "name": "biorad_96_wellplate_200ul_pcr_D9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 84.4495, + "y": 45.3095, + "z": 1.25 + }, + "position3d": { + "x": 84.4495, + "y": 45.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D9_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 84.4495, + "y": 45.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_E9", + "uuid": "22a08811-702e-40a3-84f1-6cc592517fe3", + "name": "biorad_96_wellplate_200ul_pcr_E9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 84.4495, + "y": 36.3095, + "z": 1.25 + }, + "position3d": { + "x": 84.4495, + "y": 36.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E9_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 84.4495, + "y": 36.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_F9", + "uuid": "0590ead6-9322-4ae9-9e95-51ab0ecd5780", + "name": "biorad_96_wellplate_200ul_pcr_F9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 84.4495, + "y": 27.3095, + "z": 1.25 + }, + "position3d": { + "x": 84.4495, + "y": 27.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F9_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 84.4495, + "y": 27.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_G9", + "uuid": "1fda7fa3-f88b-40b7-832e-15993a5b820a", + "name": "biorad_96_wellplate_200ul_pcr_G9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 84.4495, + "y": 18.3095, + "z": 1.25 + }, + "position3d": { + "x": 84.4495, + "y": 18.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G9_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 84.4495, + "y": 18.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_H9", + "uuid": "6720abbd-9c3c-4ac1-8d19-3449ce022725", + "name": "biorad_96_wellplate_200ul_pcr_H9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 84.4495, + "y": 9.3095, + "z": 1.25 + }, + "position3d": { + "x": 84.4495, + "y": 9.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H9_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 84.4495, + "y": 9.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_A10", + "uuid": "3e0097c9-6112-449a-bac3-7cff25327cea", + "name": "biorad_96_wellplate_200ul_pcr_A10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 93.4495, + "y": 72.3095, + "z": 1.25 + }, + "position3d": { + "x": 93.4495, + "y": 72.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A10_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 93.4495, + "y": 72.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_B10", + "uuid": "ebcb362e-7fa4-473c-ae3e-3ba05dd7dde2", + "name": "biorad_96_wellplate_200ul_pcr_B10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 93.4495, + "y": 63.3095, + "z": 1.25 + }, + "position3d": { + "x": 93.4495, + "y": 63.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B10_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 93.4495, + "y": 63.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_C10", + "uuid": "f44ddb4c-ac38-4c62-9df7-22cb556d8636", + "name": "biorad_96_wellplate_200ul_pcr_C10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 93.4495, + "y": 54.3095, + "z": 1.25 + }, + "position3d": { + "x": 93.4495, + "y": 54.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C10_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 93.4495, + "y": 54.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_D10", + "uuid": "107472cd-36f2-4546-9da3-4807f672830c", + "name": "biorad_96_wellplate_200ul_pcr_D10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 93.4495, + "y": 45.3095, + "z": 1.25 + }, + "position3d": { + "x": 93.4495, + "y": 45.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D10_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 93.4495, + "y": 45.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_E10", + "uuid": "d8e6351d-d61a-46b1-99b3-67c4fa20de6b", + "name": "biorad_96_wellplate_200ul_pcr_E10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 93.4495, + "y": 36.3095, + "z": 1.25 + }, + "position3d": { + "x": 93.4495, + "y": 36.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E10_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 93.4495, + "y": 36.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_F10", + "uuid": "f69a9d23-7f9f-400c-95be-068ff21c63a9", + "name": "biorad_96_wellplate_200ul_pcr_F10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 93.4495, + "y": 27.3095, + "z": 1.25 + }, + "position3d": { + "x": 93.4495, + "y": 27.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F10_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 93.4495, + "y": 27.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_G10", + "uuid": "6bcc7898-4542-47bf-93f0-6657f1460082", + "name": "biorad_96_wellplate_200ul_pcr_G10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 93.4495, + "y": 18.3095, + "z": 1.25 + }, + "position3d": { + "x": 93.4495, + "y": 18.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G10_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 93.4495, + "y": 18.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_H10", + "uuid": "5bfd5db2-95c5-4665-8770-736dc3a01d4a", + "name": "biorad_96_wellplate_200ul_pcr_H10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 93.4495, + "y": 9.3095, + "z": 1.25 + }, + "position3d": { + "x": 93.4495, + "y": 9.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H10_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 93.4495, + "y": 9.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_A11", + "uuid": "08547279-dea5-4315-8de2-151abd67084e", + "name": "biorad_96_wellplate_200ul_pcr_A11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 102.4495, + "y": 72.3095, + "z": 1.25 + }, + "position3d": { + "x": 102.4495, + "y": 72.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A11_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 102.4495, + "y": 72.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_B11", + "uuid": "047ae7dc-ef38-45a4-b589-08d84f85bf68", + "name": "biorad_96_wellplate_200ul_pcr_B11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 102.4495, + "y": 63.3095, + "z": 1.25 + }, + "position3d": { + "x": 102.4495, + "y": 63.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B11_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 102.4495, + "y": 63.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_C11", + "uuid": "ee382f6f-3fec-4db6-adf0-278ce1fa7f4b", + "name": "biorad_96_wellplate_200ul_pcr_C11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 102.4495, + "y": 54.3095, + "z": 1.25 + }, + "position3d": { + "x": 102.4495, + "y": 54.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C11_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 102.4495, + "y": 54.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_D11", + "uuid": "8c1c9524-cf7e-471f-af43-8592245f1dcb", + "name": "biorad_96_wellplate_200ul_pcr_D11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 102.4495, + "y": 45.3095, + "z": 1.25 + }, + "position3d": { + "x": 102.4495, + "y": 45.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D11_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 102.4495, + "y": 45.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_E11", + "uuid": "91f17429-3f63-44c6-b308-606c0df6446b", + "name": "biorad_96_wellplate_200ul_pcr_E11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 102.4495, + "y": 36.3095, + "z": 1.25 + }, + "position3d": { + "x": 102.4495, + "y": 36.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E11_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 102.4495, + "y": 36.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_F11", + "uuid": "765cdcaa-46b7-4f7c-b611-427692511927", + "name": "biorad_96_wellplate_200ul_pcr_F11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 102.4495, + "y": 27.3095, + "z": 1.25 + }, + "position3d": { + "x": 102.4495, + "y": 27.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F11_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 102.4495, + "y": 27.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_G11", + "uuid": "fbcfdf6e-e4ee-4581-ac1e-6c7243afbad0", + "name": "biorad_96_wellplate_200ul_pcr_G11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 102.4495, + "y": 18.3095, + "z": 1.25 + }, + "position3d": { + "x": 102.4495, + "y": 18.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G11_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 102.4495, + "y": 18.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_H11", + "uuid": "a883d5d9-1695-4fae-b367-d3ce3ecb09da", + "name": "biorad_96_wellplate_200ul_pcr_H11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 102.4495, + "y": 9.3095, + "z": 1.25 + }, + "position3d": { + "x": 102.4495, + "y": 9.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H11_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 102.4495, + "y": 9.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_A12", + "uuid": "3507744d-cc2a-4b8f-a7c4-3ee64a8b4ac0", + "name": "biorad_96_wellplate_200ul_pcr_A12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 111.4495, + "y": 72.3095, + "z": 1.25 + }, + "position3d": { + "x": 111.4495, + "y": 72.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A12_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 111.4495, + "y": 72.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_B12", + "uuid": "35182b82-0e71-498b-8c61-1d1e60125ed9", + "name": "biorad_96_wellplate_200ul_pcr_B12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 111.4495, + "y": 63.3095, + "z": 1.25 + }, + "position3d": { + "x": 111.4495, + "y": 63.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B12_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 111.4495, + "y": 63.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_C12", + "uuid": "fc097723-2271-48f3-8339-b5fa90ade361", + "name": "biorad_96_wellplate_200ul_pcr_C12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 111.4495, + "y": 54.3095, + "z": 1.25 + }, + "position3d": { + "x": 111.4495, + "y": 54.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C12_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 111.4495, + "y": 54.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_D12", + "uuid": "0a269e5a-5e14-4f79-ba75-5732da9fd0ee", + "name": "biorad_96_wellplate_200ul_pcr_D12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 111.4495, + "y": 45.3095, + "z": 1.25 + }, + "position3d": { + "x": 111.4495, + "y": 45.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D12_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 111.4495, + "y": 45.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_E12", + "uuid": "26293558-593b-4893-8217-41911b0e4350", + "name": "biorad_96_wellplate_200ul_pcr_E12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 111.4495, + "y": 36.3095, + "z": 1.25 + }, + "position3d": { + "x": 111.4495, + "y": 36.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E12_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 111.4495, + "y": 36.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_F12", + "uuid": "d8fc2cae-458d-4f14-958a-bfe6fab81c4d", + "name": "biorad_96_wellplate_200ul_pcr_F12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 111.4495, + "y": 27.3095, + "z": 1.25 + }, + "position3d": { + "x": 111.4495, + "y": 27.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F12_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 111.4495, + "y": 27.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_G12", + "uuid": "59d5c7f5-6f47-46db-bfd5-9d2b813b5d43", + "name": "biorad_96_wellplate_200ul_pcr_G12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 111.4495, + "y": 18.3095, + "z": 1.25 + }, + "position3d": { + "x": 111.4495, + "y": 18.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G12_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 111.4495, + "y": 18.3095, + "z": 1.25 + } + }, + { + "id": "biorad_96_wellplate_200ul_pcr_H12", + "uuid": "892ef621-5b61-4042-9703-649857b0a893", + "name": "biorad_96_wellplate_200ul_pcr_H12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5f4f06e4-828e-4e9f-a38b-3164ee9ee03e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.81, + "width": 3.861, + "height": 3.861 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 111.4495, + "y": 9.3095, + "z": 1.25 + }, + "position3d": { + "x": 111.4495, + "y": 9.3095, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.861, + "size_y": 3.861, + "size_z": 14.81, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H12_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 111.4495, + "y": 9.3095, + "z": 1.25 + } + } + ] + }, + { + "id": "corning_12_wellplate_6point9ml_flat", + "category": [ + "plates" + ], + "class": { + "module": "pylabrobot.resources.opentrons.plates:corning_12_wellplate_6point9ml_flat", + "type": "pylabrobot" + }, + "description": "Corning 12 wellplate 6.9ml flat", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/opentrons/plates.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "corning_12_wellplate_6point9ml_flat", + "uuid": "54d2a5ce-059e-4de3-a1de-9924bb705e9c", + "name": "corning_12_wellplate_6point9ml_flat", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "plate", + "class": "", + "pose": { + "size": { + "depth": 20.02, + "width": 127.89, + "height": 85.6 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Plate", + "size_x": 127.89, + "size_y": 85.6, + "size_z": 20.02, + "category": "plate", + "model": "Corning 12 Well Plate 6.9 mL Flat", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "corning_12_wellplate_6point9ml_flat_A1", + "B1": "corning_12_wellplate_6point9ml_flat_B1", + "C1": "corning_12_wellplate_6point9ml_flat_C1", + "A2": "corning_12_wellplate_6point9ml_flat_A2", + "B2": "corning_12_wellplate_6point9ml_flat_B2", + "C2": "corning_12_wellplate_6point9ml_flat_C2", + "A3": "corning_12_wellplate_6point9ml_flat_A3", + "B3": "corning_12_wellplate_6point9ml_flat_B3", + "C3": "corning_12_wellplate_6point9ml_flat_C3", + "A4": "corning_12_wellplate_6point9ml_flat_A4", + "B4": "corning_12_wellplate_6point9ml_flat_B4", + "C4": "corning_12_wellplate_6point9ml_flat_C4" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "corning_12_wellplate_6point9ml_flat_A1", + "uuid": "aa4d58f6-5b1e-453a-af59-8d535f93b212", + "name": "corning_12_wellplate_6point9ml_flat_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "54d2a5ce-059e-4de3-a1de-9924bb705e9c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.53, + "width": 16.073, + "height": 16.073 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 16.9035, + "y": 60.7735, + "z": 2.49 + }, + "position3d": { + "x": 16.9035, + "y": 60.7735, + "z": 2.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 16.073, + "size_y": 16.073, + "size_z": 17.53, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 6900, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A1_volume_tracker", + "max_volume": 6900, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 16.9035, + "y": 60.7735, + "z": 2.49 + } + }, + { + "id": "corning_12_wellplate_6point9ml_flat_B1", + "uuid": "f84977e7-2ff4-42a1-abb6-3318474cf33d", + "name": "corning_12_wellplate_6point9ml_flat_B1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "54d2a5ce-059e-4de3-a1de-9924bb705e9c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.53, + "width": 16.073, + "height": 16.073 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 16.9035, + "y": 34.7635, + "z": 2.49 + }, + "position3d": { + "x": 16.9035, + "y": 34.7635, + "z": 2.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 16.073, + "size_y": 16.073, + "size_z": 17.53, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 6900, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B1_volume_tracker", + "max_volume": 6900, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 16.9035, + "y": 34.7635, + "z": 2.49 + } + }, + { + "id": "corning_12_wellplate_6point9ml_flat_C1", + "uuid": "16cd181f-63aa-462d-8ebe-d86f1c8b400c", + "name": "corning_12_wellplate_6point9ml_flat_C1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "54d2a5ce-059e-4de3-a1de-9924bb705e9c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.53, + "width": 16.073, + "height": 16.073 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 16.9035, + "y": 8.7535, + "z": 2.49 + }, + "position3d": { + "x": 16.9035, + "y": 8.7535, + "z": 2.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 16.073, + "size_y": 16.073, + "size_z": 17.53, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 6900, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C1_volume_tracker", + "max_volume": 6900, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 16.9035, + "y": 8.7535, + "z": 2.49 + } + }, + { + "id": "corning_12_wellplate_6point9ml_flat_A2", + "uuid": "198c68c5-50e5-47d1-a4c7-2a6e127f2554", + "name": "corning_12_wellplate_6point9ml_flat_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "54d2a5ce-059e-4de3-a1de-9924bb705e9c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.53, + "width": 16.073, + "height": 16.073 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 42.9135, + "y": 60.7735, + "z": 2.49 + }, + "position3d": { + "x": 42.9135, + "y": 60.7735, + "z": 2.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 16.073, + "size_y": 16.073, + "size_z": 17.53, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 6900, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A2_volume_tracker", + "max_volume": 6900, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 42.9135, + "y": 60.7735, + "z": 2.49 + } + }, + { + "id": "corning_12_wellplate_6point9ml_flat_B2", + "uuid": "994720cb-93a4-46ef-8497-9a7e32d858a3", + "name": "corning_12_wellplate_6point9ml_flat_B2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "54d2a5ce-059e-4de3-a1de-9924bb705e9c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.53, + "width": 16.073, + "height": 16.073 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 42.9135, + "y": 34.7635, + "z": 2.49 + }, + "position3d": { + "x": 42.9135, + "y": 34.7635, + "z": 2.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 16.073, + "size_y": 16.073, + "size_z": 17.53, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 6900, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B2_volume_tracker", + "max_volume": 6900, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 42.9135, + "y": 34.7635, + "z": 2.49 + } + }, + { + "id": "corning_12_wellplate_6point9ml_flat_C2", + "uuid": "541c7d72-464d-4417-acd5-169a4bc99100", + "name": "corning_12_wellplate_6point9ml_flat_C2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "54d2a5ce-059e-4de3-a1de-9924bb705e9c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.53, + "width": 16.073, + "height": 16.073 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 42.9135, + "y": 8.7535, + "z": 2.49 + }, + "position3d": { + "x": 42.9135, + "y": 8.7535, + "z": 2.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 16.073, + "size_y": 16.073, + "size_z": 17.53, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 6900, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C2_volume_tracker", + "max_volume": 6900, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 42.9135, + "y": 8.7535, + "z": 2.49 + } + }, + { + "id": "corning_12_wellplate_6point9ml_flat_A3", + "uuid": "6287353a-1b18-4aee-8546-a63abb3f5cca", + "name": "corning_12_wellplate_6point9ml_flat_A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "54d2a5ce-059e-4de3-a1de-9924bb705e9c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.53, + "width": 16.073, + "height": 16.073 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 68.9235, + "y": 60.7735, + "z": 2.49 + }, + "position3d": { + "x": 68.9235, + "y": 60.7735, + "z": 2.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 16.073, + "size_y": 16.073, + "size_z": 17.53, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 6900, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A3_volume_tracker", + "max_volume": 6900, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 68.9235, + "y": 60.7735, + "z": 2.49 + } + }, + { + "id": "corning_12_wellplate_6point9ml_flat_B3", + "uuid": "3df3fde0-bf34-47fc-a40d-b7952e51ef06", + "name": "corning_12_wellplate_6point9ml_flat_B3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "54d2a5ce-059e-4de3-a1de-9924bb705e9c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.53, + "width": 16.073, + "height": 16.073 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 68.9235, + "y": 34.7635, + "z": 2.49 + }, + "position3d": { + "x": 68.9235, + "y": 34.7635, + "z": 2.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 16.073, + "size_y": 16.073, + "size_z": 17.53, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 6900, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B3_volume_tracker", + "max_volume": 6900, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 68.9235, + "y": 34.7635, + "z": 2.49 + } + }, + { + "id": "corning_12_wellplate_6point9ml_flat_C3", + "uuid": "04619b3e-95db-4068-b6b0-d99d68894b36", + "name": "corning_12_wellplate_6point9ml_flat_C3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "54d2a5ce-059e-4de3-a1de-9924bb705e9c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.53, + "width": 16.073, + "height": 16.073 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 68.9235, + "y": 8.7535, + "z": 2.49 + }, + "position3d": { + "x": 68.9235, + "y": 8.7535, + "z": 2.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 16.073, + "size_y": 16.073, + "size_z": 17.53, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 6900, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C3_volume_tracker", + "max_volume": 6900, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 68.9235, + "y": 8.7535, + "z": 2.49 + } + }, + { + "id": "corning_12_wellplate_6point9ml_flat_A4", + "uuid": "8aa880be-7b94-49c5-bea0-07112aa879d5", + "name": "corning_12_wellplate_6point9ml_flat_A4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "54d2a5ce-059e-4de3-a1de-9924bb705e9c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.53, + "width": 16.073, + "height": 16.073 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.9335, + "y": 60.7735, + "z": 2.49 + }, + "position3d": { + "x": 94.9335, + "y": 60.7735, + "z": 2.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 16.073, + "size_y": 16.073, + "size_z": 17.53, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 6900, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A4_volume_tracker", + "max_volume": 6900, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.9335, + "y": 60.7735, + "z": 2.49 + } + }, + { + "id": "corning_12_wellplate_6point9ml_flat_B4", + "uuid": "cd2d9bfa-c472-4f50-9b30-ff3e01b3f782", + "name": "corning_12_wellplate_6point9ml_flat_B4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "54d2a5ce-059e-4de3-a1de-9924bb705e9c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.53, + "width": 16.073, + "height": 16.073 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.9335, + "y": 34.7635, + "z": 2.49 + }, + "position3d": { + "x": 94.9335, + "y": 34.7635, + "z": 2.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 16.073, + "size_y": 16.073, + "size_z": 17.53, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 6900, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B4_volume_tracker", + "max_volume": 6900, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.9335, + "y": 34.7635, + "z": 2.49 + } + }, + { + "id": "corning_12_wellplate_6point9ml_flat_C4", + "uuid": "e0b977eb-4499-4245-8f71-0175898c9e92", + "name": "corning_12_wellplate_6point9ml_flat_C4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "54d2a5ce-059e-4de3-a1de-9924bb705e9c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.53, + "width": 16.073, + "height": 16.073 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.9335, + "y": 8.7535, + "z": 2.49 + }, + "position3d": { + "x": 94.9335, + "y": 8.7535, + "z": 2.49 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 16.073, + "size_y": 16.073, + "size_z": 17.53, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 6900, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C4_volume_tracker", + "max_volume": 6900, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.9335, + "y": 8.7535, + "z": 2.49 + } + } + ] + }, + { + "id": "corning_24_wellplate_3point4ml_flat", + "category": [ + "plates" + ], + "class": { + "module": "pylabrobot.resources.opentrons.plates:corning_24_wellplate_3point4ml_flat", + "type": "pylabrobot" + }, + "description": "Corning 24 wellplate 3.4ml flat", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/opentrons/plates.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "corning_24_wellplate_3point4ml_flat", + "uuid": "536cfb8b-57be-4a29-b203-04a104c9f05a", + "name": "corning_24_wellplate_3point4ml_flat", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "plate", + "class": "", + "pose": { + "size": { + "depth": 20.27, + "width": 127.76, + "height": 85.47 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Plate", + "size_x": 127.76, + "size_y": 85.47, + "size_z": 20.27, + "category": "plate", + "model": "Corning 24 Well Plate 3.4 mL Flat", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "corning_24_wellplate_3point4ml_flat_A1", + "B1": "corning_24_wellplate_3point4ml_flat_B1", + "C1": "corning_24_wellplate_3point4ml_flat_C1", + "D1": "corning_24_wellplate_3point4ml_flat_D1", + "A2": "corning_24_wellplate_3point4ml_flat_A2", + "B2": "corning_24_wellplate_3point4ml_flat_B2", + "C2": "corning_24_wellplate_3point4ml_flat_C2", + "D2": "corning_24_wellplate_3point4ml_flat_D2", + "A3": "corning_24_wellplate_3point4ml_flat_A3", + "B3": "corning_24_wellplate_3point4ml_flat_B3", + "C3": "corning_24_wellplate_3point4ml_flat_C3", + "D3": "corning_24_wellplate_3point4ml_flat_D3", + "A4": "corning_24_wellplate_3point4ml_flat_A4", + "B4": "corning_24_wellplate_3point4ml_flat_B4", + "C4": "corning_24_wellplate_3point4ml_flat_C4", + "D4": "corning_24_wellplate_3point4ml_flat_D4", + "A5": "corning_24_wellplate_3point4ml_flat_A5", + "B5": "corning_24_wellplate_3point4ml_flat_B5", + "C5": "corning_24_wellplate_3point4ml_flat_C5", + "D5": "corning_24_wellplate_3point4ml_flat_D5", + "A6": "corning_24_wellplate_3point4ml_flat_A6", + "B6": "corning_24_wellplate_3point4ml_flat_B6", + "C6": "corning_24_wellplate_3point4ml_flat_C6", + "D6": "corning_24_wellplate_3point4ml_flat_D6" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "corning_24_wellplate_3point4ml_flat_A1", + "uuid": "cbafa675-10f7-43c2-be5b-50bfea2ce911", + "name": "corning_24_wellplate_3point4ml_flat_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "536cfb8b-57be-4a29-b203-04a104c9f05a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 11.498, + "height": 11.498 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.731, + "y": 65.921, + "z": 2.87 + }, + "position3d": { + "x": 11.731, + "y": 65.921, + "z": 2.87 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 11.498, + "size_y": 11.498, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 3400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A1_volume_tracker", + "max_volume": 3400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.731, + "y": 65.921, + "z": 2.87 + } + }, + { + "id": "corning_24_wellplate_3point4ml_flat_B1", + "uuid": "2e5f3b54-36c5-4869-a067-0c03fb9c80f0", + "name": "corning_24_wellplate_3point4ml_flat_B1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "536cfb8b-57be-4a29-b203-04a104c9f05a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 11.498, + "height": 11.498 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.731, + "y": 46.621, + "z": 2.87 + }, + "position3d": { + "x": 11.731, + "y": 46.621, + "z": 2.87 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 11.498, + "size_y": 11.498, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 3400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B1_volume_tracker", + "max_volume": 3400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.731, + "y": 46.621, + "z": 2.87 + } + }, + { + "id": "corning_24_wellplate_3point4ml_flat_C1", + "uuid": "3981b515-940b-4235-bb8f-25ea4312c808", + "name": "corning_24_wellplate_3point4ml_flat_C1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "536cfb8b-57be-4a29-b203-04a104c9f05a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 11.498, + "height": 11.498 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.731, + "y": 27.321, + "z": 2.87 + }, + "position3d": { + "x": 11.731, + "y": 27.321, + "z": 2.87 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 11.498, + "size_y": 11.498, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 3400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C1_volume_tracker", + "max_volume": 3400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.731, + "y": 27.321, + "z": 2.87 + } + }, + { + "id": "corning_24_wellplate_3point4ml_flat_D1", + "uuid": "ea58666c-136d-4aa9-ae59-70d018c47e29", + "name": "corning_24_wellplate_3point4ml_flat_D1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "536cfb8b-57be-4a29-b203-04a104c9f05a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 11.498, + "height": 11.498 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.731, + "y": 8.021, + "z": 2.87 + }, + "position3d": { + "x": 11.731, + "y": 8.021, + "z": 2.87 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 11.498, + "size_y": 11.498, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 3400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D1_volume_tracker", + "max_volume": 3400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.731, + "y": 8.021, + "z": 2.87 + } + }, + { + "id": "corning_24_wellplate_3point4ml_flat_A2", + "uuid": "31f22cfe-2046-4364-b0f2-79ade0029613", + "name": "corning_24_wellplate_3point4ml_flat_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "536cfb8b-57be-4a29-b203-04a104c9f05a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 11.498, + "height": 11.498 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 31.031, + "y": 65.921, + "z": 2.87 + }, + "position3d": { + "x": 31.031, + "y": 65.921, + "z": 2.87 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 11.498, + "size_y": 11.498, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 3400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A2_volume_tracker", + "max_volume": 3400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 31.031, + "y": 65.921, + "z": 2.87 + } + }, + { + "id": "corning_24_wellplate_3point4ml_flat_B2", + "uuid": "dbf88fc5-e508-4827-a34d-7ae211ee19a7", + "name": "corning_24_wellplate_3point4ml_flat_B2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "536cfb8b-57be-4a29-b203-04a104c9f05a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 11.498, + "height": 11.498 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 31.031, + "y": 46.621, + "z": 2.87 + }, + "position3d": { + "x": 31.031, + "y": 46.621, + "z": 2.87 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 11.498, + "size_y": 11.498, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 3400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B2_volume_tracker", + "max_volume": 3400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 31.031, + "y": 46.621, + "z": 2.87 + } + }, + { + "id": "corning_24_wellplate_3point4ml_flat_C2", + "uuid": "cff695f4-0136-4afa-9464-9f1529baf99c", + "name": "corning_24_wellplate_3point4ml_flat_C2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "536cfb8b-57be-4a29-b203-04a104c9f05a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 11.498, + "height": 11.498 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 31.031, + "y": 27.321, + "z": 2.87 + }, + "position3d": { + "x": 31.031, + "y": 27.321, + "z": 2.87 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 11.498, + "size_y": 11.498, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 3400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C2_volume_tracker", + "max_volume": 3400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 31.031, + "y": 27.321, + "z": 2.87 + } + }, + { + "id": "corning_24_wellplate_3point4ml_flat_D2", + "uuid": "2d18f978-d127-4c4f-894a-dfceff2dc7ca", + "name": "corning_24_wellplate_3point4ml_flat_D2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "536cfb8b-57be-4a29-b203-04a104c9f05a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 11.498, + "height": 11.498 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 31.031, + "y": 8.021, + "z": 2.87 + }, + "position3d": { + "x": 31.031, + "y": 8.021, + "z": 2.87 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 11.498, + "size_y": 11.498, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 3400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D2_volume_tracker", + "max_volume": 3400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 31.031, + "y": 8.021, + "z": 2.87 + } + }, + { + "id": "corning_24_wellplate_3point4ml_flat_A3", + "uuid": "e5341610-5d2b-4a61-ba11-c421dd212361", + "name": "corning_24_wellplate_3point4ml_flat_A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "536cfb8b-57be-4a29-b203-04a104c9f05a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 11.498, + "height": 11.498 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 50.331, + "y": 65.921, + "z": 2.87 + }, + "position3d": { + "x": 50.331, + "y": 65.921, + "z": 2.87 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 11.498, + "size_y": 11.498, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 3400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A3_volume_tracker", + "max_volume": 3400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 50.331, + "y": 65.921, + "z": 2.87 + } + }, + { + "id": "corning_24_wellplate_3point4ml_flat_B3", + "uuid": "39ddf23e-a960-4cad-add8-e2dd05625e95", + "name": "corning_24_wellplate_3point4ml_flat_B3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "536cfb8b-57be-4a29-b203-04a104c9f05a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 11.498, + "height": 11.498 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 50.331, + "y": 46.621, + "z": 2.87 + }, + "position3d": { + "x": 50.331, + "y": 46.621, + "z": 2.87 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 11.498, + "size_y": 11.498, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 3400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B3_volume_tracker", + "max_volume": 3400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 50.331, + "y": 46.621, + "z": 2.87 + } + }, + { + "id": "corning_24_wellplate_3point4ml_flat_C3", + "uuid": "bb14d05c-5f9f-4453-ae2f-ee9883af7ce8", + "name": "corning_24_wellplate_3point4ml_flat_C3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "536cfb8b-57be-4a29-b203-04a104c9f05a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 11.498, + "height": 11.498 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 50.331, + "y": 27.321, + "z": 2.87 + }, + "position3d": { + "x": 50.331, + "y": 27.321, + "z": 2.87 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 11.498, + "size_y": 11.498, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 3400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C3_volume_tracker", + "max_volume": 3400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 50.331, + "y": 27.321, + "z": 2.87 + } + }, + { + "id": "corning_24_wellplate_3point4ml_flat_D3", + "uuid": "9c4fec69-e276-44fa-9ad7-455f69bca559", + "name": "corning_24_wellplate_3point4ml_flat_D3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "536cfb8b-57be-4a29-b203-04a104c9f05a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 11.498, + "height": 11.498 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 50.331, + "y": 8.021, + "z": 2.87 + }, + "position3d": { + "x": 50.331, + "y": 8.021, + "z": 2.87 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 11.498, + "size_y": 11.498, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 3400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D3_volume_tracker", + "max_volume": 3400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 50.331, + "y": 8.021, + "z": 2.87 + } + }, + { + "id": "corning_24_wellplate_3point4ml_flat_A4", + "uuid": "eaf5160b-3bef-4dca-835e-cd2a9c45db80", + "name": "corning_24_wellplate_3point4ml_flat_A4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "536cfb8b-57be-4a29-b203-04a104c9f05a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 11.498, + "height": 11.498 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 69.631, + "y": 65.921, + "z": 2.87 + }, + "position3d": { + "x": 69.631, + "y": 65.921, + "z": 2.87 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 11.498, + "size_y": 11.498, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 3400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A4_volume_tracker", + "max_volume": 3400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 69.631, + "y": 65.921, + "z": 2.87 + } + }, + { + "id": "corning_24_wellplate_3point4ml_flat_B4", + "uuid": "b5a24bdf-ce90-4bdd-80f5-d45faa535b28", + "name": "corning_24_wellplate_3point4ml_flat_B4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "536cfb8b-57be-4a29-b203-04a104c9f05a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 11.498, + "height": 11.498 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 69.631, + "y": 46.621, + "z": 2.87 + }, + "position3d": { + "x": 69.631, + "y": 46.621, + "z": 2.87 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 11.498, + "size_y": 11.498, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 3400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B4_volume_tracker", + "max_volume": 3400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 69.631, + "y": 46.621, + "z": 2.87 + } + }, + { + "id": "corning_24_wellplate_3point4ml_flat_C4", + "uuid": "3df9c55a-cfe0-4c0c-a2d0-d3b6e3f51189", + "name": "corning_24_wellplate_3point4ml_flat_C4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "536cfb8b-57be-4a29-b203-04a104c9f05a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 11.498, + "height": 11.498 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 69.631, + "y": 27.321, + "z": 2.87 + }, + "position3d": { + "x": 69.631, + "y": 27.321, + "z": 2.87 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 11.498, + "size_y": 11.498, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 3400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C4_volume_tracker", + "max_volume": 3400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 69.631, + "y": 27.321, + "z": 2.87 + } + }, + { + "id": "corning_24_wellplate_3point4ml_flat_D4", + "uuid": "dc910b1f-09cb-46a8-9bfa-ccecf3e87832", + "name": "corning_24_wellplate_3point4ml_flat_D4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "536cfb8b-57be-4a29-b203-04a104c9f05a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 11.498, + "height": 11.498 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 69.631, + "y": 8.021, + "z": 2.87 + }, + "position3d": { + "x": 69.631, + "y": 8.021, + "z": 2.87 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 11.498, + "size_y": 11.498, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 3400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D4_volume_tracker", + "max_volume": 3400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 69.631, + "y": 8.021, + "z": 2.87 + } + }, + { + "id": "corning_24_wellplate_3point4ml_flat_A5", + "uuid": "0c42ce09-b6a3-4f32-871a-38eaf4e0f1cf", + "name": "corning_24_wellplate_3point4ml_flat_A5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "536cfb8b-57be-4a29-b203-04a104c9f05a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 11.498, + "height": 11.498 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 88.931, + "y": 65.921, + "z": 2.87 + }, + "position3d": { + "x": 88.931, + "y": 65.921, + "z": 2.87 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 11.498, + "size_y": 11.498, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 3400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A5_volume_tracker", + "max_volume": 3400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 88.931, + "y": 65.921, + "z": 2.87 + } + }, + { + "id": "corning_24_wellplate_3point4ml_flat_B5", + "uuid": "153027dc-f3fc-42d6-ada2-97379c1e0d86", + "name": "corning_24_wellplate_3point4ml_flat_B5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "536cfb8b-57be-4a29-b203-04a104c9f05a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 11.498, + "height": 11.498 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 88.931, + "y": 46.621, + "z": 2.87 + }, + "position3d": { + "x": 88.931, + "y": 46.621, + "z": 2.87 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 11.498, + "size_y": 11.498, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 3400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B5_volume_tracker", + "max_volume": 3400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 88.931, + "y": 46.621, + "z": 2.87 + } + }, + { + "id": "corning_24_wellplate_3point4ml_flat_C5", + "uuid": "63c1d3b2-c28c-4fba-aea6-f0cbb1c15f2e", + "name": "corning_24_wellplate_3point4ml_flat_C5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "536cfb8b-57be-4a29-b203-04a104c9f05a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 11.498, + "height": 11.498 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 88.931, + "y": 27.321, + "z": 2.87 + }, + "position3d": { + "x": 88.931, + "y": 27.321, + "z": 2.87 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 11.498, + "size_y": 11.498, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 3400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C5_volume_tracker", + "max_volume": 3400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 88.931, + "y": 27.321, + "z": 2.87 + } + }, + { + "id": "corning_24_wellplate_3point4ml_flat_D5", + "uuid": "19aa5c5e-1068-49e2-9990-49f6d5faee87", + "name": "corning_24_wellplate_3point4ml_flat_D5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "536cfb8b-57be-4a29-b203-04a104c9f05a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 11.498, + "height": 11.498 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 88.931, + "y": 8.021, + "z": 2.87 + }, + "position3d": { + "x": 88.931, + "y": 8.021, + "z": 2.87 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 11.498, + "size_y": 11.498, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 3400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D5_volume_tracker", + "max_volume": 3400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 88.931, + "y": 8.021, + "z": 2.87 + } + }, + { + "id": "corning_24_wellplate_3point4ml_flat_A6", + "uuid": "7eaf6606-faf9-4f02-a55c-d71b684556ed", + "name": "corning_24_wellplate_3point4ml_flat_A6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "536cfb8b-57be-4a29-b203-04a104c9f05a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 11.498, + "height": 11.498 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 108.231, + "y": 65.921, + "z": 2.87 + }, + "position3d": { + "x": 108.231, + "y": 65.921, + "z": 2.87 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 11.498, + "size_y": 11.498, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 3400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A6_volume_tracker", + "max_volume": 3400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 108.231, + "y": 65.921, + "z": 2.87 + } + }, + { + "id": "corning_24_wellplate_3point4ml_flat_B6", + "uuid": "222fb936-8762-4cac-9ca5-39ac19afc369", + "name": "corning_24_wellplate_3point4ml_flat_B6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "536cfb8b-57be-4a29-b203-04a104c9f05a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 11.498, + "height": 11.498 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 108.231, + "y": 46.621, + "z": 2.87 + }, + "position3d": { + "x": 108.231, + "y": 46.621, + "z": 2.87 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 11.498, + "size_y": 11.498, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 3400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B6_volume_tracker", + "max_volume": 3400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 108.231, + "y": 46.621, + "z": 2.87 + } + }, + { + "id": "corning_24_wellplate_3point4ml_flat_C6", + "uuid": "56b4ca0e-940c-4f76-a444-fe42d6f111fe", + "name": "corning_24_wellplate_3point4ml_flat_C6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "536cfb8b-57be-4a29-b203-04a104c9f05a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 11.498, + "height": 11.498 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 108.231, + "y": 27.321, + "z": 2.87 + }, + "position3d": { + "x": 108.231, + "y": 27.321, + "z": 2.87 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 11.498, + "size_y": 11.498, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 3400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C6_volume_tracker", + "max_volume": 3400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 108.231, + "y": 27.321, + "z": 2.87 + } + }, + { + "id": "corning_24_wellplate_3point4ml_flat_D6", + "uuid": "7997c809-3cbc-4308-938e-889a57c6e0d0", + "name": "corning_24_wellplate_3point4ml_flat_D6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "536cfb8b-57be-4a29-b203-04a104c9f05a", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 11.498, + "height": 11.498 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 108.231, + "y": 8.021, + "z": 2.87 + }, + "position3d": { + "x": 108.231, + "y": 8.021, + "z": 2.87 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 11.498, + "size_y": 11.498, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 3400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D6_volume_tracker", + "max_volume": 3400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 108.231, + "y": 8.021, + "z": 2.87 + } + } + ] + }, + { + "id": "corning_384_wellplate_112ul_flat", + "category": [ + "plates" + ], + "class": { + "module": "pylabrobot.resources.opentrons.plates:corning_384_wellplate_112ul_flat", + "type": "pylabrobot" + }, + "description": "Corning 384 wellplate 112ul flat", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/opentrons/plates.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "corning_384_wellplate_112ul_flat", + "uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "name": "corning_384_wellplate_112ul_flat", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "plate", + "class": "", + "pose": { + "size": { + "depth": 14.22, + "width": 127.76, + "height": 85.47 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Plate", + "size_x": 127.76, + "size_y": 85.47, + "size_z": 14.22, + "category": "plate", + "model": "Corning 384 Well Plate 112 µL Flat", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "corning_384_wellplate_112ul_flat_A1", + "B1": "corning_384_wellplate_112ul_flat_B1", + "C1": "corning_384_wellplate_112ul_flat_C1", + "D1": "corning_384_wellplate_112ul_flat_D1", + "E1": "corning_384_wellplate_112ul_flat_E1", + "F1": "corning_384_wellplate_112ul_flat_F1", + "G1": "corning_384_wellplate_112ul_flat_G1", + "H1": "corning_384_wellplate_112ul_flat_H1", + "I1": "corning_384_wellplate_112ul_flat_I1", + "J1": "corning_384_wellplate_112ul_flat_J1", + "K1": "corning_384_wellplate_112ul_flat_K1", + "L1": "corning_384_wellplate_112ul_flat_L1", + "M1": "corning_384_wellplate_112ul_flat_M1", + "N1": "corning_384_wellplate_112ul_flat_N1", + "O1": "corning_384_wellplate_112ul_flat_O1", + "P1": "corning_384_wellplate_112ul_flat_P1", + "A2": "corning_384_wellplate_112ul_flat_A2", + "B2": "corning_384_wellplate_112ul_flat_B2", + "C2": "corning_384_wellplate_112ul_flat_C2", + "D2": "corning_384_wellplate_112ul_flat_D2", + "E2": "corning_384_wellplate_112ul_flat_E2", + "F2": "corning_384_wellplate_112ul_flat_F2", + "G2": "corning_384_wellplate_112ul_flat_G2", + "H2": "corning_384_wellplate_112ul_flat_H2", + "I2": "corning_384_wellplate_112ul_flat_I2", + "J2": "corning_384_wellplate_112ul_flat_J2", + "K2": "corning_384_wellplate_112ul_flat_K2", + "L2": "corning_384_wellplate_112ul_flat_L2", + "M2": "corning_384_wellplate_112ul_flat_M2", + "N2": "corning_384_wellplate_112ul_flat_N2", + "O2": "corning_384_wellplate_112ul_flat_O2", + "P2": "corning_384_wellplate_112ul_flat_P2", + "A3": "corning_384_wellplate_112ul_flat_A3", + "B3": "corning_384_wellplate_112ul_flat_B3", + "C3": "corning_384_wellplate_112ul_flat_C3", + "D3": "corning_384_wellplate_112ul_flat_D3", + "E3": "corning_384_wellplate_112ul_flat_E3", + "F3": "corning_384_wellplate_112ul_flat_F3", + "G3": "corning_384_wellplate_112ul_flat_G3", + "H3": "corning_384_wellplate_112ul_flat_H3", + "I3": "corning_384_wellplate_112ul_flat_I3", + "J3": "corning_384_wellplate_112ul_flat_J3", + "K3": "corning_384_wellplate_112ul_flat_K3", + "L3": "corning_384_wellplate_112ul_flat_L3", + "M3": "corning_384_wellplate_112ul_flat_M3", + "N3": "corning_384_wellplate_112ul_flat_N3", + "O3": "corning_384_wellplate_112ul_flat_O3", + "P3": "corning_384_wellplate_112ul_flat_P3", + "A4": "corning_384_wellplate_112ul_flat_A4", + "B4": "corning_384_wellplate_112ul_flat_B4", + "C4": "corning_384_wellplate_112ul_flat_C4", + "D4": "corning_384_wellplate_112ul_flat_D4", + "E4": "corning_384_wellplate_112ul_flat_E4", + "F4": "corning_384_wellplate_112ul_flat_F4", + "G4": "corning_384_wellplate_112ul_flat_G4", + "H4": "corning_384_wellplate_112ul_flat_H4", + "I4": "corning_384_wellplate_112ul_flat_I4", + "J4": "corning_384_wellplate_112ul_flat_J4", + "K4": "corning_384_wellplate_112ul_flat_K4", + "L4": "corning_384_wellplate_112ul_flat_L4", + "M4": "corning_384_wellplate_112ul_flat_M4", + "N4": "corning_384_wellplate_112ul_flat_N4", + "O4": "corning_384_wellplate_112ul_flat_O4", + "P4": "corning_384_wellplate_112ul_flat_P4", + "A5": "corning_384_wellplate_112ul_flat_A5", + "B5": "corning_384_wellplate_112ul_flat_B5", + "C5": "corning_384_wellplate_112ul_flat_C5", + "D5": "corning_384_wellplate_112ul_flat_D5", + "E5": "corning_384_wellplate_112ul_flat_E5", + "F5": "corning_384_wellplate_112ul_flat_F5", + "G5": "corning_384_wellplate_112ul_flat_G5", + "H5": "corning_384_wellplate_112ul_flat_H5", + "I5": "corning_384_wellplate_112ul_flat_I5", + "J5": "corning_384_wellplate_112ul_flat_J5", + "K5": "corning_384_wellplate_112ul_flat_K5", + "L5": "corning_384_wellplate_112ul_flat_L5", + "M5": "corning_384_wellplate_112ul_flat_M5", + "N5": "corning_384_wellplate_112ul_flat_N5", + "O5": "corning_384_wellplate_112ul_flat_O5", + "P5": "corning_384_wellplate_112ul_flat_P5", + "A6": "corning_384_wellplate_112ul_flat_A6", + "B6": "corning_384_wellplate_112ul_flat_B6", + "C6": "corning_384_wellplate_112ul_flat_C6", + "D6": "corning_384_wellplate_112ul_flat_D6", + "E6": "corning_384_wellplate_112ul_flat_E6", + "F6": "corning_384_wellplate_112ul_flat_F6", + "G6": "corning_384_wellplate_112ul_flat_G6", + "H6": "corning_384_wellplate_112ul_flat_H6", + "I6": "corning_384_wellplate_112ul_flat_I6", + "J6": "corning_384_wellplate_112ul_flat_J6", + "K6": "corning_384_wellplate_112ul_flat_K6", + "L6": "corning_384_wellplate_112ul_flat_L6", + "M6": "corning_384_wellplate_112ul_flat_M6", + "N6": "corning_384_wellplate_112ul_flat_N6", + "O6": "corning_384_wellplate_112ul_flat_O6", + "P6": "corning_384_wellplate_112ul_flat_P6", + "A7": "corning_384_wellplate_112ul_flat_A7", + "B7": "corning_384_wellplate_112ul_flat_B7", + "C7": "corning_384_wellplate_112ul_flat_C7", + "D7": "corning_384_wellplate_112ul_flat_D7", + "E7": "corning_384_wellplate_112ul_flat_E7", + "F7": "corning_384_wellplate_112ul_flat_F7", + "G7": "corning_384_wellplate_112ul_flat_G7", + "H7": "corning_384_wellplate_112ul_flat_H7", + "I7": "corning_384_wellplate_112ul_flat_I7", + "J7": "corning_384_wellplate_112ul_flat_J7", + "K7": "corning_384_wellplate_112ul_flat_K7", + "L7": "corning_384_wellplate_112ul_flat_L7", + "M7": "corning_384_wellplate_112ul_flat_M7", + "N7": "corning_384_wellplate_112ul_flat_N7", + "O7": "corning_384_wellplate_112ul_flat_O7", + "P7": "corning_384_wellplate_112ul_flat_P7", + "A8": "corning_384_wellplate_112ul_flat_A8", + "B8": "corning_384_wellplate_112ul_flat_B8", + "C8": "corning_384_wellplate_112ul_flat_C8", + "D8": "corning_384_wellplate_112ul_flat_D8", + "E8": "corning_384_wellplate_112ul_flat_E8", + "F8": "corning_384_wellplate_112ul_flat_F8", + "G8": "corning_384_wellplate_112ul_flat_G8", + "H8": "corning_384_wellplate_112ul_flat_H8", + "I8": "corning_384_wellplate_112ul_flat_I8", + "J8": "corning_384_wellplate_112ul_flat_J8", + "K8": "corning_384_wellplate_112ul_flat_K8", + "L8": "corning_384_wellplate_112ul_flat_L8", + "M8": "corning_384_wellplate_112ul_flat_M8", + "N8": "corning_384_wellplate_112ul_flat_N8", + "O8": "corning_384_wellplate_112ul_flat_O8", + "P8": "corning_384_wellplate_112ul_flat_P8", + "A9": "corning_384_wellplate_112ul_flat_A9", + "B9": "corning_384_wellplate_112ul_flat_B9", + "C9": "corning_384_wellplate_112ul_flat_C9", + "D9": "corning_384_wellplate_112ul_flat_D9", + "E9": "corning_384_wellplate_112ul_flat_E9", + "F9": "corning_384_wellplate_112ul_flat_F9", + "G9": "corning_384_wellplate_112ul_flat_G9", + "H9": "corning_384_wellplate_112ul_flat_H9", + "I9": "corning_384_wellplate_112ul_flat_I9", + "J9": "corning_384_wellplate_112ul_flat_J9", + "K9": "corning_384_wellplate_112ul_flat_K9", + "L9": "corning_384_wellplate_112ul_flat_L9", + "M9": "corning_384_wellplate_112ul_flat_M9", + "N9": "corning_384_wellplate_112ul_flat_N9", + "O9": "corning_384_wellplate_112ul_flat_O9", + "P9": "corning_384_wellplate_112ul_flat_P9", + "A10": "corning_384_wellplate_112ul_flat_A10", + "B10": "corning_384_wellplate_112ul_flat_B10", + "C10": "corning_384_wellplate_112ul_flat_C10", + "D10": "corning_384_wellplate_112ul_flat_D10", + "E10": "corning_384_wellplate_112ul_flat_E10", + "F10": "corning_384_wellplate_112ul_flat_F10", + "G10": "corning_384_wellplate_112ul_flat_G10", + "H10": "corning_384_wellplate_112ul_flat_H10", + "I10": "corning_384_wellplate_112ul_flat_I10", + "J10": "corning_384_wellplate_112ul_flat_J10", + "K10": "corning_384_wellplate_112ul_flat_K10", + "L10": "corning_384_wellplate_112ul_flat_L10", + "M10": "corning_384_wellplate_112ul_flat_M10", + "N10": "corning_384_wellplate_112ul_flat_N10", + "O10": "corning_384_wellplate_112ul_flat_O10", + "P10": "corning_384_wellplate_112ul_flat_P10", + "A11": "corning_384_wellplate_112ul_flat_A11", + "B11": "corning_384_wellplate_112ul_flat_B11", + "C11": "corning_384_wellplate_112ul_flat_C11", + "D11": "corning_384_wellplate_112ul_flat_D11", + "E11": "corning_384_wellplate_112ul_flat_E11", + "F11": "corning_384_wellplate_112ul_flat_F11", + "G11": "corning_384_wellplate_112ul_flat_G11", + "H11": "corning_384_wellplate_112ul_flat_H11", + "I11": "corning_384_wellplate_112ul_flat_I11", + "J11": "corning_384_wellplate_112ul_flat_J11", + "K11": "corning_384_wellplate_112ul_flat_K11", + "L11": "corning_384_wellplate_112ul_flat_L11", + "M11": "corning_384_wellplate_112ul_flat_M11", + "N11": "corning_384_wellplate_112ul_flat_N11", + "O11": "corning_384_wellplate_112ul_flat_O11", + "P11": "corning_384_wellplate_112ul_flat_P11", + "A12": "corning_384_wellplate_112ul_flat_A12", + "B12": "corning_384_wellplate_112ul_flat_B12", + "C12": "corning_384_wellplate_112ul_flat_C12", + "D12": "corning_384_wellplate_112ul_flat_D12", + "E12": "corning_384_wellplate_112ul_flat_E12", + "F12": "corning_384_wellplate_112ul_flat_F12", + "G12": "corning_384_wellplate_112ul_flat_G12", + "H12": "corning_384_wellplate_112ul_flat_H12", + "I12": "corning_384_wellplate_112ul_flat_I12", + "J12": "corning_384_wellplate_112ul_flat_J12", + "K12": "corning_384_wellplate_112ul_flat_K12", + "L12": "corning_384_wellplate_112ul_flat_L12", + "M12": "corning_384_wellplate_112ul_flat_M12", + "N12": "corning_384_wellplate_112ul_flat_N12", + "O12": "corning_384_wellplate_112ul_flat_O12", + "P12": "corning_384_wellplate_112ul_flat_P12", + "A13": "corning_384_wellplate_112ul_flat_A13", + "B13": "corning_384_wellplate_112ul_flat_B13", + "C13": "corning_384_wellplate_112ul_flat_C13", + "D13": "corning_384_wellplate_112ul_flat_D13", + "E13": "corning_384_wellplate_112ul_flat_E13", + "F13": "corning_384_wellplate_112ul_flat_F13", + "G13": "corning_384_wellplate_112ul_flat_G13", + "H13": "corning_384_wellplate_112ul_flat_H13", + "I13": "corning_384_wellplate_112ul_flat_I13", + "J13": "corning_384_wellplate_112ul_flat_J13", + "K13": "corning_384_wellplate_112ul_flat_K13", + "L13": "corning_384_wellplate_112ul_flat_L13", + "M13": "corning_384_wellplate_112ul_flat_M13", + "N13": "corning_384_wellplate_112ul_flat_N13", + "O13": "corning_384_wellplate_112ul_flat_O13", + "P13": "corning_384_wellplate_112ul_flat_P13", + "A14": "corning_384_wellplate_112ul_flat_A14", + "B14": "corning_384_wellplate_112ul_flat_B14", + "C14": "corning_384_wellplate_112ul_flat_C14", + "D14": "corning_384_wellplate_112ul_flat_D14", + "E14": "corning_384_wellplate_112ul_flat_E14", + "F14": "corning_384_wellplate_112ul_flat_F14", + "G14": "corning_384_wellplate_112ul_flat_G14", + "H14": "corning_384_wellplate_112ul_flat_H14", + "I14": "corning_384_wellplate_112ul_flat_I14", + "J14": "corning_384_wellplate_112ul_flat_J14", + "K14": "corning_384_wellplate_112ul_flat_K14", + "L14": "corning_384_wellplate_112ul_flat_L14", + "M14": "corning_384_wellplate_112ul_flat_M14", + "N14": "corning_384_wellplate_112ul_flat_N14", + "O14": "corning_384_wellplate_112ul_flat_O14", + "P14": "corning_384_wellplate_112ul_flat_P14", + "A15": "corning_384_wellplate_112ul_flat_A15", + "B15": "corning_384_wellplate_112ul_flat_B15", + "C15": "corning_384_wellplate_112ul_flat_C15", + "D15": "corning_384_wellplate_112ul_flat_D15", + "E15": "corning_384_wellplate_112ul_flat_E15", + "F15": "corning_384_wellplate_112ul_flat_F15", + "G15": "corning_384_wellplate_112ul_flat_G15", + "H15": "corning_384_wellplate_112ul_flat_H15", + "I15": "corning_384_wellplate_112ul_flat_I15", + "J15": "corning_384_wellplate_112ul_flat_J15", + "K15": "corning_384_wellplate_112ul_flat_K15", + "L15": "corning_384_wellplate_112ul_flat_L15", + "M15": "corning_384_wellplate_112ul_flat_M15", + "N15": "corning_384_wellplate_112ul_flat_N15", + "O15": "corning_384_wellplate_112ul_flat_O15", + "P15": "corning_384_wellplate_112ul_flat_P15", + "A16": "corning_384_wellplate_112ul_flat_A16", + "B16": "corning_384_wellplate_112ul_flat_B16", + "C16": "corning_384_wellplate_112ul_flat_C16", + "D16": "corning_384_wellplate_112ul_flat_D16", + "E16": "corning_384_wellplate_112ul_flat_E16", + "F16": "corning_384_wellplate_112ul_flat_F16", + "G16": "corning_384_wellplate_112ul_flat_G16", + "H16": "corning_384_wellplate_112ul_flat_H16", + "I16": "corning_384_wellplate_112ul_flat_I16", + "J16": "corning_384_wellplate_112ul_flat_J16", + "K16": "corning_384_wellplate_112ul_flat_K16", + "L16": "corning_384_wellplate_112ul_flat_L16", + "M16": "corning_384_wellplate_112ul_flat_M16", + "N16": "corning_384_wellplate_112ul_flat_N16", + "O16": "corning_384_wellplate_112ul_flat_O16", + "P16": "corning_384_wellplate_112ul_flat_P16", + "A17": "corning_384_wellplate_112ul_flat_A17", + "B17": "corning_384_wellplate_112ul_flat_B17", + "C17": "corning_384_wellplate_112ul_flat_C17", + "D17": "corning_384_wellplate_112ul_flat_D17", + "E17": "corning_384_wellplate_112ul_flat_E17", + "F17": "corning_384_wellplate_112ul_flat_F17", + "G17": "corning_384_wellplate_112ul_flat_G17", + "H17": "corning_384_wellplate_112ul_flat_H17", + "I17": "corning_384_wellplate_112ul_flat_I17", + "J17": "corning_384_wellplate_112ul_flat_J17", + "K17": "corning_384_wellplate_112ul_flat_K17", + "L17": "corning_384_wellplate_112ul_flat_L17", + "M17": "corning_384_wellplate_112ul_flat_M17", + "N17": "corning_384_wellplate_112ul_flat_N17", + "O17": "corning_384_wellplate_112ul_flat_O17", + "P17": "corning_384_wellplate_112ul_flat_P17", + "A18": "corning_384_wellplate_112ul_flat_A18", + "B18": "corning_384_wellplate_112ul_flat_B18", + "C18": "corning_384_wellplate_112ul_flat_C18", + "D18": "corning_384_wellplate_112ul_flat_D18", + "E18": "corning_384_wellplate_112ul_flat_E18", + "F18": "corning_384_wellplate_112ul_flat_F18", + "G18": "corning_384_wellplate_112ul_flat_G18", + "H18": "corning_384_wellplate_112ul_flat_H18", + "I18": "corning_384_wellplate_112ul_flat_I18", + "J18": "corning_384_wellplate_112ul_flat_J18", + "K18": "corning_384_wellplate_112ul_flat_K18", + "L18": "corning_384_wellplate_112ul_flat_L18", + "M18": "corning_384_wellplate_112ul_flat_M18", + "N18": "corning_384_wellplate_112ul_flat_N18", + "O18": "corning_384_wellplate_112ul_flat_O18", + "P18": "corning_384_wellplate_112ul_flat_P18", + "A19": "corning_384_wellplate_112ul_flat_A19", + "B19": "corning_384_wellplate_112ul_flat_B19", + "C19": "corning_384_wellplate_112ul_flat_C19", + "D19": "corning_384_wellplate_112ul_flat_D19", + "E19": "corning_384_wellplate_112ul_flat_E19", + "F19": "corning_384_wellplate_112ul_flat_F19", + "G19": "corning_384_wellplate_112ul_flat_G19", + "H19": "corning_384_wellplate_112ul_flat_H19", + "I19": "corning_384_wellplate_112ul_flat_I19", + "J19": "corning_384_wellplate_112ul_flat_J19", + "K19": "corning_384_wellplate_112ul_flat_K19", + "L19": "corning_384_wellplate_112ul_flat_L19", + "M19": "corning_384_wellplate_112ul_flat_M19", + "N19": "corning_384_wellplate_112ul_flat_N19", + "O19": "corning_384_wellplate_112ul_flat_O19", + "P19": "corning_384_wellplate_112ul_flat_P19", + "A20": "corning_384_wellplate_112ul_flat_A20", + "B20": "corning_384_wellplate_112ul_flat_B20", + "C20": "corning_384_wellplate_112ul_flat_C20", + "D20": "corning_384_wellplate_112ul_flat_D20", + "E20": "corning_384_wellplate_112ul_flat_E20", + "F20": "corning_384_wellplate_112ul_flat_F20", + "G20": "corning_384_wellplate_112ul_flat_G20", + "H20": "corning_384_wellplate_112ul_flat_H20", + "I20": "corning_384_wellplate_112ul_flat_I20", + "J20": "corning_384_wellplate_112ul_flat_J20", + "K20": "corning_384_wellplate_112ul_flat_K20", + "L20": "corning_384_wellplate_112ul_flat_L20", + "M20": "corning_384_wellplate_112ul_flat_M20", + "N20": "corning_384_wellplate_112ul_flat_N20", + "O20": "corning_384_wellplate_112ul_flat_O20", + "P20": "corning_384_wellplate_112ul_flat_P20", + "A21": "corning_384_wellplate_112ul_flat_A21", + "B21": "corning_384_wellplate_112ul_flat_B21", + "C21": "corning_384_wellplate_112ul_flat_C21", + "D21": "corning_384_wellplate_112ul_flat_D21", + "E21": "corning_384_wellplate_112ul_flat_E21", + "F21": "corning_384_wellplate_112ul_flat_F21", + "G21": "corning_384_wellplate_112ul_flat_G21", + "H21": "corning_384_wellplate_112ul_flat_H21", + "I21": "corning_384_wellplate_112ul_flat_I21", + "J21": "corning_384_wellplate_112ul_flat_J21", + "K21": "corning_384_wellplate_112ul_flat_K21", + "L21": "corning_384_wellplate_112ul_flat_L21", + "M21": "corning_384_wellplate_112ul_flat_M21", + "N21": "corning_384_wellplate_112ul_flat_N21", + "O21": "corning_384_wellplate_112ul_flat_O21", + "P21": "corning_384_wellplate_112ul_flat_P21", + "A22": "corning_384_wellplate_112ul_flat_A22", + "B22": "corning_384_wellplate_112ul_flat_B22", + "C22": "corning_384_wellplate_112ul_flat_C22", + "D22": "corning_384_wellplate_112ul_flat_D22", + "E22": "corning_384_wellplate_112ul_flat_E22", + "F22": "corning_384_wellplate_112ul_flat_F22", + "G22": "corning_384_wellplate_112ul_flat_G22", + "H22": "corning_384_wellplate_112ul_flat_H22", + "I22": "corning_384_wellplate_112ul_flat_I22", + "J22": "corning_384_wellplate_112ul_flat_J22", + "K22": "corning_384_wellplate_112ul_flat_K22", + "L22": "corning_384_wellplate_112ul_flat_L22", + "M22": "corning_384_wellplate_112ul_flat_M22", + "N22": "corning_384_wellplate_112ul_flat_N22", + "O22": "corning_384_wellplate_112ul_flat_O22", + "P22": "corning_384_wellplate_112ul_flat_P22", + "A23": "corning_384_wellplate_112ul_flat_A23", + "B23": "corning_384_wellplate_112ul_flat_B23", + "C23": "corning_384_wellplate_112ul_flat_C23", + "D23": "corning_384_wellplate_112ul_flat_D23", + "E23": "corning_384_wellplate_112ul_flat_E23", + "F23": "corning_384_wellplate_112ul_flat_F23", + "G23": "corning_384_wellplate_112ul_flat_G23", + "H23": "corning_384_wellplate_112ul_flat_H23", + "I23": "corning_384_wellplate_112ul_flat_I23", + "J23": "corning_384_wellplate_112ul_flat_J23", + "K23": "corning_384_wellplate_112ul_flat_K23", + "L23": "corning_384_wellplate_112ul_flat_L23", + "M23": "corning_384_wellplate_112ul_flat_M23", + "N23": "corning_384_wellplate_112ul_flat_N23", + "O23": "corning_384_wellplate_112ul_flat_O23", + "P23": "corning_384_wellplate_112ul_flat_P23", + "A24": "corning_384_wellplate_112ul_flat_A24", + "B24": "corning_384_wellplate_112ul_flat_B24", + "C24": "corning_384_wellplate_112ul_flat_C24", + "D24": "corning_384_wellplate_112ul_flat_D24", + "E24": "corning_384_wellplate_112ul_flat_E24", + "F24": "corning_384_wellplate_112ul_flat_F24", + "G24": "corning_384_wellplate_112ul_flat_G24", + "H24": "corning_384_wellplate_112ul_flat_H24", + "I24": "corning_384_wellplate_112ul_flat_I24", + "J24": "corning_384_wellplate_112ul_flat_J24", + "K24": "corning_384_wellplate_112ul_flat_K24", + "L24": "corning_384_wellplate_112ul_flat_L24", + "M24": "corning_384_wellplate_112ul_flat_M24", + "N24": "corning_384_wellplate_112ul_flat_N24", + "O24": "corning_384_wellplate_112ul_flat_O24", + "P24": "corning_384_wellplate_112ul_flat_P24" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_A1", + "uuid": "219c4244-86b4-4178-8725-52f9dacb75b1", + "name": "corning_384_wellplate_112ul_flat_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.305, + "y": 74.675, + "z": 2.79 + }, + "position3d": { + "x": 10.305, + "y": 74.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A1_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.305, + "y": 74.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_B1", + "uuid": "0af7fbaf-f5cd-4d9b-925b-6abff8d1bfcb", + "name": "corning_384_wellplate_112ul_flat_B1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.305, + "y": 70.175, + "z": 2.79 + }, + "position3d": { + "x": 10.305, + "y": 70.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B1_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.305, + "y": 70.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_C1", + "uuid": "1e7382ed-ca00-4026-9afa-0eacf53f7cd1", + "name": "corning_384_wellplate_112ul_flat_C1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.305, + "y": 65.675, + "z": 2.79 + }, + "position3d": { + "x": 10.305, + "y": 65.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C1_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.305, + "y": 65.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_D1", + "uuid": "dbfc6254-ebf9-4c78-a0fc-383e7c075161", + "name": "corning_384_wellplate_112ul_flat_D1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.305, + "y": 61.175, + "z": 2.79 + }, + "position3d": { + "x": 10.305, + "y": 61.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D1_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.305, + "y": 61.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_E1", + "uuid": "34306f1a-e3f9-44b0-b7b2-e381d9e6c1ce", + "name": "corning_384_wellplate_112ul_flat_E1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.305, + "y": 56.675, + "z": 2.79 + }, + "position3d": { + "x": 10.305, + "y": 56.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E1_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.305, + "y": 56.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_F1", + "uuid": "cf5891bf-5d04-4e73-b91a-e4e990413bc0", + "name": "corning_384_wellplate_112ul_flat_F1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.305, + "y": 52.175, + "z": 2.79 + }, + "position3d": { + "x": 10.305, + "y": 52.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F1_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.305, + "y": 52.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_G1", + "uuid": "426efba5-b5aa-4307-8dee-74806548b740", + "name": "corning_384_wellplate_112ul_flat_G1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.305, + "y": 47.675, + "z": 2.79 + }, + "position3d": { + "x": 10.305, + "y": 47.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G1_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.305, + "y": 47.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_H1", + "uuid": "3e611c52-c9e0-4a31-8d54-e86ca7c661ad", + "name": "corning_384_wellplate_112ul_flat_H1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.305, + "y": 43.175, + "z": 2.79 + }, + "position3d": { + "x": 10.305, + "y": 43.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H1_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.305, + "y": 43.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_I1", + "uuid": "9577b65a-43e4-4366-8308-b152102d9c6e", + "name": "corning_384_wellplate_112ul_flat_I1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.305, + "y": 38.675, + "z": 2.79 + }, + "position3d": { + "x": 10.305, + "y": 38.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "I1_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.305, + "y": 38.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_J1", + "uuid": "615e097a-9071-4a13-b96b-ca4b1abbdaec", + "name": "corning_384_wellplate_112ul_flat_J1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.305, + "y": 34.175, + "z": 2.79 + }, + "position3d": { + "x": 10.305, + "y": 34.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "J1_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.305, + "y": 34.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_K1", + "uuid": "3f195948-0bf5-44a0-bd97-2f1860c6783d", + "name": "corning_384_wellplate_112ul_flat_K1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.305, + "y": 29.675, + "z": 2.79 + }, + "position3d": { + "x": 10.305, + "y": 29.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "K1_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.305, + "y": 29.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_L1", + "uuid": "557a8102-72c3-4f96-96eb-736d99244ead", + "name": "corning_384_wellplate_112ul_flat_L1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.305, + "y": 25.175, + "z": 2.79 + }, + "position3d": { + "x": 10.305, + "y": 25.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "L1_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.305, + "y": 25.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_M1", + "uuid": "c6bcb6ce-87e7-4a14-bfc5-f84d9872ec1c", + "name": "corning_384_wellplate_112ul_flat_M1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.305, + "y": 20.675, + "z": 2.79 + }, + "position3d": { + "x": 10.305, + "y": 20.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "M1_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.305, + "y": 20.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_N1", + "uuid": "9a61fe01-fbbb-4190-af14-70c54a196c93", + "name": "corning_384_wellplate_112ul_flat_N1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.305, + "y": 16.175, + "z": 2.79 + }, + "position3d": { + "x": 10.305, + "y": 16.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "N1_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.305, + "y": 16.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_O1", + "uuid": "a66fb5ea-9f87-42ca-9269-b8bb235231e3", + "name": "corning_384_wellplate_112ul_flat_O1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.305, + "y": 11.675, + "z": 2.79 + }, + "position3d": { + "x": 10.305, + "y": 11.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "O1_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.305, + "y": 11.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_P1", + "uuid": "6f006a21-06fc-4903-b26f-cead6e133d72", + "name": "corning_384_wellplate_112ul_flat_P1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.305, + "y": 7.175, + "z": 2.79 + }, + "position3d": { + "x": 10.305, + "y": 7.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "P1_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.305, + "y": 7.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_A2", + "uuid": "a65a5f3d-1a14-4192-be78-d50dfb11161a", + "name": "corning_384_wellplate_112ul_flat_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 14.805, + "y": 74.675, + "z": 2.79 + }, + "position3d": { + "x": 14.805, + "y": 74.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A2_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 14.805, + "y": 74.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_B2", + "uuid": "d0e05bd4-d850-4e58-abbe-de98a08b29f2", + "name": "corning_384_wellplate_112ul_flat_B2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 14.805, + "y": 70.175, + "z": 2.79 + }, + "position3d": { + "x": 14.805, + "y": 70.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B2_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 14.805, + "y": 70.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_C2", + "uuid": "0cc103c3-3696-4bc0-8a22-97bf1109cb99", + "name": "corning_384_wellplate_112ul_flat_C2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 14.805, + "y": 65.675, + "z": 2.79 + }, + "position3d": { + "x": 14.805, + "y": 65.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C2_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 14.805, + "y": 65.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_D2", + "uuid": "dcf7be6f-09d2-4d2c-ad0d-c986f8eac60b", + "name": "corning_384_wellplate_112ul_flat_D2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 14.805, + "y": 61.175, + "z": 2.79 + }, + "position3d": { + "x": 14.805, + "y": 61.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D2_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 14.805, + "y": 61.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_E2", + "uuid": "b2faa008-c955-4ffa-bbf7-258e268e5598", + "name": "corning_384_wellplate_112ul_flat_E2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 14.805, + "y": 56.675, + "z": 2.79 + }, + "position3d": { + "x": 14.805, + "y": 56.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E2_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 14.805, + "y": 56.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_F2", + "uuid": "7d702173-4857-46db-8f5e-25206b946b25", + "name": "corning_384_wellplate_112ul_flat_F2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 14.805, + "y": 52.175, + "z": 2.79 + }, + "position3d": { + "x": 14.805, + "y": 52.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F2_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 14.805, + "y": 52.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_G2", + "uuid": "87c47c29-6769-4839-bc01-a50596124192", + "name": "corning_384_wellplate_112ul_flat_G2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 14.805, + "y": 47.675, + "z": 2.79 + }, + "position3d": { + "x": 14.805, + "y": 47.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G2_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 14.805, + "y": 47.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_H2", + "uuid": "337c7fe3-5831-4834-ad64-d726ec90a461", + "name": "corning_384_wellplate_112ul_flat_H2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 14.805, + "y": 43.175, + "z": 2.79 + }, + "position3d": { + "x": 14.805, + "y": 43.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H2_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 14.805, + "y": 43.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_I2", + "uuid": "7bf48732-3ad3-4132-b4eb-d6b0fa9933af", + "name": "corning_384_wellplate_112ul_flat_I2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 14.805, + "y": 38.675, + "z": 2.79 + }, + "position3d": { + "x": 14.805, + "y": 38.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "I2_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 14.805, + "y": 38.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_J2", + "uuid": "351342e3-460c-444b-bd01-24afb7634c3e", + "name": "corning_384_wellplate_112ul_flat_J2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 14.805, + "y": 34.175, + "z": 2.79 + }, + "position3d": { + "x": 14.805, + "y": 34.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "J2_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 14.805, + "y": 34.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_K2", + "uuid": "06434794-44f3-4d44-a028-af71ea2d74af", + "name": "corning_384_wellplate_112ul_flat_K2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 14.805, + "y": 29.675, + "z": 2.79 + }, + "position3d": { + "x": 14.805, + "y": 29.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "K2_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 14.805, + "y": 29.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_L2", + "uuid": "7b5d08e8-c8ac-415d-9d98-9b63c9291525", + "name": "corning_384_wellplate_112ul_flat_L2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 14.805, + "y": 25.175, + "z": 2.79 + }, + "position3d": { + "x": 14.805, + "y": 25.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "L2_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 14.805, + "y": 25.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_M2", + "uuid": "101b37d9-d2c1-4424-9697-9c680953a68a", + "name": "corning_384_wellplate_112ul_flat_M2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 14.805, + "y": 20.675, + "z": 2.79 + }, + "position3d": { + "x": 14.805, + "y": 20.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "M2_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 14.805, + "y": 20.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_N2", + "uuid": "b10a4dd8-672f-4e41-9892-3a87968cdc70", + "name": "corning_384_wellplate_112ul_flat_N2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 14.805, + "y": 16.175, + "z": 2.79 + }, + "position3d": { + "x": 14.805, + "y": 16.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "N2_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 14.805, + "y": 16.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_O2", + "uuid": "0aca567d-7d7d-404f-bb77-fef5aefcb44b", + "name": "corning_384_wellplate_112ul_flat_O2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 14.805, + "y": 11.675, + "z": 2.79 + }, + "position3d": { + "x": 14.805, + "y": 11.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "O2_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 14.805, + "y": 11.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_P2", + "uuid": "c797bafe-91de-4391-9e51-23adeb5cf4a9", + "name": "corning_384_wellplate_112ul_flat_P2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 14.805, + "y": 7.175, + "z": 2.79 + }, + "position3d": { + "x": 14.805, + "y": 7.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "P2_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 14.805, + "y": 7.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_A3", + "uuid": "b2126c0e-7d46-4ad2-b890-1556d435ff6c", + "name": "corning_384_wellplate_112ul_flat_A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 19.305, + "y": 74.675, + "z": 2.79 + }, + "position3d": { + "x": 19.305, + "y": 74.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A3_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 19.305, + "y": 74.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_B3", + "uuid": "5f67ef83-148c-4825-b0d8-26a929800cf2", + "name": "corning_384_wellplate_112ul_flat_B3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 19.305, + "y": 70.175, + "z": 2.79 + }, + "position3d": { + "x": 19.305, + "y": 70.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B3_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 19.305, + "y": 70.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_C3", + "uuid": "bf224ece-1186-4fbf-adfe-fcfbb68c5118", + "name": "corning_384_wellplate_112ul_flat_C3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 19.305, + "y": 65.675, + "z": 2.79 + }, + "position3d": { + "x": 19.305, + "y": 65.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C3_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 19.305, + "y": 65.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_D3", + "uuid": "654f7fa2-57c6-4cc1-9bda-c176d1c435ff", + "name": "corning_384_wellplate_112ul_flat_D3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 19.305, + "y": 61.175, + "z": 2.79 + }, + "position3d": { + "x": 19.305, + "y": 61.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D3_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 19.305, + "y": 61.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_E3", + "uuid": "0d9c625c-8bd0-4950-b0b6-fd78dfb1a591", + "name": "corning_384_wellplate_112ul_flat_E3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 19.305, + "y": 56.675, + "z": 2.79 + }, + "position3d": { + "x": 19.305, + "y": 56.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E3_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 19.305, + "y": 56.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_F3", + "uuid": "2b95092e-514b-46ff-9067-b79c1b08098a", + "name": "corning_384_wellplate_112ul_flat_F3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 19.305, + "y": 52.175, + "z": 2.79 + }, + "position3d": { + "x": 19.305, + "y": 52.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F3_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 19.305, + "y": 52.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_G3", + "uuid": "22f23162-ba98-4d02-90f9-35312cd2fb5d", + "name": "corning_384_wellplate_112ul_flat_G3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 19.305, + "y": 47.675, + "z": 2.79 + }, + "position3d": { + "x": 19.305, + "y": 47.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G3_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 19.305, + "y": 47.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_H3", + "uuid": "d9962fb8-614d-404a-9cc1-913141d7c02e", + "name": "corning_384_wellplate_112ul_flat_H3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 19.305, + "y": 43.175, + "z": 2.79 + }, + "position3d": { + "x": 19.305, + "y": 43.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H3_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 19.305, + "y": 43.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_I3", + "uuid": "297480a4-6467-4120-ae0c-52fd0dd045a2", + "name": "corning_384_wellplate_112ul_flat_I3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 19.305, + "y": 38.675, + "z": 2.79 + }, + "position3d": { + "x": 19.305, + "y": 38.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "I3_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 19.305, + "y": 38.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_J3", + "uuid": "f2c8ca59-4d05-4389-9243-ddb7e734ecab", + "name": "corning_384_wellplate_112ul_flat_J3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 19.305, + "y": 34.175, + "z": 2.79 + }, + "position3d": { + "x": 19.305, + "y": 34.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "J3_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 19.305, + "y": 34.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_K3", + "uuid": "3fb4275d-2377-4a1f-b619-073548dbafa6", + "name": "corning_384_wellplate_112ul_flat_K3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 19.305, + "y": 29.675, + "z": 2.79 + }, + "position3d": { + "x": 19.305, + "y": 29.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "K3_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 19.305, + "y": 29.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_L3", + "uuid": "8183c3c8-adb0-4f79-b5c1-a4f31468b6f0", + "name": "corning_384_wellplate_112ul_flat_L3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 19.305, + "y": 25.175, + "z": 2.79 + }, + "position3d": { + "x": 19.305, + "y": 25.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "L3_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 19.305, + "y": 25.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_M3", + "uuid": "8db112aa-ad52-4e72-9ad6-742e6893296b", + "name": "corning_384_wellplate_112ul_flat_M3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 19.305, + "y": 20.675, + "z": 2.79 + }, + "position3d": { + "x": 19.305, + "y": 20.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "M3_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 19.305, + "y": 20.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_N3", + "uuid": "4295de17-b2e7-43b7-94a9-0f6207db96c5", + "name": "corning_384_wellplate_112ul_flat_N3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 19.305, + "y": 16.175, + "z": 2.79 + }, + "position3d": { + "x": 19.305, + "y": 16.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "N3_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 19.305, + "y": 16.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_O3", + "uuid": "33be7ec4-c1a2-436f-822d-b9345f1e2398", + "name": "corning_384_wellplate_112ul_flat_O3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 19.305, + "y": 11.675, + "z": 2.79 + }, + "position3d": { + "x": 19.305, + "y": 11.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "O3_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 19.305, + "y": 11.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_P3", + "uuid": "ccfd1d36-db77-46c2-a2c7-75ae97f5ea2f", + "name": "corning_384_wellplate_112ul_flat_P3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 19.305, + "y": 7.175, + "z": 2.79 + }, + "position3d": { + "x": 19.305, + "y": 7.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "P3_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 19.305, + "y": 7.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_A4", + "uuid": "fdbd53c6-b576-4c98-b894-ee0315855c25", + "name": "corning_384_wellplate_112ul_flat_A4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 23.805, + "y": 74.675, + "z": 2.79 + }, + "position3d": { + "x": 23.805, + "y": 74.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A4_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 23.805, + "y": 74.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_B4", + "uuid": "e247bdfd-a65a-40d9-9804-d49af3f0d052", + "name": "corning_384_wellplate_112ul_flat_B4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 23.805, + "y": 70.175, + "z": 2.79 + }, + "position3d": { + "x": 23.805, + "y": 70.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B4_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 23.805, + "y": 70.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_C4", + "uuid": "5d633053-89ce-4c2b-aec4-c9549ac860ef", + "name": "corning_384_wellplate_112ul_flat_C4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 23.805, + "y": 65.675, + "z": 2.79 + }, + "position3d": { + "x": 23.805, + "y": 65.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C4_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 23.805, + "y": 65.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_D4", + "uuid": "4a4b3e4e-529d-4e66-b880-bcff4865f9fb", + "name": "corning_384_wellplate_112ul_flat_D4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 23.805, + "y": 61.175, + "z": 2.79 + }, + "position3d": { + "x": 23.805, + "y": 61.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D4_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 23.805, + "y": 61.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_E4", + "uuid": "b767d5e5-5b44-4659-86f0-a0cf43079ea1", + "name": "corning_384_wellplate_112ul_flat_E4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 23.805, + "y": 56.675, + "z": 2.79 + }, + "position3d": { + "x": 23.805, + "y": 56.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E4_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 23.805, + "y": 56.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_F4", + "uuid": "83f5695a-a59a-4f42-8ccf-e89ace5bd299", + "name": "corning_384_wellplate_112ul_flat_F4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 23.805, + "y": 52.175, + "z": 2.79 + }, + "position3d": { + "x": 23.805, + "y": 52.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F4_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 23.805, + "y": 52.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_G4", + "uuid": "d4666a10-121c-49ff-9c14-8a213a321dc9", + "name": "corning_384_wellplate_112ul_flat_G4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 23.805, + "y": 47.675, + "z": 2.79 + }, + "position3d": { + "x": 23.805, + "y": 47.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G4_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 23.805, + "y": 47.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_H4", + "uuid": "8c4bdb06-6fae-4bad-b131-f03781d0ad8e", + "name": "corning_384_wellplate_112ul_flat_H4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 23.805, + "y": 43.175, + "z": 2.79 + }, + "position3d": { + "x": 23.805, + "y": 43.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H4_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 23.805, + "y": 43.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_I4", + "uuid": "9339dec2-8271-4bba-84d7-276c6f9cb3d0", + "name": "corning_384_wellplate_112ul_flat_I4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 23.805, + "y": 38.675, + "z": 2.79 + }, + "position3d": { + "x": 23.805, + "y": 38.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "I4_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 23.805, + "y": 38.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_J4", + "uuid": "e1fd2694-35b4-434a-8237-ec969624c799", + "name": "corning_384_wellplate_112ul_flat_J4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 23.805, + "y": 34.175, + "z": 2.79 + }, + "position3d": { + "x": 23.805, + "y": 34.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "J4_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 23.805, + "y": 34.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_K4", + "uuid": "086e1e74-6c1d-4592-a3e4-766f091c9d2b", + "name": "corning_384_wellplate_112ul_flat_K4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 23.805, + "y": 29.675, + "z": 2.79 + }, + "position3d": { + "x": 23.805, + "y": 29.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "K4_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 23.805, + "y": 29.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_L4", + "uuid": "317c6214-95d8-47c3-a26e-ee6ef2f8d07f", + "name": "corning_384_wellplate_112ul_flat_L4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 23.805, + "y": 25.175, + "z": 2.79 + }, + "position3d": { + "x": 23.805, + "y": 25.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "L4_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 23.805, + "y": 25.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_M4", + "uuid": "76716a87-4e77-4224-8029-d0567170d6b5", + "name": "corning_384_wellplate_112ul_flat_M4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 23.805, + "y": 20.675, + "z": 2.79 + }, + "position3d": { + "x": 23.805, + "y": 20.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "M4_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 23.805, + "y": 20.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_N4", + "uuid": "6f2c8abf-6033-4624-991c-a1013a55ee4c", + "name": "corning_384_wellplate_112ul_flat_N4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 23.805, + "y": 16.175, + "z": 2.79 + }, + "position3d": { + "x": 23.805, + "y": 16.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "N4_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 23.805, + "y": 16.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_O4", + "uuid": "f73683e4-72e3-4aa7-8b8a-da63afffab83", + "name": "corning_384_wellplate_112ul_flat_O4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 23.805, + "y": 11.675, + "z": 2.79 + }, + "position3d": { + "x": 23.805, + "y": 11.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "O4_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 23.805, + "y": 11.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_P4", + "uuid": "49c97384-4b73-4bc6-9381-00f20336bd7d", + "name": "corning_384_wellplate_112ul_flat_P4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 23.805, + "y": 7.175, + "z": 2.79 + }, + "position3d": { + "x": 23.805, + "y": 7.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "P4_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 23.805, + "y": 7.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_A5", + "uuid": "01b7e975-4588-43df-9bf4-380bda3d9ced", + "name": "corning_384_wellplate_112ul_flat_A5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.305, + "y": 74.675, + "z": 2.79 + }, + "position3d": { + "x": 28.305, + "y": 74.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A5_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.305, + "y": 74.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_B5", + "uuid": "662f1f3c-8233-411c-9d6f-70bd06b0149c", + "name": "corning_384_wellplate_112ul_flat_B5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.305, + "y": 70.175, + "z": 2.79 + }, + "position3d": { + "x": 28.305, + "y": 70.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B5_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.305, + "y": 70.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_C5", + "uuid": "a63cf75c-91a8-4de6-abe8-2efbcbb10a86", + "name": "corning_384_wellplate_112ul_flat_C5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.305, + "y": 65.675, + "z": 2.79 + }, + "position3d": { + "x": 28.305, + "y": 65.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C5_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.305, + "y": 65.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_D5", + "uuid": "450b83f1-9775-4b66-a404-18539fb35398", + "name": "corning_384_wellplate_112ul_flat_D5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.305, + "y": 61.175, + "z": 2.79 + }, + "position3d": { + "x": 28.305, + "y": 61.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D5_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.305, + "y": 61.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_E5", + "uuid": "247ebe40-793b-4c5f-9dbb-297967d2f97b", + "name": "corning_384_wellplate_112ul_flat_E5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.305, + "y": 56.675, + "z": 2.79 + }, + "position3d": { + "x": 28.305, + "y": 56.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E5_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.305, + "y": 56.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_F5", + "uuid": "3ee99a6b-7cb4-4555-b669-f45c842f9189", + "name": "corning_384_wellplate_112ul_flat_F5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.305, + "y": 52.175, + "z": 2.79 + }, + "position3d": { + "x": 28.305, + "y": 52.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F5_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.305, + "y": 52.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_G5", + "uuid": "b8adac84-c74b-408c-b6a4-da7bf6dea19a", + "name": "corning_384_wellplate_112ul_flat_G5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.305, + "y": 47.675, + "z": 2.79 + }, + "position3d": { + "x": 28.305, + "y": 47.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G5_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.305, + "y": 47.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_H5", + "uuid": "29f4e46a-9297-4cba-8a14-26733c736a53", + "name": "corning_384_wellplate_112ul_flat_H5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.305, + "y": 43.175, + "z": 2.79 + }, + "position3d": { + "x": 28.305, + "y": 43.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H5_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.305, + "y": 43.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_I5", + "uuid": "a2d5e9bd-6165-4022-a291-9f2bf8531713", + "name": "corning_384_wellplate_112ul_flat_I5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.305, + "y": 38.675, + "z": 2.79 + }, + "position3d": { + "x": 28.305, + "y": 38.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "I5_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.305, + "y": 38.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_J5", + "uuid": "4bd52839-bced-4db2-8456-8cb97ccc3992", + "name": "corning_384_wellplate_112ul_flat_J5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.305, + "y": 34.175, + "z": 2.79 + }, + "position3d": { + "x": 28.305, + "y": 34.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "J5_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.305, + "y": 34.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_K5", + "uuid": "6e3a4169-87fb-4039-b235-dd06f048ac6e", + "name": "corning_384_wellplate_112ul_flat_K5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.305, + "y": 29.675, + "z": 2.79 + }, + "position3d": { + "x": 28.305, + "y": 29.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "K5_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.305, + "y": 29.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_L5", + "uuid": "f16eb0c0-febe-4943-a20c-c77cad0a97fc", + "name": "corning_384_wellplate_112ul_flat_L5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.305, + "y": 25.175, + "z": 2.79 + }, + "position3d": { + "x": 28.305, + "y": 25.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "L5_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.305, + "y": 25.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_M5", + "uuid": "c9bc0367-f15f-4e3d-b54e-b50ef5710167", + "name": "corning_384_wellplate_112ul_flat_M5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.305, + "y": 20.675, + "z": 2.79 + }, + "position3d": { + "x": 28.305, + "y": 20.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "M5_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.305, + "y": 20.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_N5", + "uuid": "a1f4a159-ea86-49e7-81b5-90bbf8bc19a4", + "name": "corning_384_wellplate_112ul_flat_N5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.305, + "y": 16.175, + "z": 2.79 + }, + "position3d": { + "x": 28.305, + "y": 16.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "N5_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.305, + "y": 16.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_O5", + "uuid": "44a41a20-574d-4dc0-9e5d-b18232512754", + "name": "corning_384_wellplate_112ul_flat_O5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.305, + "y": 11.675, + "z": 2.79 + }, + "position3d": { + "x": 28.305, + "y": 11.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "O5_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.305, + "y": 11.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_P5", + "uuid": "464b6169-95b5-4d7a-94c7-e98d9808fa4c", + "name": "corning_384_wellplate_112ul_flat_P5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.305, + "y": 7.175, + "z": 2.79 + }, + "position3d": { + "x": 28.305, + "y": 7.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "P5_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.305, + "y": 7.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_A6", + "uuid": "4409a63a-5df3-4d08-bc3d-a4c7b2430e63", + "name": "corning_384_wellplate_112ul_flat_A6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 32.805, + "y": 74.675, + "z": 2.79 + }, + "position3d": { + "x": 32.805, + "y": 74.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A6_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 32.805, + "y": 74.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_B6", + "uuid": "b0fd9271-9054-4121-ba9e-922a6d5f8a2c", + "name": "corning_384_wellplate_112ul_flat_B6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 32.805, + "y": 70.175, + "z": 2.79 + }, + "position3d": { + "x": 32.805, + "y": 70.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B6_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 32.805, + "y": 70.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_C6", + "uuid": "4e287433-1597-46bf-8b72-f9caee2f6299", + "name": "corning_384_wellplate_112ul_flat_C6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 32.805, + "y": 65.675, + "z": 2.79 + }, + "position3d": { + "x": 32.805, + "y": 65.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C6_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 32.805, + "y": 65.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_D6", + "uuid": "1d8438de-c6a5-4c2c-b1e2-c7424005406f", + "name": "corning_384_wellplate_112ul_flat_D6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 32.805, + "y": 61.175, + "z": 2.79 + }, + "position3d": { + "x": 32.805, + "y": 61.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D6_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 32.805, + "y": 61.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_E6", + "uuid": "df710d0d-d220-453e-af10-b8784aedf1ba", + "name": "corning_384_wellplate_112ul_flat_E6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 32.805, + "y": 56.675, + "z": 2.79 + }, + "position3d": { + "x": 32.805, + "y": 56.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E6_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 32.805, + "y": 56.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_F6", + "uuid": "232f6d57-26e6-4b2b-8f8c-3934557c89fc", + "name": "corning_384_wellplate_112ul_flat_F6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 32.805, + "y": 52.175, + "z": 2.79 + }, + "position3d": { + "x": 32.805, + "y": 52.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F6_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 32.805, + "y": 52.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_G6", + "uuid": "5a82c437-d19e-4231-a0e3-9972875d5e0c", + "name": "corning_384_wellplate_112ul_flat_G6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 32.805, + "y": 47.675, + "z": 2.79 + }, + "position3d": { + "x": 32.805, + "y": 47.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G6_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 32.805, + "y": 47.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_H6", + "uuid": "af71312f-62ee-40e6-9392-6aea82b42f91", + "name": "corning_384_wellplate_112ul_flat_H6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 32.805, + "y": 43.175, + "z": 2.79 + }, + "position3d": { + "x": 32.805, + "y": 43.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H6_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 32.805, + "y": 43.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_I6", + "uuid": "ce86e66a-224d-4dcb-9d5b-89aa3a994641", + "name": "corning_384_wellplate_112ul_flat_I6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 32.805, + "y": 38.675, + "z": 2.79 + }, + "position3d": { + "x": 32.805, + "y": 38.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "I6_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 32.805, + "y": 38.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_J6", + "uuid": "bbee72f9-e4b7-4c66-b106-a3d441d86586", + "name": "corning_384_wellplate_112ul_flat_J6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 32.805, + "y": 34.175, + "z": 2.79 + }, + "position3d": { + "x": 32.805, + "y": 34.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "J6_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 32.805, + "y": 34.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_K6", + "uuid": "219d7c47-cf5d-4110-90db-fdffec92b34b", + "name": "corning_384_wellplate_112ul_flat_K6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 32.805, + "y": 29.675, + "z": 2.79 + }, + "position3d": { + "x": 32.805, + "y": 29.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "K6_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 32.805, + "y": 29.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_L6", + "uuid": "27e9385c-3d41-45df-a51a-8ccda1e880c3", + "name": "corning_384_wellplate_112ul_flat_L6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 32.805, + "y": 25.175, + "z": 2.79 + }, + "position3d": { + "x": 32.805, + "y": 25.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "L6_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 32.805, + "y": 25.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_M6", + "uuid": "4cb8ea20-8d65-4c77-b05b-e11157142103", + "name": "corning_384_wellplate_112ul_flat_M6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 32.805, + "y": 20.675, + "z": 2.79 + }, + "position3d": { + "x": 32.805, + "y": 20.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "M6_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 32.805, + "y": 20.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_N6", + "uuid": "0240fe74-481f-4513-95ce-179de3f2cf2d", + "name": "corning_384_wellplate_112ul_flat_N6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 32.805, + "y": 16.175, + "z": 2.79 + }, + "position3d": { + "x": 32.805, + "y": 16.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "N6_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 32.805, + "y": 16.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_O6", + "uuid": "bf1c4bdd-1602-4fbe-a9f7-24d6be64effd", + "name": "corning_384_wellplate_112ul_flat_O6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 32.805, + "y": 11.675, + "z": 2.79 + }, + "position3d": { + "x": 32.805, + "y": 11.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "O6_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 32.805, + "y": 11.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_P6", + "uuid": "eaf7f2f7-1d8d-4d3d-a415-a43d4ab85739", + "name": "corning_384_wellplate_112ul_flat_P6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 32.805, + "y": 7.175, + "z": 2.79 + }, + "position3d": { + "x": 32.805, + "y": 7.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "P6_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 32.805, + "y": 7.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_A7", + "uuid": "da252c86-b0e6-4141-b3a5-da6573f7dc4c", + "name": "corning_384_wellplate_112ul_flat_A7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.305, + "y": 74.675, + "z": 2.79 + }, + "position3d": { + "x": 37.305, + "y": 74.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A7_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.305, + "y": 74.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_B7", + "uuid": "c8d04911-9342-49ac-ab95-98231ed264d3", + "name": "corning_384_wellplate_112ul_flat_B7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.305, + "y": 70.175, + "z": 2.79 + }, + "position3d": { + "x": 37.305, + "y": 70.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B7_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.305, + "y": 70.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_C7", + "uuid": "04b4a898-9a3a-40ed-ba89-ff8d83bc25d9", + "name": "corning_384_wellplate_112ul_flat_C7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.305, + "y": 65.675, + "z": 2.79 + }, + "position3d": { + "x": 37.305, + "y": 65.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C7_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.305, + "y": 65.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_D7", + "uuid": "461468be-ebaf-4aed-9821-b2f764a30bb1", + "name": "corning_384_wellplate_112ul_flat_D7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.305, + "y": 61.175, + "z": 2.79 + }, + "position3d": { + "x": 37.305, + "y": 61.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D7_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.305, + "y": 61.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_E7", + "uuid": "ebefd96e-e237-4781-9e52-042b47b0a22b", + "name": "corning_384_wellplate_112ul_flat_E7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.305, + "y": 56.675, + "z": 2.79 + }, + "position3d": { + "x": 37.305, + "y": 56.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E7_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.305, + "y": 56.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_F7", + "uuid": "f42e3ede-da4f-4dce-97eb-66eac05e33bc", + "name": "corning_384_wellplate_112ul_flat_F7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.305, + "y": 52.175, + "z": 2.79 + }, + "position3d": { + "x": 37.305, + "y": 52.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F7_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.305, + "y": 52.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_G7", + "uuid": "c98063b5-9004-4324-805d-5668e7380a72", + "name": "corning_384_wellplate_112ul_flat_G7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.305, + "y": 47.675, + "z": 2.79 + }, + "position3d": { + "x": 37.305, + "y": 47.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G7_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.305, + "y": 47.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_H7", + "uuid": "ae8cc94f-add3-4ae2-991e-3596bc7ad065", + "name": "corning_384_wellplate_112ul_flat_H7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.305, + "y": 43.175, + "z": 2.79 + }, + "position3d": { + "x": 37.305, + "y": 43.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H7_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.305, + "y": 43.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_I7", + "uuid": "e0f41dac-5a09-49e3-aa8b-40ed13f4df8e", + "name": "corning_384_wellplate_112ul_flat_I7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.305, + "y": 38.675, + "z": 2.79 + }, + "position3d": { + "x": 37.305, + "y": 38.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "I7_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.305, + "y": 38.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_J7", + "uuid": "02e4fd11-6806-45ea-9124-5bce35f1a161", + "name": "corning_384_wellplate_112ul_flat_J7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.305, + "y": 34.175, + "z": 2.79 + }, + "position3d": { + "x": 37.305, + "y": 34.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "J7_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.305, + "y": 34.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_K7", + "uuid": "0248ed20-017d-40ae-97b6-1bb82eb958de", + "name": "corning_384_wellplate_112ul_flat_K7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.305, + "y": 29.675, + "z": 2.79 + }, + "position3d": { + "x": 37.305, + "y": 29.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "K7_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.305, + "y": 29.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_L7", + "uuid": "45d254c3-a476-4615-bdf0-45d53a4235bc", + "name": "corning_384_wellplate_112ul_flat_L7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.305, + "y": 25.175, + "z": 2.79 + }, + "position3d": { + "x": 37.305, + "y": 25.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "L7_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.305, + "y": 25.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_M7", + "uuid": "00cf4b92-bcab-4846-8a98-b54ce5ad91ed", + "name": "corning_384_wellplate_112ul_flat_M7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.305, + "y": 20.675, + "z": 2.79 + }, + "position3d": { + "x": 37.305, + "y": 20.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "M7_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.305, + "y": 20.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_N7", + "uuid": "0f72c287-b2ef-46ed-bb56-d20e4abdebdc", + "name": "corning_384_wellplate_112ul_flat_N7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.305, + "y": 16.175, + "z": 2.79 + }, + "position3d": { + "x": 37.305, + "y": 16.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "N7_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.305, + "y": 16.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_O7", + "uuid": "120025d0-394c-4281-87dc-d9ec5445d4ea", + "name": "corning_384_wellplate_112ul_flat_O7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.305, + "y": 11.675, + "z": 2.79 + }, + "position3d": { + "x": 37.305, + "y": 11.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "O7_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.305, + "y": 11.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_P7", + "uuid": "5319a60d-f8cc-4113-817e-5cfb64934596", + "name": "corning_384_wellplate_112ul_flat_P7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.305, + "y": 7.175, + "z": 2.79 + }, + "position3d": { + "x": 37.305, + "y": 7.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "P7_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.305, + "y": 7.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_A8", + "uuid": "ba14ebe1-0bef-4d08-94b0-5772932c4b31", + "name": "corning_384_wellplate_112ul_flat_A8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 41.805, + "y": 74.675, + "z": 2.79 + }, + "position3d": { + "x": 41.805, + "y": 74.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A8_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 41.805, + "y": 74.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_B8", + "uuid": "e14aa10a-9727-4217-9f48-f146b61c65c2", + "name": "corning_384_wellplate_112ul_flat_B8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 41.805, + "y": 70.175, + "z": 2.79 + }, + "position3d": { + "x": 41.805, + "y": 70.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B8_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 41.805, + "y": 70.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_C8", + "uuid": "4d6c584a-9fd6-4bd9-8c79-fe661cdc960b", + "name": "corning_384_wellplate_112ul_flat_C8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 41.805, + "y": 65.675, + "z": 2.79 + }, + "position3d": { + "x": 41.805, + "y": 65.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C8_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 41.805, + "y": 65.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_D8", + "uuid": "10ddb46b-d3f6-4885-a2dd-ab6c81b4b651", + "name": "corning_384_wellplate_112ul_flat_D8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 41.805, + "y": 61.175, + "z": 2.79 + }, + "position3d": { + "x": 41.805, + "y": 61.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D8_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 41.805, + "y": 61.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_E8", + "uuid": "f0977a8a-509a-42d0-bb3d-ccc26a735329", + "name": "corning_384_wellplate_112ul_flat_E8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 41.805, + "y": 56.675, + "z": 2.79 + }, + "position3d": { + "x": 41.805, + "y": 56.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E8_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 41.805, + "y": 56.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_F8", + "uuid": "8ff535ba-796f-4fac-8768-eb3e11335cd9", + "name": "corning_384_wellplate_112ul_flat_F8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 41.805, + "y": 52.175, + "z": 2.79 + }, + "position3d": { + "x": 41.805, + "y": 52.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F8_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 41.805, + "y": 52.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_G8", + "uuid": "8ce51e7d-a6bc-4d17-8eb8-cb8863e8a016", + "name": "corning_384_wellplate_112ul_flat_G8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 41.805, + "y": 47.675, + "z": 2.79 + }, + "position3d": { + "x": 41.805, + "y": 47.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G8_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 41.805, + "y": 47.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_H8", + "uuid": "28ddf2f4-357b-4afd-8c7d-cdf92c0e1da5", + "name": "corning_384_wellplate_112ul_flat_H8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 41.805, + "y": 43.175, + "z": 2.79 + }, + "position3d": { + "x": 41.805, + "y": 43.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H8_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 41.805, + "y": 43.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_I8", + "uuid": "a5b9f4f9-6997-49b8-a31f-f3f49468b1e7", + "name": "corning_384_wellplate_112ul_flat_I8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 41.805, + "y": 38.675, + "z": 2.79 + }, + "position3d": { + "x": 41.805, + "y": 38.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "I8_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 41.805, + "y": 38.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_J8", + "uuid": "92d1c720-be5f-4216-8582-cd59ed066208", + "name": "corning_384_wellplate_112ul_flat_J8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 41.805, + "y": 34.175, + "z": 2.79 + }, + "position3d": { + "x": 41.805, + "y": 34.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "J8_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 41.805, + "y": 34.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_K8", + "uuid": "d5232181-3d8c-492e-9e41-937414a6f8ca", + "name": "corning_384_wellplate_112ul_flat_K8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 41.805, + "y": 29.675, + "z": 2.79 + }, + "position3d": { + "x": 41.805, + "y": 29.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "K8_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 41.805, + "y": 29.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_L8", + "uuid": "8de403a2-987c-483d-9f6d-98036b72537e", + "name": "corning_384_wellplate_112ul_flat_L8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 41.805, + "y": 25.175, + "z": 2.79 + }, + "position3d": { + "x": 41.805, + "y": 25.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "L8_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 41.805, + "y": 25.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_M8", + "uuid": "3f2bbe54-04bc-4f45-8a5d-9085e804c4b4", + "name": "corning_384_wellplate_112ul_flat_M8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 41.805, + "y": 20.675, + "z": 2.79 + }, + "position3d": { + "x": 41.805, + "y": 20.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "M8_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 41.805, + "y": 20.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_N8", + "uuid": "ab19b973-a476-4192-a8e3-c9e84b15e2f2", + "name": "corning_384_wellplate_112ul_flat_N8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 41.805, + "y": 16.175, + "z": 2.79 + }, + "position3d": { + "x": 41.805, + "y": 16.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "N8_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 41.805, + "y": 16.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_O8", + "uuid": "c61afd28-3c4b-45fc-9710-045674673fa0", + "name": "corning_384_wellplate_112ul_flat_O8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 41.805, + "y": 11.675, + "z": 2.79 + }, + "position3d": { + "x": 41.805, + "y": 11.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "O8_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 41.805, + "y": 11.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_P8", + "uuid": "2862506c-a345-4466-9425-015b86f9fc3c", + "name": "corning_384_wellplate_112ul_flat_P8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 41.805, + "y": 7.175, + "z": 2.79 + }, + "position3d": { + "x": 41.805, + "y": 7.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "P8_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 41.805, + "y": 7.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_A9", + "uuid": "5263400c-0d33-4cb1-bfb3-1f402cda4934", + "name": "corning_384_wellplate_112ul_flat_A9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.305, + "y": 74.675, + "z": 2.79 + }, + "position3d": { + "x": 46.305, + "y": 74.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A9_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.305, + "y": 74.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_B9", + "uuid": "a43326f5-a4f6-4004-a954-479ab3b4bfdc", + "name": "corning_384_wellplate_112ul_flat_B9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.305, + "y": 70.175, + "z": 2.79 + }, + "position3d": { + "x": 46.305, + "y": 70.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B9_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.305, + "y": 70.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_C9", + "uuid": "1794e812-35d1-4755-bd8b-e9231af97120", + "name": "corning_384_wellplate_112ul_flat_C9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.305, + "y": 65.675, + "z": 2.79 + }, + "position3d": { + "x": 46.305, + "y": 65.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C9_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.305, + "y": 65.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_D9", + "uuid": "cb4d960c-c3dc-4563-a28a-2742a781c3d1", + "name": "corning_384_wellplate_112ul_flat_D9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.305, + "y": 61.175, + "z": 2.79 + }, + "position3d": { + "x": 46.305, + "y": 61.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D9_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.305, + "y": 61.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_E9", + "uuid": "44775106-6040-4075-9747-a2f8dd00cb31", + "name": "corning_384_wellplate_112ul_flat_E9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.305, + "y": 56.675, + "z": 2.79 + }, + "position3d": { + "x": 46.305, + "y": 56.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E9_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.305, + "y": 56.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_F9", + "uuid": "caedb4f7-0ae8-4b48-98eb-22771e0d6a5c", + "name": "corning_384_wellplate_112ul_flat_F9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.305, + "y": 52.175, + "z": 2.79 + }, + "position3d": { + "x": 46.305, + "y": 52.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F9_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.305, + "y": 52.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_G9", + "uuid": "5286b019-dce1-4a98-aa30-56dc87cfc744", + "name": "corning_384_wellplate_112ul_flat_G9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.305, + "y": 47.675, + "z": 2.79 + }, + "position3d": { + "x": 46.305, + "y": 47.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G9_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.305, + "y": 47.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_H9", + "uuid": "2d519336-4da7-443f-8603-402fcd9a86a1", + "name": "corning_384_wellplate_112ul_flat_H9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.305, + "y": 43.175, + "z": 2.79 + }, + "position3d": { + "x": 46.305, + "y": 43.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H9_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.305, + "y": 43.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_I9", + "uuid": "e4f64eca-4af5-412e-9181-ae7b269d048b", + "name": "corning_384_wellplate_112ul_flat_I9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.305, + "y": 38.675, + "z": 2.79 + }, + "position3d": { + "x": 46.305, + "y": 38.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "I9_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.305, + "y": 38.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_J9", + "uuid": "55e0f2dc-797a-4002-97f0-a270e7a65671", + "name": "corning_384_wellplate_112ul_flat_J9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.305, + "y": 34.175, + "z": 2.79 + }, + "position3d": { + "x": 46.305, + "y": 34.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "J9_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.305, + "y": 34.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_K9", + "uuid": "8afc264c-7ba5-46ec-a8b7-794ca3c33c51", + "name": "corning_384_wellplate_112ul_flat_K9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.305, + "y": 29.675, + "z": 2.79 + }, + "position3d": { + "x": 46.305, + "y": 29.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "K9_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.305, + "y": 29.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_L9", + "uuid": "697152e8-14f7-4e49-9d4d-4f68a4ce06cc", + "name": "corning_384_wellplate_112ul_flat_L9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.305, + "y": 25.175, + "z": 2.79 + }, + "position3d": { + "x": 46.305, + "y": 25.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "L9_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.305, + "y": 25.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_M9", + "uuid": "46c9a0ed-628f-4f02-8817-fce22cf2fe36", + "name": "corning_384_wellplate_112ul_flat_M9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.305, + "y": 20.675, + "z": 2.79 + }, + "position3d": { + "x": 46.305, + "y": 20.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "M9_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.305, + "y": 20.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_N9", + "uuid": "3a581333-e6a8-45e1-b68d-7f271de021e5", + "name": "corning_384_wellplate_112ul_flat_N9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.305, + "y": 16.175, + "z": 2.79 + }, + "position3d": { + "x": 46.305, + "y": 16.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "N9_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.305, + "y": 16.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_O9", + "uuid": "8b173f2b-916f-4c14-8cc6-126c8d01803f", + "name": "corning_384_wellplate_112ul_flat_O9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.305, + "y": 11.675, + "z": 2.79 + }, + "position3d": { + "x": 46.305, + "y": 11.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "O9_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.305, + "y": 11.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_P9", + "uuid": "7cbc7a1b-f039-417b-8205-6c25a9109664", + "name": "corning_384_wellplate_112ul_flat_P9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.305, + "y": 7.175, + "z": 2.79 + }, + "position3d": { + "x": 46.305, + "y": 7.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "P9_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.305, + "y": 7.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_A10", + "uuid": "5088333d-54a7-4eb0-8d15-858738fcf63b", + "name": "corning_384_wellplate_112ul_flat_A10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 50.805, + "y": 74.675, + "z": 2.79 + }, + "position3d": { + "x": 50.805, + "y": 74.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A10_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 50.805, + "y": 74.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_B10", + "uuid": "574d7e86-8921-462a-bb3b-7108c074de82", + "name": "corning_384_wellplate_112ul_flat_B10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 50.805, + "y": 70.175, + "z": 2.79 + }, + "position3d": { + "x": 50.805, + "y": 70.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B10_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 50.805, + "y": 70.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_C10", + "uuid": "45f5df94-bef8-4cbc-abe3-8f0345c4bcd9", + "name": "corning_384_wellplate_112ul_flat_C10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 50.805, + "y": 65.675, + "z": 2.79 + }, + "position3d": { + "x": 50.805, + "y": 65.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C10_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 50.805, + "y": 65.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_D10", + "uuid": "b70206e0-837f-4b94-a853-df603aa46bc3", + "name": "corning_384_wellplate_112ul_flat_D10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 50.805, + "y": 61.175, + "z": 2.79 + }, + "position3d": { + "x": 50.805, + "y": 61.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D10_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 50.805, + "y": 61.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_E10", + "uuid": "3a0ed40c-c10f-487b-b9e2-c30bb9c85890", + "name": "corning_384_wellplate_112ul_flat_E10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 50.805, + "y": 56.675, + "z": 2.79 + }, + "position3d": { + "x": 50.805, + "y": 56.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E10_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 50.805, + "y": 56.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_F10", + "uuid": "1539c5c1-066e-4b85-8213-39364dd187a0", + "name": "corning_384_wellplate_112ul_flat_F10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 50.805, + "y": 52.175, + "z": 2.79 + }, + "position3d": { + "x": 50.805, + "y": 52.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F10_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 50.805, + "y": 52.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_G10", + "uuid": "c981826a-c549-48b0-b468-210c4d5e908e", + "name": "corning_384_wellplate_112ul_flat_G10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 50.805, + "y": 47.675, + "z": 2.79 + }, + "position3d": { + "x": 50.805, + "y": 47.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G10_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 50.805, + "y": 47.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_H10", + "uuid": "66a5d6c4-2861-4f7a-90c3-b7c36051588f", + "name": "corning_384_wellplate_112ul_flat_H10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 50.805, + "y": 43.175, + "z": 2.79 + }, + "position3d": { + "x": 50.805, + "y": 43.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H10_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 50.805, + "y": 43.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_I10", + "uuid": "40f94589-c5cd-42dc-a42c-b003f7df6dbf", + "name": "corning_384_wellplate_112ul_flat_I10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 50.805, + "y": 38.675, + "z": 2.79 + }, + "position3d": { + "x": 50.805, + "y": 38.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "I10_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 50.805, + "y": 38.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_J10", + "uuid": "6e501b9d-a9ff-4c02-a679-6c54d7b872c7", + "name": "corning_384_wellplate_112ul_flat_J10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 50.805, + "y": 34.175, + "z": 2.79 + }, + "position3d": { + "x": 50.805, + "y": 34.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "J10_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 50.805, + "y": 34.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_K10", + "uuid": "8b1a145d-85dc-4be5-952e-a81e8effa89f", + "name": "corning_384_wellplate_112ul_flat_K10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 50.805, + "y": 29.675, + "z": 2.79 + }, + "position3d": { + "x": 50.805, + "y": 29.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "K10_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 50.805, + "y": 29.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_L10", + "uuid": "0436bfa8-e0bb-40aa-a736-3480db3d6ba0", + "name": "corning_384_wellplate_112ul_flat_L10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 50.805, + "y": 25.175, + "z": 2.79 + }, + "position3d": { + "x": 50.805, + "y": 25.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "L10_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 50.805, + "y": 25.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_M10", + "uuid": "288ff5f9-2ea6-4ee5-b3d0-7dfb12b8ffe9", + "name": "corning_384_wellplate_112ul_flat_M10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 50.805, + "y": 20.675, + "z": 2.79 + }, + "position3d": { + "x": 50.805, + "y": 20.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "M10_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 50.805, + "y": 20.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_N10", + "uuid": "5f0b36d2-a14d-4fc4-bb41-f3b868a4647e", + "name": "corning_384_wellplate_112ul_flat_N10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 50.805, + "y": 16.175, + "z": 2.79 + }, + "position3d": { + "x": 50.805, + "y": 16.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "N10_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 50.805, + "y": 16.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_O10", + "uuid": "d68a749a-33e8-4eb1-a19d-f69e4aa04fdb", + "name": "corning_384_wellplate_112ul_flat_O10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 50.805, + "y": 11.675, + "z": 2.79 + }, + "position3d": { + "x": 50.805, + "y": 11.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "O10_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 50.805, + "y": 11.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_P10", + "uuid": "84559a03-9723-4589-bcba-4fe36506ada9", + "name": "corning_384_wellplate_112ul_flat_P10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 50.805, + "y": 7.175, + "z": 2.79 + }, + "position3d": { + "x": 50.805, + "y": 7.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "P10_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 50.805, + "y": 7.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_A11", + "uuid": "1d3905da-d794-4bdf-a2bb-db3fab771c62", + "name": "corning_384_wellplate_112ul_flat_A11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.305, + "y": 74.675, + "z": 2.79 + }, + "position3d": { + "x": 55.305, + "y": 74.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A11_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.305, + "y": 74.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_B11", + "uuid": "57e4de6b-5333-4491-b810-ae08492aebe0", + "name": "corning_384_wellplate_112ul_flat_B11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.305, + "y": 70.175, + "z": 2.79 + }, + "position3d": { + "x": 55.305, + "y": 70.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B11_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.305, + "y": 70.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_C11", + "uuid": "4f38d12e-c601-4ed4-b2e0-3189101525f5", + "name": "corning_384_wellplate_112ul_flat_C11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.305, + "y": 65.675, + "z": 2.79 + }, + "position3d": { + "x": 55.305, + "y": 65.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C11_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.305, + "y": 65.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_D11", + "uuid": "5d60df6a-25e2-460a-9d3b-a9f867a2f5e8", + "name": "corning_384_wellplate_112ul_flat_D11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.305, + "y": 61.175, + "z": 2.79 + }, + "position3d": { + "x": 55.305, + "y": 61.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D11_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.305, + "y": 61.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_E11", + "uuid": "fc9a551e-06f8-4311-9fe4-eae4d487a7da", + "name": "corning_384_wellplate_112ul_flat_E11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.305, + "y": 56.675, + "z": 2.79 + }, + "position3d": { + "x": 55.305, + "y": 56.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E11_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.305, + "y": 56.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_F11", + "uuid": "e93515cb-9179-4999-8826-1ea33d7d5935", + "name": "corning_384_wellplate_112ul_flat_F11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.305, + "y": 52.175, + "z": 2.79 + }, + "position3d": { + "x": 55.305, + "y": 52.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F11_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.305, + "y": 52.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_G11", + "uuid": "6e5c470c-3f2c-4dbd-997b-34de61ccedee", + "name": "corning_384_wellplate_112ul_flat_G11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.305, + "y": 47.675, + "z": 2.79 + }, + "position3d": { + "x": 55.305, + "y": 47.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G11_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.305, + "y": 47.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_H11", + "uuid": "295ba598-26c1-4b5f-8f91-e6ee0d54b732", + "name": "corning_384_wellplate_112ul_flat_H11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.305, + "y": 43.175, + "z": 2.79 + }, + "position3d": { + "x": 55.305, + "y": 43.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H11_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.305, + "y": 43.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_I11", + "uuid": "fba5ca0b-f150-4980-916f-43b630705635", + "name": "corning_384_wellplate_112ul_flat_I11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.305, + "y": 38.675, + "z": 2.79 + }, + "position3d": { + "x": 55.305, + "y": 38.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "I11_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.305, + "y": 38.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_J11", + "uuid": "f537e219-747f-4c4f-aa3f-f81044088cb2", + "name": "corning_384_wellplate_112ul_flat_J11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.305, + "y": 34.175, + "z": 2.79 + }, + "position3d": { + "x": 55.305, + "y": 34.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "J11_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.305, + "y": 34.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_K11", + "uuid": "8daa5862-a672-46bb-bb87-1df0b1beee2f", + "name": "corning_384_wellplate_112ul_flat_K11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.305, + "y": 29.675, + "z": 2.79 + }, + "position3d": { + "x": 55.305, + "y": 29.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "K11_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.305, + "y": 29.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_L11", + "uuid": "701d431a-6d1d-4320-b5d6-87fe7fd23b97", + "name": "corning_384_wellplate_112ul_flat_L11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.305, + "y": 25.175, + "z": 2.79 + }, + "position3d": { + "x": 55.305, + "y": 25.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "L11_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.305, + "y": 25.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_M11", + "uuid": "a3c116c0-6e0d-4a85-b1a5-a0a69608e685", + "name": "corning_384_wellplate_112ul_flat_M11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.305, + "y": 20.675, + "z": 2.79 + }, + "position3d": { + "x": 55.305, + "y": 20.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "M11_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.305, + "y": 20.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_N11", + "uuid": "3d41310d-6ed5-4e11-91e8-ada13d62c333", + "name": "corning_384_wellplate_112ul_flat_N11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.305, + "y": 16.175, + "z": 2.79 + }, + "position3d": { + "x": 55.305, + "y": 16.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "N11_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.305, + "y": 16.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_O11", + "uuid": "3ad518bc-8f08-4ee6-89d4-2e06caebe32c", + "name": "corning_384_wellplate_112ul_flat_O11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.305, + "y": 11.675, + "z": 2.79 + }, + "position3d": { + "x": 55.305, + "y": 11.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "O11_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.305, + "y": 11.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_P11", + "uuid": "7ac20c5d-97d2-45f6-8123-29db7f7fd9c5", + "name": "corning_384_wellplate_112ul_flat_P11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.305, + "y": 7.175, + "z": 2.79 + }, + "position3d": { + "x": 55.305, + "y": 7.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "P11_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.305, + "y": 7.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_A12", + "uuid": "807e07d1-864f-4c33-a839-e8a425385296", + "name": "corning_384_wellplate_112ul_flat_A12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 59.805, + "y": 74.675, + "z": 2.79 + }, + "position3d": { + "x": 59.805, + "y": 74.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A12_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 59.805, + "y": 74.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_B12", + "uuid": "fc979930-b4a7-444b-adf0-ffcddc2bb5f3", + "name": "corning_384_wellplate_112ul_flat_B12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 59.805, + "y": 70.175, + "z": 2.79 + }, + "position3d": { + "x": 59.805, + "y": 70.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B12_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 59.805, + "y": 70.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_C12", + "uuid": "1ffacbaa-beeb-48f2-b771-be65ce6b8c48", + "name": "corning_384_wellplate_112ul_flat_C12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 59.805, + "y": 65.675, + "z": 2.79 + }, + "position3d": { + "x": 59.805, + "y": 65.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C12_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 59.805, + "y": 65.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_D12", + "uuid": "9908cab3-3dbb-472e-9251-5912f89ce6be", + "name": "corning_384_wellplate_112ul_flat_D12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 59.805, + "y": 61.175, + "z": 2.79 + }, + "position3d": { + "x": 59.805, + "y": 61.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D12_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 59.805, + "y": 61.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_E12", + "uuid": "798bdbd6-b58e-411e-91be-61db580ea5c4", + "name": "corning_384_wellplate_112ul_flat_E12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 59.805, + "y": 56.675, + "z": 2.79 + }, + "position3d": { + "x": 59.805, + "y": 56.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E12_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 59.805, + "y": 56.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_F12", + "uuid": "a3019070-e4b2-46f2-885b-6f89ffc59a5f", + "name": "corning_384_wellplate_112ul_flat_F12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 59.805, + "y": 52.175, + "z": 2.79 + }, + "position3d": { + "x": 59.805, + "y": 52.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F12_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 59.805, + "y": 52.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_G12", + "uuid": "9aec6ee4-dd33-4ea4-84f6-f2c93832fb08", + "name": "corning_384_wellplate_112ul_flat_G12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 59.805, + "y": 47.675, + "z": 2.79 + }, + "position3d": { + "x": 59.805, + "y": 47.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G12_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 59.805, + "y": 47.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_H12", + "uuid": "6b86ea88-c05d-4634-9648-954c9250417c", + "name": "corning_384_wellplate_112ul_flat_H12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 59.805, + "y": 43.175, + "z": 2.79 + }, + "position3d": { + "x": 59.805, + "y": 43.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H12_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 59.805, + "y": 43.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_I12", + "uuid": "257a29e6-0de9-4e60-a9c5-343e150bf17c", + "name": "corning_384_wellplate_112ul_flat_I12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 59.805, + "y": 38.675, + "z": 2.79 + }, + "position3d": { + "x": 59.805, + "y": 38.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "I12_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 59.805, + "y": 38.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_J12", + "uuid": "c7997150-f465-4e07-b1c3-1ab37e2b9799", + "name": "corning_384_wellplate_112ul_flat_J12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 59.805, + "y": 34.175, + "z": 2.79 + }, + "position3d": { + "x": 59.805, + "y": 34.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "J12_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 59.805, + "y": 34.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_K12", + "uuid": "78b15ebe-ba29-49c0-8dad-b5d0ec2c57b9", + "name": "corning_384_wellplate_112ul_flat_K12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 59.805, + "y": 29.675, + "z": 2.79 + }, + "position3d": { + "x": 59.805, + "y": 29.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "K12_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 59.805, + "y": 29.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_L12", + "uuid": "0315cdb8-86db-4657-8b32-dd4aa0076b79", + "name": "corning_384_wellplate_112ul_flat_L12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 59.805, + "y": 25.175, + "z": 2.79 + }, + "position3d": { + "x": 59.805, + "y": 25.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "L12_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 59.805, + "y": 25.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_M12", + "uuid": "c7cb797a-1746-48fb-a85f-25cc466f5a6f", + "name": "corning_384_wellplate_112ul_flat_M12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 59.805, + "y": 20.675, + "z": 2.79 + }, + "position3d": { + "x": 59.805, + "y": 20.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "M12_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 59.805, + "y": 20.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_N12", + "uuid": "e9745eea-8f50-4728-854e-1af9ac9c653b", + "name": "corning_384_wellplate_112ul_flat_N12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 59.805, + "y": 16.175, + "z": 2.79 + }, + "position3d": { + "x": 59.805, + "y": 16.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "N12_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 59.805, + "y": 16.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_O12", + "uuid": "792fbce2-9d14-4e88-9936-368f66159e94", + "name": "corning_384_wellplate_112ul_flat_O12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 59.805, + "y": 11.675, + "z": 2.79 + }, + "position3d": { + "x": 59.805, + "y": 11.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "O12_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 59.805, + "y": 11.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_P12", + "uuid": "1c412fcb-1583-4026-9144-75e7606915a7", + "name": "corning_384_wellplate_112ul_flat_P12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 59.805, + "y": 7.175, + "z": 2.79 + }, + "position3d": { + "x": 59.805, + "y": 7.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "P12_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 59.805, + "y": 7.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_A13", + "uuid": "aae4563f-50fe-45c1-91c7-45328c836cf0", + "name": "corning_384_wellplate_112ul_flat_A13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.305, + "y": 74.675, + "z": 2.79 + }, + "position3d": { + "x": 64.305, + "y": 74.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A13_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.305, + "y": 74.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_B13", + "uuid": "1b8d3485-8e57-4118-98ae-994710591f46", + "name": "corning_384_wellplate_112ul_flat_B13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.305, + "y": 70.175, + "z": 2.79 + }, + "position3d": { + "x": 64.305, + "y": 70.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B13_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.305, + "y": 70.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_C13", + "uuid": "effe12b5-56b4-4a8f-8ad3-25927a3c9e1c", + "name": "corning_384_wellplate_112ul_flat_C13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.305, + "y": 65.675, + "z": 2.79 + }, + "position3d": { + "x": 64.305, + "y": 65.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C13_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.305, + "y": 65.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_D13", + "uuid": "548c48b5-ef60-4f26-9941-47728b3798dd", + "name": "corning_384_wellplate_112ul_flat_D13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.305, + "y": 61.175, + "z": 2.79 + }, + "position3d": { + "x": 64.305, + "y": 61.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D13_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.305, + "y": 61.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_E13", + "uuid": "5a4e0a64-2fea-4ace-a926-71104a70d8f2", + "name": "corning_384_wellplate_112ul_flat_E13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.305, + "y": 56.675, + "z": 2.79 + }, + "position3d": { + "x": 64.305, + "y": 56.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E13_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.305, + "y": 56.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_F13", + "uuid": "641288ad-c886-4e89-80ff-ada969576427", + "name": "corning_384_wellplate_112ul_flat_F13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.305, + "y": 52.175, + "z": 2.79 + }, + "position3d": { + "x": 64.305, + "y": 52.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F13_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.305, + "y": 52.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_G13", + "uuid": "d9f0963f-831f-4108-8099-576703434159", + "name": "corning_384_wellplate_112ul_flat_G13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.305, + "y": 47.675, + "z": 2.79 + }, + "position3d": { + "x": 64.305, + "y": 47.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G13_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.305, + "y": 47.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_H13", + "uuid": "ff952287-f635-4e5d-b686-bd3769ee0e10", + "name": "corning_384_wellplate_112ul_flat_H13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.305, + "y": 43.175, + "z": 2.79 + }, + "position3d": { + "x": 64.305, + "y": 43.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H13_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.305, + "y": 43.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_I13", + "uuid": "720e4704-7965-4716-97d0-584d926f19ed", + "name": "corning_384_wellplate_112ul_flat_I13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.305, + "y": 38.675, + "z": 2.79 + }, + "position3d": { + "x": 64.305, + "y": 38.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "I13_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.305, + "y": 38.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_J13", + "uuid": "39db5814-1880-4dac-aaea-eef1dd512c10", + "name": "corning_384_wellplate_112ul_flat_J13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.305, + "y": 34.175, + "z": 2.79 + }, + "position3d": { + "x": 64.305, + "y": 34.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "J13_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.305, + "y": 34.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_K13", + "uuid": "1b712dd5-efee-47ac-a8ca-385fe3c03f87", + "name": "corning_384_wellplate_112ul_flat_K13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.305, + "y": 29.675, + "z": 2.79 + }, + "position3d": { + "x": 64.305, + "y": 29.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "K13_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.305, + "y": 29.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_L13", + "uuid": "e63e610c-0a80-4201-85bf-28a06de93686", + "name": "corning_384_wellplate_112ul_flat_L13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.305, + "y": 25.175, + "z": 2.79 + }, + "position3d": { + "x": 64.305, + "y": 25.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "L13_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.305, + "y": 25.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_M13", + "uuid": "0a33910a-196c-4037-bd2c-8b92ffcc0850", + "name": "corning_384_wellplate_112ul_flat_M13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.305, + "y": 20.675, + "z": 2.79 + }, + "position3d": { + "x": 64.305, + "y": 20.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "M13_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.305, + "y": 20.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_N13", + "uuid": "fc0cde1e-baca-42b5-9890-377f46a4ce39", + "name": "corning_384_wellplate_112ul_flat_N13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.305, + "y": 16.175, + "z": 2.79 + }, + "position3d": { + "x": 64.305, + "y": 16.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "N13_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.305, + "y": 16.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_O13", + "uuid": "199c7474-87a8-4cad-a20e-1b0be954c34d", + "name": "corning_384_wellplate_112ul_flat_O13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.305, + "y": 11.675, + "z": 2.79 + }, + "position3d": { + "x": 64.305, + "y": 11.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "O13_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.305, + "y": 11.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_P13", + "uuid": "9a6e0d53-cf92-4b25-ab5b-7c5765dde8e5", + "name": "corning_384_wellplate_112ul_flat_P13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.305, + "y": 7.175, + "z": 2.79 + }, + "position3d": { + "x": 64.305, + "y": 7.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "P13_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.305, + "y": 7.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_A14", + "uuid": "d1411850-5b89-44fe-8b30-d4dae012faae", + "name": "corning_384_wellplate_112ul_flat_A14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 68.805, + "y": 74.675, + "z": 2.79 + }, + "position3d": { + "x": 68.805, + "y": 74.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A14_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 68.805, + "y": 74.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_B14", + "uuid": "dcbb524b-2580-4288-acf4-b362886e1253", + "name": "corning_384_wellplate_112ul_flat_B14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 68.805, + "y": 70.175, + "z": 2.79 + }, + "position3d": { + "x": 68.805, + "y": 70.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B14_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 68.805, + "y": 70.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_C14", + "uuid": "2a08edb7-43c5-403b-923a-5f893a685cd1", + "name": "corning_384_wellplate_112ul_flat_C14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 68.805, + "y": 65.675, + "z": 2.79 + }, + "position3d": { + "x": 68.805, + "y": 65.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C14_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 68.805, + "y": 65.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_D14", + "uuid": "b7191f01-b113-4e32-ba35-08b97a5e4e46", + "name": "corning_384_wellplate_112ul_flat_D14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 68.805, + "y": 61.175, + "z": 2.79 + }, + "position3d": { + "x": 68.805, + "y": 61.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D14_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 68.805, + "y": 61.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_E14", + "uuid": "7246b14c-440e-437b-bf9e-998a86832df5", + "name": "corning_384_wellplate_112ul_flat_E14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 68.805, + "y": 56.675, + "z": 2.79 + }, + "position3d": { + "x": 68.805, + "y": 56.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E14_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 68.805, + "y": 56.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_F14", + "uuid": "12c4d00f-9630-4211-a277-8ecc0dacf73e", + "name": "corning_384_wellplate_112ul_flat_F14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 68.805, + "y": 52.175, + "z": 2.79 + }, + "position3d": { + "x": 68.805, + "y": 52.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F14_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 68.805, + "y": 52.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_G14", + "uuid": "d5cfac57-7ffb-45b7-91df-0e397afdb497", + "name": "corning_384_wellplate_112ul_flat_G14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 68.805, + "y": 47.675, + "z": 2.79 + }, + "position3d": { + "x": 68.805, + "y": 47.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G14_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 68.805, + "y": 47.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_H14", + "uuid": "3106e0d4-2ddf-4de5-b27e-d70b3bcfb1d0", + "name": "corning_384_wellplate_112ul_flat_H14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 68.805, + "y": 43.175, + "z": 2.79 + }, + "position3d": { + "x": 68.805, + "y": 43.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H14_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 68.805, + "y": 43.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_I14", + "uuid": "279c517d-2f27-4b9d-995b-97e081589ebf", + "name": "corning_384_wellplate_112ul_flat_I14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 68.805, + "y": 38.675, + "z": 2.79 + }, + "position3d": { + "x": 68.805, + "y": 38.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "I14_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 68.805, + "y": 38.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_J14", + "uuid": "275c38b1-4dd5-4e6c-926f-b20a10ab5d51", + "name": "corning_384_wellplate_112ul_flat_J14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 68.805, + "y": 34.175, + "z": 2.79 + }, + "position3d": { + "x": 68.805, + "y": 34.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "J14_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 68.805, + "y": 34.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_K14", + "uuid": "54770bdd-8f3e-412c-94d7-95dfce89d0ac", + "name": "corning_384_wellplate_112ul_flat_K14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 68.805, + "y": 29.675, + "z": 2.79 + }, + "position3d": { + "x": 68.805, + "y": 29.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "K14_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 68.805, + "y": 29.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_L14", + "uuid": "12663f6a-f958-4011-b518-7954a48ac501", + "name": "corning_384_wellplate_112ul_flat_L14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 68.805, + "y": 25.175, + "z": 2.79 + }, + "position3d": { + "x": 68.805, + "y": 25.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "L14_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 68.805, + "y": 25.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_M14", + "uuid": "728f5d01-4866-4aad-a45a-9a51605db876", + "name": "corning_384_wellplate_112ul_flat_M14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 68.805, + "y": 20.675, + "z": 2.79 + }, + "position3d": { + "x": 68.805, + "y": 20.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "M14_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 68.805, + "y": 20.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_N14", + "uuid": "09200621-8340-472d-9c8f-3e3e054d7b99", + "name": "corning_384_wellplate_112ul_flat_N14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 68.805, + "y": 16.175, + "z": 2.79 + }, + "position3d": { + "x": 68.805, + "y": 16.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "N14_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 68.805, + "y": 16.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_O14", + "uuid": "1c3cdcfd-e3d8-46a3-9620-d1bd817d2bed", + "name": "corning_384_wellplate_112ul_flat_O14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 68.805, + "y": 11.675, + "z": 2.79 + }, + "position3d": { + "x": 68.805, + "y": 11.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "O14_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 68.805, + "y": 11.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_P14", + "uuid": "12da1694-90ab-4eab-9ffa-2cc40d20c0c2", + "name": "corning_384_wellplate_112ul_flat_P14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 68.805, + "y": 7.175, + "z": 2.79 + }, + "position3d": { + "x": 68.805, + "y": 7.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "P14_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 68.805, + "y": 7.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_A15", + "uuid": "0e075d6c-f142-4d85-9049-631f046346c8", + "name": "corning_384_wellplate_112ul_flat_A15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.305, + "y": 74.675, + "z": 2.79 + }, + "position3d": { + "x": 73.305, + "y": 74.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A15_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.305, + "y": 74.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_B15", + "uuid": "5c8de0f3-8d0a-4deb-9c90-b0d750df6668", + "name": "corning_384_wellplate_112ul_flat_B15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.305, + "y": 70.175, + "z": 2.79 + }, + "position3d": { + "x": 73.305, + "y": 70.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B15_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.305, + "y": 70.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_C15", + "uuid": "228d74c0-3d85-4e02-9821-ec66fcacc2c4", + "name": "corning_384_wellplate_112ul_flat_C15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.305, + "y": 65.675, + "z": 2.79 + }, + "position3d": { + "x": 73.305, + "y": 65.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C15_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.305, + "y": 65.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_D15", + "uuid": "03b5c91c-3366-4912-afd2-840d28db4c08", + "name": "corning_384_wellplate_112ul_flat_D15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.305, + "y": 61.175, + "z": 2.79 + }, + "position3d": { + "x": 73.305, + "y": 61.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D15_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.305, + "y": 61.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_E15", + "uuid": "5c071fd2-3a6a-4118-b3f8-cfcdf4e92749", + "name": "corning_384_wellplate_112ul_flat_E15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.305, + "y": 56.675, + "z": 2.79 + }, + "position3d": { + "x": 73.305, + "y": 56.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E15_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.305, + "y": 56.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_F15", + "uuid": "fe5cb3d1-18ff-48b8-8d35-c1423b4e45de", + "name": "corning_384_wellplate_112ul_flat_F15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.305, + "y": 52.175, + "z": 2.79 + }, + "position3d": { + "x": 73.305, + "y": 52.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F15_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.305, + "y": 52.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_G15", + "uuid": "a94eaffd-1c17-40e0-9b6f-10150a898f43", + "name": "corning_384_wellplate_112ul_flat_G15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.305, + "y": 47.675, + "z": 2.79 + }, + "position3d": { + "x": 73.305, + "y": 47.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G15_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.305, + "y": 47.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_H15", + "uuid": "17cff420-354e-437c-8290-ab37e7096547", + "name": "corning_384_wellplate_112ul_flat_H15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.305, + "y": 43.175, + "z": 2.79 + }, + "position3d": { + "x": 73.305, + "y": 43.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H15_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.305, + "y": 43.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_I15", + "uuid": "39ca5060-3159-4075-a683-ddc1e7d91563", + "name": "corning_384_wellplate_112ul_flat_I15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.305, + "y": 38.675, + "z": 2.79 + }, + "position3d": { + "x": 73.305, + "y": 38.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "I15_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.305, + "y": 38.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_J15", + "uuid": "9b3535a9-fced-457e-a645-4d928f587cf8", + "name": "corning_384_wellplate_112ul_flat_J15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.305, + "y": 34.175, + "z": 2.79 + }, + "position3d": { + "x": 73.305, + "y": 34.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "J15_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.305, + "y": 34.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_K15", + "uuid": "228bffd5-b5f6-482b-9954-38f692cea0be", + "name": "corning_384_wellplate_112ul_flat_K15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.305, + "y": 29.675, + "z": 2.79 + }, + "position3d": { + "x": 73.305, + "y": 29.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "K15_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.305, + "y": 29.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_L15", + "uuid": "794dcda5-75ef-4137-b1c2-8a0cbaaf540d", + "name": "corning_384_wellplate_112ul_flat_L15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.305, + "y": 25.175, + "z": 2.79 + }, + "position3d": { + "x": 73.305, + "y": 25.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "L15_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.305, + "y": 25.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_M15", + "uuid": "22133557-ce8f-4bdb-a3a9-363bee9ee088", + "name": "corning_384_wellplate_112ul_flat_M15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.305, + "y": 20.675, + "z": 2.79 + }, + "position3d": { + "x": 73.305, + "y": 20.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "M15_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.305, + "y": 20.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_N15", + "uuid": "7f1e9cb0-6e1a-45ed-b152-b828d93c3ffb", + "name": "corning_384_wellplate_112ul_flat_N15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.305, + "y": 16.175, + "z": 2.79 + }, + "position3d": { + "x": 73.305, + "y": 16.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "N15_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.305, + "y": 16.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_O15", + "uuid": "47c2b2a6-aeae-454d-b88e-94a22bf21604", + "name": "corning_384_wellplate_112ul_flat_O15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.305, + "y": 11.675, + "z": 2.79 + }, + "position3d": { + "x": 73.305, + "y": 11.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "O15_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.305, + "y": 11.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_P15", + "uuid": "df89c6e8-36fc-4627-b8ca-a1274e723abf", + "name": "corning_384_wellplate_112ul_flat_P15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.305, + "y": 7.175, + "z": 2.79 + }, + "position3d": { + "x": 73.305, + "y": 7.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "P15_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.305, + "y": 7.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_A16", + "uuid": "865abf25-7b8d-4cdd-a4b4-24f604857c5e", + "name": "corning_384_wellplate_112ul_flat_A16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 77.805, + "y": 74.675, + "z": 2.79 + }, + "position3d": { + "x": 77.805, + "y": 74.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A16_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 77.805, + "y": 74.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_B16", + "uuid": "7f83aa72-9064-4457-9a82-a92939ae57f2", + "name": "corning_384_wellplate_112ul_flat_B16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 77.805, + "y": 70.175, + "z": 2.79 + }, + "position3d": { + "x": 77.805, + "y": 70.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B16_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 77.805, + "y": 70.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_C16", + "uuid": "f104d2d0-6942-4b00-88a7-e37f22e4dda4", + "name": "corning_384_wellplate_112ul_flat_C16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 77.805, + "y": 65.675, + "z": 2.79 + }, + "position3d": { + "x": 77.805, + "y": 65.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C16_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 77.805, + "y": 65.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_D16", + "uuid": "3a657085-c587-4548-9361-08ba7fe42d32", + "name": "corning_384_wellplate_112ul_flat_D16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 77.805, + "y": 61.175, + "z": 2.79 + }, + "position3d": { + "x": 77.805, + "y": 61.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D16_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 77.805, + "y": 61.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_E16", + "uuid": "40f6f65c-28b4-4c01-8c9f-931abb0b2b73", + "name": "corning_384_wellplate_112ul_flat_E16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 77.805, + "y": 56.675, + "z": 2.79 + }, + "position3d": { + "x": 77.805, + "y": 56.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E16_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 77.805, + "y": 56.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_F16", + "uuid": "05c63185-afd2-4ccf-97a2-782bcaba587a", + "name": "corning_384_wellplate_112ul_flat_F16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 77.805, + "y": 52.175, + "z": 2.79 + }, + "position3d": { + "x": 77.805, + "y": 52.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F16_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 77.805, + "y": 52.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_G16", + "uuid": "1d1e9b60-29be-40ad-8f63-6c1da9cb0304", + "name": "corning_384_wellplate_112ul_flat_G16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 77.805, + "y": 47.675, + "z": 2.79 + }, + "position3d": { + "x": 77.805, + "y": 47.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G16_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 77.805, + "y": 47.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_H16", + "uuid": "05356ba5-99c9-42eb-9ebe-c8bea95d3ce0", + "name": "corning_384_wellplate_112ul_flat_H16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 77.805, + "y": 43.175, + "z": 2.79 + }, + "position3d": { + "x": 77.805, + "y": 43.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H16_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 77.805, + "y": 43.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_I16", + "uuid": "c2301d53-8f98-4cdb-8ee0-31767b221d39", + "name": "corning_384_wellplate_112ul_flat_I16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 77.805, + "y": 38.675, + "z": 2.79 + }, + "position3d": { + "x": 77.805, + "y": 38.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "I16_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 77.805, + "y": 38.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_J16", + "uuid": "889e32b7-67a1-4b0f-923a-be2df5a6d4db", + "name": "corning_384_wellplate_112ul_flat_J16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 77.805, + "y": 34.175, + "z": 2.79 + }, + "position3d": { + "x": 77.805, + "y": 34.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "J16_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 77.805, + "y": 34.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_K16", + "uuid": "a8590d3d-e65b-4bf5-9282-e76db779cac0", + "name": "corning_384_wellplate_112ul_flat_K16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 77.805, + "y": 29.675, + "z": 2.79 + }, + "position3d": { + "x": 77.805, + "y": 29.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "K16_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 77.805, + "y": 29.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_L16", + "uuid": "c75bd3db-9aec-468c-b1fe-8a8fddf5bf6a", + "name": "corning_384_wellplate_112ul_flat_L16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 77.805, + "y": 25.175, + "z": 2.79 + }, + "position3d": { + "x": 77.805, + "y": 25.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "L16_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 77.805, + "y": 25.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_M16", + "uuid": "b03fea05-8895-42e3-b1e2-d2ee2dfc8d3c", + "name": "corning_384_wellplate_112ul_flat_M16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 77.805, + "y": 20.675, + "z": 2.79 + }, + "position3d": { + "x": 77.805, + "y": 20.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "M16_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 77.805, + "y": 20.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_N16", + "uuid": "e0d75354-4c23-4d4b-a958-2512086ba369", + "name": "corning_384_wellplate_112ul_flat_N16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 77.805, + "y": 16.175, + "z": 2.79 + }, + "position3d": { + "x": 77.805, + "y": 16.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "N16_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 77.805, + "y": 16.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_O16", + "uuid": "a5d062c3-3bcf-4a92-99bf-2a23316b26b8", + "name": "corning_384_wellplate_112ul_flat_O16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 77.805, + "y": 11.675, + "z": 2.79 + }, + "position3d": { + "x": 77.805, + "y": 11.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "O16_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 77.805, + "y": 11.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_P16", + "uuid": "aa8bf715-3539-485f-91b5-f8a9d272d3ee", + "name": "corning_384_wellplate_112ul_flat_P16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 77.805, + "y": 7.175, + "z": 2.79 + }, + "position3d": { + "x": 77.805, + "y": 7.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "P16_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 77.805, + "y": 7.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_A17", + "uuid": "797b032f-dfee-43cc-a01a-925c5bf4fbb9", + "name": "corning_384_wellplate_112ul_flat_A17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.305, + "y": 74.675, + "z": 2.79 + }, + "position3d": { + "x": 82.305, + "y": 74.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A17_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.305, + "y": 74.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_B17", + "uuid": "858d3bfd-c3e1-46e3-bafa-1660d4706b90", + "name": "corning_384_wellplate_112ul_flat_B17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.305, + "y": 70.175, + "z": 2.79 + }, + "position3d": { + "x": 82.305, + "y": 70.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B17_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.305, + "y": 70.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_C17", + "uuid": "24dcc1d1-9727-403a-8e68-1dc9f8d5d6dd", + "name": "corning_384_wellplate_112ul_flat_C17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.305, + "y": 65.675, + "z": 2.79 + }, + "position3d": { + "x": 82.305, + "y": 65.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C17_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.305, + "y": 65.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_D17", + "uuid": "dbab77e2-7080-4ea9-bec0-9cb6813c4328", + "name": "corning_384_wellplate_112ul_flat_D17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.305, + "y": 61.175, + "z": 2.79 + }, + "position3d": { + "x": 82.305, + "y": 61.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D17_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.305, + "y": 61.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_E17", + "uuid": "3e54d03d-adb5-4a1c-9c37-30176276ff55", + "name": "corning_384_wellplate_112ul_flat_E17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.305, + "y": 56.675, + "z": 2.79 + }, + "position3d": { + "x": 82.305, + "y": 56.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E17_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.305, + "y": 56.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_F17", + "uuid": "8a7d274f-ddc4-49ab-9cbe-fd4c1f839d89", + "name": "corning_384_wellplate_112ul_flat_F17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.305, + "y": 52.175, + "z": 2.79 + }, + "position3d": { + "x": 82.305, + "y": 52.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F17_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.305, + "y": 52.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_G17", + "uuid": "5bb37ecf-2a33-48c8-998b-d5c5b815b628", + "name": "corning_384_wellplate_112ul_flat_G17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.305, + "y": 47.675, + "z": 2.79 + }, + "position3d": { + "x": 82.305, + "y": 47.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G17_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.305, + "y": 47.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_H17", + "uuid": "2c9c1ae7-7247-4dd6-90f5-775ed756e42b", + "name": "corning_384_wellplate_112ul_flat_H17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.305, + "y": 43.175, + "z": 2.79 + }, + "position3d": { + "x": 82.305, + "y": 43.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H17_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.305, + "y": 43.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_I17", + "uuid": "6f2ba32e-582d-40b9-9d8a-507e357ee28f", + "name": "corning_384_wellplate_112ul_flat_I17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.305, + "y": 38.675, + "z": 2.79 + }, + "position3d": { + "x": 82.305, + "y": 38.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "I17_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.305, + "y": 38.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_J17", + "uuid": "3ec9f2e1-f901-4da6-8f2b-bcefb3cd5289", + "name": "corning_384_wellplate_112ul_flat_J17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.305, + "y": 34.175, + "z": 2.79 + }, + "position3d": { + "x": 82.305, + "y": 34.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "J17_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.305, + "y": 34.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_K17", + "uuid": "658869f7-10a4-463b-9c14-c33a9e0d4398", + "name": "corning_384_wellplate_112ul_flat_K17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.305, + "y": 29.675, + "z": 2.79 + }, + "position3d": { + "x": 82.305, + "y": 29.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "K17_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.305, + "y": 29.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_L17", + "uuid": "f2fa8927-bda5-4ffe-b9b1-2db18056ecda", + "name": "corning_384_wellplate_112ul_flat_L17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.305, + "y": 25.175, + "z": 2.79 + }, + "position3d": { + "x": 82.305, + "y": 25.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "L17_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.305, + "y": 25.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_M17", + "uuid": "00ef654e-14ff-48e4-a6e0-c6a867013f77", + "name": "corning_384_wellplate_112ul_flat_M17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.305, + "y": 20.675, + "z": 2.79 + }, + "position3d": { + "x": 82.305, + "y": 20.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "M17_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.305, + "y": 20.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_N17", + "uuid": "f7439660-3405-43bc-8700-54005e62b129", + "name": "corning_384_wellplate_112ul_flat_N17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.305, + "y": 16.175, + "z": 2.79 + }, + "position3d": { + "x": 82.305, + "y": 16.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "N17_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.305, + "y": 16.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_O17", + "uuid": "fa554834-df7a-4b5e-82d5-6729a52e3505", + "name": "corning_384_wellplate_112ul_flat_O17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.305, + "y": 11.675, + "z": 2.79 + }, + "position3d": { + "x": 82.305, + "y": 11.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "O17_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.305, + "y": 11.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_P17", + "uuid": "45650a69-1051-4a27-8da9-2f07eb93b696", + "name": "corning_384_wellplate_112ul_flat_P17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.305, + "y": 7.175, + "z": 2.79 + }, + "position3d": { + "x": 82.305, + "y": 7.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "P17_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.305, + "y": 7.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_A18", + "uuid": "53713074-4859-4abf-9def-f77f85c2eba2", + "name": "corning_384_wellplate_112ul_flat_A18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 86.805, + "y": 74.675, + "z": 2.79 + }, + "position3d": { + "x": 86.805, + "y": 74.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A18_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 86.805, + "y": 74.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_B18", + "uuid": "1ee8fe10-1b7b-4529-9931-f8cfdde56ecb", + "name": "corning_384_wellplate_112ul_flat_B18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 86.805, + "y": 70.175, + "z": 2.79 + }, + "position3d": { + "x": 86.805, + "y": 70.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B18_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 86.805, + "y": 70.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_C18", + "uuid": "f0cc97ca-fb84-4fa9-ba2f-32452b721ca8", + "name": "corning_384_wellplate_112ul_flat_C18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 86.805, + "y": 65.675, + "z": 2.79 + }, + "position3d": { + "x": 86.805, + "y": 65.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C18_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 86.805, + "y": 65.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_D18", + "uuid": "1a8d8314-904f-42c5-a751-3e5c17425021", + "name": "corning_384_wellplate_112ul_flat_D18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 86.805, + "y": 61.175, + "z": 2.79 + }, + "position3d": { + "x": 86.805, + "y": 61.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D18_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 86.805, + "y": 61.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_E18", + "uuid": "c7d8ce0e-0b42-4c62-8fbd-f083e155f860", + "name": "corning_384_wellplate_112ul_flat_E18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 86.805, + "y": 56.675, + "z": 2.79 + }, + "position3d": { + "x": 86.805, + "y": 56.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E18_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 86.805, + "y": 56.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_F18", + "uuid": "9bf61627-ff51-4eba-a4c6-becb4b6881ed", + "name": "corning_384_wellplate_112ul_flat_F18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 86.805, + "y": 52.175, + "z": 2.79 + }, + "position3d": { + "x": 86.805, + "y": 52.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F18_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 86.805, + "y": 52.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_G18", + "uuid": "9cf029a7-142d-48c3-8ff1-e18091165d34", + "name": "corning_384_wellplate_112ul_flat_G18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 86.805, + "y": 47.675, + "z": 2.79 + }, + "position3d": { + "x": 86.805, + "y": 47.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G18_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 86.805, + "y": 47.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_H18", + "uuid": "a27b21ae-85e3-4233-a68a-a0b6ec26eb46", + "name": "corning_384_wellplate_112ul_flat_H18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 86.805, + "y": 43.175, + "z": 2.79 + }, + "position3d": { + "x": 86.805, + "y": 43.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H18_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 86.805, + "y": 43.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_I18", + "uuid": "6df664ad-c64a-4ec8-8ce6-aca3fc719fb3", + "name": "corning_384_wellplate_112ul_flat_I18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 86.805, + "y": 38.675, + "z": 2.79 + }, + "position3d": { + "x": 86.805, + "y": 38.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "I18_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 86.805, + "y": 38.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_J18", + "uuid": "2cc019e9-12bc-4ded-982f-e00c50f6103e", + "name": "corning_384_wellplate_112ul_flat_J18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 86.805, + "y": 34.175, + "z": 2.79 + }, + "position3d": { + "x": 86.805, + "y": 34.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "J18_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 86.805, + "y": 34.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_K18", + "uuid": "0ff264db-252a-4569-8aff-3c8e10b718ea", + "name": "corning_384_wellplate_112ul_flat_K18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 86.805, + "y": 29.675, + "z": 2.79 + }, + "position3d": { + "x": 86.805, + "y": 29.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "K18_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 86.805, + "y": 29.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_L18", + "uuid": "0a60a57c-70dd-4272-8eba-efc2740a1acd", + "name": "corning_384_wellplate_112ul_flat_L18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 86.805, + "y": 25.175, + "z": 2.79 + }, + "position3d": { + "x": 86.805, + "y": 25.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "L18_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 86.805, + "y": 25.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_M18", + "uuid": "3ab16446-5172-48aa-bceb-fe9414943c6e", + "name": "corning_384_wellplate_112ul_flat_M18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 86.805, + "y": 20.675, + "z": 2.79 + }, + "position3d": { + "x": 86.805, + "y": 20.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "M18_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 86.805, + "y": 20.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_N18", + "uuid": "06305579-d788-4049-9213-581b5528828a", + "name": "corning_384_wellplate_112ul_flat_N18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 86.805, + "y": 16.175, + "z": 2.79 + }, + "position3d": { + "x": 86.805, + "y": 16.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "N18_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 86.805, + "y": 16.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_O18", + "uuid": "1bfee21f-ae15-41d2-97be-a2a1a02b2b24", + "name": "corning_384_wellplate_112ul_flat_O18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 86.805, + "y": 11.675, + "z": 2.79 + }, + "position3d": { + "x": 86.805, + "y": 11.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "O18_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 86.805, + "y": 11.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_P18", + "uuid": "4bdb0113-6a57-4732-9534-d7fd4bed1355", + "name": "corning_384_wellplate_112ul_flat_P18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 86.805, + "y": 7.175, + "z": 2.79 + }, + "position3d": { + "x": 86.805, + "y": 7.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "P18_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 86.805, + "y": 7.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_A19", + "uuid": "9a19c3d7-6eec-4105-a223-b1c6a8e2cd40", + "name": "corning_384_wellplate_112ul_flat_A19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.305, + "y": 74.675, + "z": 2.79 + }, + "position3d": { + "x": 91.305, + "y": 74.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A19_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.305, + "y": 74.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_B19", + "uuid": "d8f4095f-6f2c-4660-9070-d234b7d2e480", + "name": "corning_384_wellplate_112ul_flat_B19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.305, + "y": 70.175, + "z": 2.79 + }, + "position3d": { + "x": 91.305, + "y": 70.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B19_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.305, + "y": 70.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_C19", + "uuid": "8986a546-e764-4094-b225-226b49a8ed5a", + "name": "corning_384_wellplate_112ul_flat_C19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.305, + "y": 65.675, + "z": 2.79 + }, + "position3d": { + "x": 91.305, + "y": 65.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C19_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.305, + "y": 65.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_D19", + "uuid": "d2307f1d-ac83-4f85-9c92-469666064b8c", + "name": "corning_384_wellplate_112ul_flat_D19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.305, + "y": 61.175, + "z": 2.79 + }, + "position3d": { + "x": 91.305, + "y": 61.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D19_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.305, + "y": 61.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_E19", + "uuid": "85f7ec6a-ff26-4e93-ad41-b08e4edeb37b", + "name": "corning_384_wellplate_112ul_flat_E19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.305, + "y": 56.675, + "z": 2.79 + }, + "position3d": { + "x": 91.305, + "y": 56.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E19_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.305, + "y": 56.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_F19", + "uuid": "e336c5fc-011a-4808-ace9-92b5afb0fe9d", + "name": "corning_384_wellplate_112ul_flat_F19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.305, + "y": 52.175, + "z": 2.79 + }, + "position3d": { + "x": 91.305, + "y": 52.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F19_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.305, + "y": 52.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_G19", + "uuid": "10813a83-133e-473b-98d5-1ac193a5e59e", + "name": "corning_384_wellplate_112ul_flat_G19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.305, + "y": 47.675, + "z": 2.79 + }, + "position3d": { + "x": 91.305, + "y": 47.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G19_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.305, + "y": 47.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_H19", + "uuid": "0455c23b-5acb-4ce0-8f52-219d6d9574a0", + "name": "corning_384_wellplate_112ul_flat_H19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.305, + "y": 43.175, + "z": 2.79 + }, + "position3d": { + "x": 91.305, + "y": 43.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H19_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.305, + "y": 43.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_I19", + "uuid": "03b42bae-0405-48ec-b9fb-3e41797e0789", + "name": "corning_384_wellplate_112ul_flat_I19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.305, + "y": 38.675, + "z": 2.79 + }, + "position3d": { + "x": 91.305, + "y": 38.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "I19_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.305, + "y": 38.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_J19", + "uuid": "167f87fc-6587-4e5d-b123-2cd22641c7ad", + "name": "corning_384_wellplate_112ul_flat_J19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.305, + "y": 34.175, + "z": 2.79 + }, + "position3d": { + "x": 91.305, + "y": 34.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "J19_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.305, + "y": 34.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_K19", + "uuid": "c860e093-f2a0-4b37-b34d-a18243d7386e", + "name": "corning_384_wellplate_112ul_flat_K19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.305, + "y": 29.675, + "z": 2.79 + }, + "position3d": { + "x": 91.305, + "y": 29.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "K19_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.305, + "y": 29.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_L19", + "uuid": "661b1dfa-3d46-4a75-8539-d797f551c9fc", + "name": "corning_384_wellplate_112ul_flat_L19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.305, + "y": 25.175, + "z": 2.79 + }, + "position3d": { + "x": 91.305, + "y": 25.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "L19_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.305, + "y": 25.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_M19", + "uuid": "95fbd060-3fe9-4518-ba98-fdbe82fead90", + "name": "corning_384_wellplate_112ul_flat_M19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.305, + "y": 20.675, + "z": 2.79 + }, + "position3d": { + "x": 91.305, + "y": 20.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "M19_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.305, + "y": 20.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_N19", + "uuid": "30e17d33-422c-47d2-aaa5-f74650a23090", + "name": "corning_384_wellplate_112ul_flat_N19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.305, + "y": 16.175, + "z": 2.79 + }, + "position3d": { + "x": 91.305, + "y": 16.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "N19_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.305, + "y": 16.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_O19", + "uuid": "6c226eed-7c61-43d9-85f7-f94e997c3e92", + "name": "corning_384_wellplate_112ul_flat_O19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.305, + "y": 11.675, + "z": 2.79 + }, + "position3d": { + "x": 91.305, + "y": 11.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "O19_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.305, + "y": 11.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_P19", + "uuid": "3b9ddba2-ba41-4c35-b211-a1d4146ae02f", + "name": "corning_384_wellplate_112ul_flat_P19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.305, + "y": 7.175, + "z": 2.79 + }, + "position3d": { + "x": 91.305, + "y": 7.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "P19_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.305, + "y": 7.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_A20", + "uuid": "53997290-05e0-4d23-bd97-7ca0ef865180", + "name": "corning_384_wellplate_112ul_flat_A20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 95.805, + "y": 74.675, + "z": 2.79 + }, + "position3d": { + "x": 95.805, + "y": 74.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A20_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 95.805, + "y": 74.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_B20", + "uuid": "06b80b4c-b725-4f9b-9a5c-937c7c5f11e2", + "name": "corning_384_wellplate_112ul_flat_B20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 95.805, + "y": 70.175, + "z": 2.79 + }, + "position3d": { + "x": 95.805, + "y": 70.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B20_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 95.805, + "y": 70.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_C20", + "uuid": "d2c2bc97-2394-4b58-9e11-ae0ff72df491", + "name": "corning_384_wellplate_112ul_flat_C20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 95.805, + "y": 65.675, + "z": 2.79 + }, + "position3d": { + "x": 95.805, + "y": 65.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C20_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 95.805, + "y": 65.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_D20", + "uuid": "6685d454-564a-4539-b753-9089245455e7", + "name": "corning_384_wellplate_112ul_flat_D20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 95.805, + "y": 61.175, + "z": 2.79 + }, + "position3d": { + "x": 95.805, + "y": 61.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D20_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 95.805, + "y": 61.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_E20", + "uuid": "3270f68c-6fb5-4f3d-a57e-24ac9751dd41", + "name": "corning_384_wellplate_112ul_flat_E20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 95.805, + "y": 56.675, + "z": 2.79 + }, + "position3d": { + "x": 95.805, + "y": 56.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E20_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 95.805, + "y": 56.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_F20", + "uuid": "832b96db-01f0-4241-bd32-fde915ae38b1", + "name": "corning_384_wellplate_112ul_flat_F20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 95.805, + "y": 52.175, + "z": 2.79 + }, + "position3d": { + "x": 95.805, + "y": 52.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F20_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 95.805, + "y": 52.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_G20", + "uuid": "95d60844-6cbe-47f5-ab3e-de48e4375cc3", + "name": "corning_384_wellplate_112ul_flat_G20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 95.805, + "y": 47.675, + "z": 2.79 + }, + "position3d": { + "x": 95.805, + "y": 47.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G20_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 95.805, + "y": 47.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_H20", + "uuid": "46663e65-3241-443d-ace3-51d2cd5d853a", + "name": "corning_384_wellplate_112ul_flat_H20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 95.805, + "y": 43.175, + "z": 2.79 + }, + "position3d": { + "x": 95.805, + "y": 43.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H20_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 95.805, + "y": 43.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_I20", + "uuid": "15674eea-e47e-4053-9038-5fcf2c304a18", + "name": "corning_384_wellplate_112ul_flat_I20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 95.805, + "y": 38.675, + "z": 2.79 + }, + "position3d": { + "x": 95.805, + "y": 38.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "I20_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 95.805, + "y": 38.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_J20", + "uuid": "8b079851-1fcc-45df-8666-d99e573a889a", + "name": "corning_384_wellplate_112ul_flat_J20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 95.805, + "y": 34.175, + "z": 2.79 + }, + "position3d": { + "x": 95.805, + "y": 34.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "J20_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 95.805, + "y": 34.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_K20", + "uuid": "f6edd88c-6109-4f46-8cc3-01a53619c6d0", + "name": "corning_384_wellplate_112ul_flat_K20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 95.805, + "y": 29.675, + "z": 2.79 + }, + "position3d": { + "x": 95.805, + "y": 29.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "K20_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 95.805, + "y": 29.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_L20", + "uuid": "d4106b03-85ef-492e-8edb-9cd99faa9b40", + "name": "corning_384_wellplate_112ul_flat_L20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 95.805, + "y": 25.175, + "z": 2.79 + }, + "position3d": { + "x": 95.805, + "y": 25.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "L20_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 95.805, + "y": 25.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_M20", + "uuid": "4346cf1a-6ddd-4c60-a06f-09171220cc43", + "name": "corning_384_wellplate_112ul_flat_M20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 95.805, + "y": 20.675, + "z": 2.79 + }, + "position3d": { + "x": 95.805, + "y": 20.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "M20_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 95.805, + "y": 20.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_N20", + "uuid": "566f2b89-8730-4944-98a6-fa16d11b5cad", + "name": "corning_384_wellplate_112ul_flat_N20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 95.805, + "y": 16.175, + "z": 2.79 + }, + "position3d": { + "x": 95.805, + "y": 16.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "N20_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 95.805, + "y": 16.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_O20", + "uuid": "259c938f-1e97-4a6d-baf5-e1d337b4aad0", + "name": "corning_384_wellplate_112ul_flat_O20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 95.805, + "y": 11.675, + "z": 2.79 + }, + "position3d": { + "x": 95.805, + "y": 11.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "O20_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 95.805, + "y": 11.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_P20", + "uuid": "0800d553-b1b9-4cea-b776-42b6754d2f70", + "name": "corning_384_wellplate_112ul_flat_P20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 95.805, + "y": 7.175, + "z": 2.79 + }, + "position3d": { + "x": 95.805, + "y": 7.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "P20_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 95.805, + "y": 7.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_A21", + "uuid": "8c5ed446-1372-4413-a6cc-70a07a8d6dca", + "name": "corning_384_wellplate_112ul_flat_A21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.305, + "y": 74.675, + "z": 2.79 + }, + "position3d": { + "x": 100.305, + "y": 74.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A21_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.305, + "y": 74.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_B21", + "uuid": "4f142043-84ee-4136-bef0-66e5372b006c", + "name": "corning_384_wellplate_112ul_flat_B21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.305, + "y": 70.175, + "z": 2.79 + }, + "position3d": { + "x": 100.305, + "y": 70.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B21_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.305, + "y": 70.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_C21", + "uuid": "395e13b2-c2b0-4ff7-b03a-526b05b56965", + "name": "corning_384_wellplate_112ul_flat_C21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.305, + "y": 65.675, + "z": 2.79 + }, + "position3d": { + "x": 100.305, + "y": 65.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C21_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.305, + "y": 65.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_D21", + "uuid": "05fa9a5b-5d72-4087-8547-cc8b60053236", + "name": "corning_384_wellplate_112ul_flat_D21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.305, + "y": 61.175, + "z": 2.79 + }, + "position3d": { + "x": 100.305, + "y": 61.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D21_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.305, + "y": 61.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_E21", + "uuid": "3b7ce536-5a23-469d-965c-73696a2f7de8", + "name": "corning_384_wellplate_112ul_flat_E21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.305, + "y": 56.675, + "z": 2.79 + }, + "position3d": { + "x": 100.305, + "y": 56.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E21_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.305, + "y": 56.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_F21", + "uuid": "b0701574-c62e-4939-b477-3f9ef827cbe4", + "name": "corning_384_wellplate_112ul_flat_F21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.305, + "y": 52.175, + "z": 2.79 + }, + "position3d": { + "x": 100.305, + "y": 52.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F21_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.305, + "y": 52.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_G21", + "uuid": "fbafdf16-2bd5-4a7a-9dc1-d8f9d1103915", + "name": "corning_384_wellplate_112ul_flat_G21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.305, + "y": 47.675, + "z": 2.79 + }, + "position3d": { + "x": 100.305, + "y": 47.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G21_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.305, + "y": 47.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_H21", + "uuid": "68b21051-48a0-4ab6-b9e2-cabf05080de0", + "name": "corning_384_wellplate_112ul_flat_H21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.305, + "y": 43.175, + "z": 2.79 + }, + "position3d": { + "x": 100.305, + "y": 43.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H21_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.305, + "y": 43.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_I21", + "uuid": "83b83528-b455-4b77-b9a7-a2e7b39e16ec", + "name": "corning_384_wellplate_112ul_flat_I21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.305, + "y": 38.675, + "z": 2.79 + }, + "position3d": { + "x": 100.305, + "y": 38.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "I21_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.305, + "y": 38.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_J21", + "uuid": "f88c54db-30d8-48e6-83b9-6e56c18a5942", + "name": "corning_384_wellplate_112ul_flat_J21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.305, + "y": 34.175, + "z": 2.79 + }, + "position3d": { + "x": 100.305, + "y": 34.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "J21_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.305, + "y": 34.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_K21", + "uuid": "6019fe74-47a5-4c96-9e64-5e0ff73b3e06", + "name": "corning_384_wellplate_112ul_flat_K21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.305, + "y": 29.675, + "z": 2.79 + }, + "position3d": { + "x": 100.305, + "y": 29.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "K21_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.305, + "y": 29.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_L21", + "uuid": "f5cb1a34-0fe7-42f5-9c5f-84094a93d4ea", + "name": "corning_384_wellplate_112ul_flat_L21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.305, + "y": 25.175, + "z": 2.79 + }, + "position3d": { + "x": 100.305, + "y": 25.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "L21_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.305, + "y": 25.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_M21", + "uuid": "14d6b64e-cd20-46cd-a8f5-32f469f1a3ba", + "name": "corning_384_wellplate_112ul_flat_M21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.305, + "y": 20.675, + "z": 2.79 + }, + "position3d": { + "x": 100.305, + "y": 20.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "M21_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.305, + "y": 20.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_N21", + "uuid": "d88b5ae9-e8e2-46b3-8aa4-ceb4559e9876", + "name": "corning_384_wellplate_112ul_flat_N21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.305, + "y": 16.175, + "z": 2.79 + }, + "position3d": { + "x": 100.305, + "y": 16.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "N21_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.305, + "y": 16.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_O21", + "uuid": "42e6f059-f085-48c6-97b4-21f6f5b042bb", + "name": "corning_384_wellplate_112ul_flat_O21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.305, + "y": 11.675, + "z": 2.79 + }, + "position3d": { + "x": 100.305, + "y": 11.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "O21_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.305, + "y": 11.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_P21", + "uuid": "e3529b4b-6382-41a2-8048-13be0f5ce7ca", + "name": "corning_384_wellplate_112ul_flat_P21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.305, + "y": 7.175, + "z": 2.79 + }, + "position3d": { + "x": 100.305, + "y": 7.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "P21_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.305, + "y": 7.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_A22", + "uuid": "4b9042a6-e2a0-4d7a-9d17-1941c2397e0b", + "name": "corning_384_wellplate_112ul_flat_A22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 104.805, + "y": 74.675, + "z": 2.79 + }, + "position3d": { + "x": 104.805, + "y": 74.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A22_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 104.805, + "y": 74.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_B22", + "uuid": "11e33585-29b9-44bc-8cce-48e598fb0678", + "name": "corning_384_wellplate_112ul_flat_B22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 104.805, + "y": 70.175, + "z": 2.79 + }, + "position3d": { + "x": 104.805, + "y": 70.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B22_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 104.805, + "y": 70.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_C22", + "uuid": "dc5e6f3b-5a76-4d55-89f8-98fccf24d0b4", + "name": "corning_384_wellplate_112ul_flat_C22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 104.805, + "y": 65.675, + "z": 2.79 + }, + "position3d": { + "x": 104.805, + "y": 65.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C22_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 104.805, + "y": 65.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_D22", + "uuid": "3849d3da-1eb2-4503-a37c-ea3147673c9f", + "name": "corning_384_wellplate_112ul_flat_D22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 104.805, + "y": 61.175, + "z": 2.79 + }, + "position3d": { + "x": 104.805, + "y": 61.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D22_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 104.805, + "y": 61.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_E22", + "uuid": "6fe300cd-cb64-4de8-8377-acfa682e1e9b", + "name": "corning_384_wellplate_112ul_flat_E22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 104.805, + "y": 56.675, + "z": 2.79 + }, + "position3d": { + "x": 104.805, + "y": 56.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E22_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 104.805, + "y": 56.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_F22", + "uuid": "abdc775a-f3cd-4981-965a-9d18eaef70db", + "name": "corning_384_wellplate_112ul_flat_F22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 104.805, + "y": 52.175, + "z": 2.79 + }, + "position3d": { + "x": 104.805, + "y": 52.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F22_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 104.805, + "y": 52.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_G22", + "uuid": "d291aef5-312b-455a-b36f-3f6754318749", + "name": "corning_384_wellplate_112ul_flat_G22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 104.805, + "y": 47.675, + "z": 2.79 + }, + "position3d": { + "x": 104.805, + "y": 47.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G22_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 104.805, + "y": 47.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_H22", + "uuid": "24c92508-5f86-4c87-a4cf-bb622e5791d8", + "name": "corning_384_wellplate_112ul_flat_H22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 104.805, + "y": 43.175, + "z": 2.79 + }, + "position3d": { + "x": 104.805, + "y": 43.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H22_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 104.805, + "y": 43.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_I22", + "uuid": "89daa0c2-4eb1-40fd-97bc-accdf278f091", + "name": "corning_384_wellplate_112ul_flat_I22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 104.805, + "y": 38.675, + "z": 2.79 + }, + "position3d": { + "x": 104.805, + "y": 38.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "I22_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 104.805, + "y": 38.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_J22", + "uuid": "675b95ef-a7e1-4895-b603-5e41ab0891fb", + "name": "corning_384_wellplate_112ul_flat_J22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 104.805, + "y": 34.175, + "z": 2.79 + }, + "position3d": { + "x": 104.805, + "y": 34.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "J22_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 104.805, + "y": 34.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_K22", + "uuid": "71a5cd12-fcff-4d6a-8d5f-aea05eef5848", + "name": "corning_384_wellplate_112ul_flat_K22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 104.805, + "y": 29.675, + "z": 2.79 + }, + "position3d": { + "x": 104.805, + "y": 29.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "K22_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 104.805, + "y": 29.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_L22", + "uuid": "9ee32ec2-7368-41a4-b943-0c177e1977d0", + "name": "corning_384_wellplate_112ul_flat_L22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 104.805, + "y": 25.175, + "z": 2.79 + }, + "position3d": { + "x": 104.805, + "y": 25.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "L22_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 104.805, + "y": 25.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_M22", + "uuid": "94eaad76-8b03-45b0-92f5-ce2647642424", + "name": "corning_384_wellplate_112ul_flat_M22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 104.805, + "y": 20.675, + "z": 2.79 + }, + "position3d": { + "x": 104.805, + "y": 20.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "M22_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 104.805, + "y": 20.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_N22", + "uuid": "003cbad6-9d0c-42d4-b68d-aead12cd51fd", + "name": "corning_384_wellplate_112ul_flat_N22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 104.805, + "y": 16.175, + "z": 2.79 + }, + "position3d": { + "x": 104.805, + "y": 16.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "N22_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 104.805, + "y": 16.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_O22", + "uuid": "95a8e4e8-f102-42d2-94cf-a77806d727fa", + "name": "corning_384_wellplate_112ul_flat_O22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 104.805, + "y": 11.675, + "z": 2.79 + }, + "position3d": { + "x": 104.805, + "y": 11.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "O22_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 104.805, + "y": 11.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_P22", + "uuid": "50e105fc-4bde-48c7-9ea2-fc85122975ac", + "name": "corning_384_wellplate_112ul_flat_P22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 104.805, + "y": 7.175, + "z": 2.79 + }, + "position3d": { + "x": 104.805, + "y": 7.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "P22_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 104.805, + "y": 7.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_A23", + "uuid": "04197e84-c9de-4c3d-b3d3-a9275c5de050", + "name": "corning_384_wellplate_112ul_flat_A23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.305, + "y": 74.675, + "z": 2.79 + }, + "position3d": { + "x": 109.305, + "y": 74.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A23_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.305, + "y": 74.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_B23", + "uuid": "dce95f08-2d10-490d-9b7e-b942110d3d5a", + "name": "corning_384_wellplate_112ul_flat_B23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.305, + "y": 70.175, + "z": 2.79 + }, + "position3d": { + "x": 109.305, + "y": 70.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B23_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.305, + "y": 70.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_C23", + "uuid": "35150682-fc65-4e29-92a2-7b043732decf", + "name": "corning_384_wellplate_112ul_flat_C23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.305, + "y": 65.675, + "z": 2.79 + }, + "position3d": { + "x": 109.305, + "y": 65.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C23_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.305, + "y": 65.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_D23", + "uuid": "a9db5dc3-b31a-4a91-9260-ce9ef1ace066", + "name": "corning_384_wellplate_112ul_flat_D23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.305, + "y": 61.175, + "z": 2.79 + }, + "position3d": { + "x": 109.305, + "y": 61.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D23_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.305, + "y": 61.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_E23", + "uuid": "83143b71-be69-4e83-aa91-78466cfc3e17", + "name": "corning_384_wellplate_112ul_flat_E23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.305, + "y": 56.675, + "z": 2.79 + }, + "position3d": { + "x": 109.305, + "y": 56.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E23_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.305, + "y": 56.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_F23", + "uuid": "d72065d0-d8b5-40c0-a329-04fcc57ee6c8", + "name": "corning_384_wellplate_112ul_flat_F23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.305, + "y": 52.175, + "z": 2.79 + }, + "position3d": { + "x": 109.305, + "y": 52.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F23_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.305, + "y": 52.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_G23", + "uuid": "1f04f2b5-e76f-4c5f-af1b-5572ed75e6cc", + "name": "corning_384_wellplate_112ul_flat_G23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.305, + "y": 47.675, + "z": 2.79 + }, + "position3d": { + "x": 109.305, + "y": 47.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G23_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.305, + "y": 47.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_H23", + "uuid": "75130f19-45b4-4fa3-81bd-3d52b966c28f", + "name": "corning_384_wellplate_112ul_flat_H23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.305, + "y": 43.175, + "z": 2.79 + }, + "position3d": { + "x": 109.305, + "y": 43.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H23_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.305, + "y": 43.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_I23", + "uuid": "c57ef904-a1ac-43f7-bb56-fafc9e01795e", + "name": "corning_384_wellplate_112ul_flat_I23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.305, + "y": 38.675, + "z": 2.79 + }, + "position3d": { + "x": 109.305, + "y": 38.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "I23_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.305, + "y": 38.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_J23", + "uuid": "8714343e-8fb1-49c9-b9ef-71b39b69f0a4", + "name": "corning_384_wellplate_112ul_flat_J23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.305, + "y": 34.175, + "z": 2.79 + }, + "position3d": { + "x": 109.305, + "y": 34.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "J23_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.305, + "y": 34.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_K23", + "uuid": "8f31012c-8fab-4238-9066-efb08c74f246", + "name": "corning_384_wellplate_112ul_flat_K23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.305, + "y": 29.675, + "z": 2.79 + }, + "position3d": { + "x": 109.305, + "y": 29.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "K23_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.305, + "y": 29.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_L23", + "uuid": "549ec03d-9b07-405f-b150-fab48b63430f", + "name": "corning_384_wellplate_112ul_flat_L23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.305, + "y": 25.175, + "z": 2.79 + }, + "position3d": { + "x": 109.305, + "y": 25.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "L23_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.305, + "y": 25.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_M23", + "uuid": "af98ce53-9b21-462e-80cb-3d0c84cfef10", + "name": "corning_384_wellplate_112ul_flat_M23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.305, + "y": 20.675, + "z": 2.79 + }, + "position3d": { + "x": 109.305, + "y": 20.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "M23_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.305, + "y": 20.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_N23", + "uuid": "da9c0d61-3a8c-4710-a531-3a91cf630fc1", + "name": "corning_384_wellplate_112ul_flat_N23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.305, + "y": 16.175, + "z": 2.79 + }, + "position3d": { + "x": 109.305, + "y": 16.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "N23_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.305, + "y": 16.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_O23", + "uuid": "275f8ff9-0cf1-4002-9780-67dd5253e633", + "name": "corning_384_wellplate_112ul_flat_O23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.305, + "y": 11.675, + "z": 2.79 + }, + "position3d": { + "x": 109.305, + "y": 11.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "O23_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.305, + "y": 11.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_P23", + "uuid": "d9c5e7f9-f391-4596-80ee-9559a17fc428", + "name": "corning_384_wellplate_112ul_flat_P23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.305, + "y": 7.175, + "z": 2.79 + }, + "position3d": { + "x": 109.305, + "y": 7.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "P23_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.305, + "y": 7.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_A24", + "uuid": "245eb367-f325-4df8-a0f7-fceada5a3dd9", + "name": "corning_384_wellplate_112ul_flat_A24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 113.805, + "y": 74.675, + "z": 2.79 + }, + "position3d": { + "x": 113.805, + "y": 74.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A24_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 113.805, + "y": 74.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_B24", + "uuid": "b9f25a9e-2942-430a-b01d-b608e595acf9", + "name": "corning_384_wellplate_112ul_flat_B24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 113.805, + "y": 70.175, + "z": 2.79 + }, + "position3d": { + "x": 113.805, + "y": 70.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B24_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 113.805, + "y": 70.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_C24", + "uuid": "7926d8f6-249c-44bf-90c8-86fd6980332e", + "name": "corning_384_wellplate_112ul_flat_C24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 113.805, + "y": 65.675, + "z": 2.79 + }, + "position3d": { + "x": 113.805, + "y": 65.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C24_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 113.805, + "y": 65.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_D24", + "uuid": "440c4fa2-eb1f-4961-b287-fbd24df3e911", + "name": "corning_384_wellplate_112ul_flat_D24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 113.805, + "y": 61.175, + "z": 2.79 + }, + "position3d": { + "x": 113.805, + "y": 61.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D24_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 113.805, + "y": 61.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_E24", + "uuid": "56d67c6b-a99c-4315-95dc-ef6f1efca818", + "name": "corning_384_wellplate_112ul_flat_E24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 113.805, + "y": 56.675, + "z": 2.79 + }, + "position3d": { + "x": 113.805, + "y": 56.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E24_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 113.805, + "y": 56.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_F24", + "uuid": "2abfaf67-5b7e-475d-8145-ae0ad2ee2383", + "name": "corning_384_wellplate_112ul_flat_F24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 113.805, + "y": 52.175, + "z": 2.79 + }, + "position3d": { + "x": 113.805, + "y": 52.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F24_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 113.805, + "y": 52.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_G24", + "uuid": "71ce6691-9fb4-4b7f-a775-0e09d814ee22", + "name": "corning_384_wellplate_112ul_flat_G24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 113.805, + "y": 47.675, + "z": 2.79 + }, + "position3d": { + "x": 113.805, + "y": 47.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G24_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 113.805, + "y": 47.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_H24", + "uuid": "1c136d36-303b-4400-9c1a-06fd1f48199c", + "name": "corning_384_wellplate_112ul_flat_H24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 113.805, + "y": 43.175, + "z": 2.79 + }, + "position3d": { + "x": 113.805, + "y": 43.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H24_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 113.805, + "y": 43.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_I24", + "uuid": "c94dc220-9144-4df3-8f46-7ac1296eba79", + "name": "corning_384_wellplate_112ul_flat_I24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 113.805, + "y": 38.675, + "z": 2.79 + }, + "position3d": { + "x": 113.805, + "y": 38.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "I24_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 113.805, + "y": 38.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_J24", + "uuid": "13b83d28-b488-44da-8d44-eba8f65977f4", + "name": "corning_384_wellplate_112ul_flat_J24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 113.805, + "y": 34.175, + "z": 2.79 + }, + "position3d": { + "x": 113.805, + "y": 34.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "J24_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 113.805, + "y": 34.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_K24", + "uuid": "3cf1206f-79f9-41c4-9b14-53e1da6074a8", + "name": "corning_384_wellplate_112ul_flat_K24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 113.805, + "y": 29.675, + "z": 2.79 + }, + "position3d": { + "x": 113.805, + "y": 29.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "K24_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 113.805, + "y": 29.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_L24", + "uuid": "d6e38645-3fd6-4820-b715-15deda6a207e", + "name": "corning_384_wellplate_112ul_flat_L24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 113.805, + "y": 25.175, + "z": 2.79 + }, + "position3d": { + "x": 113.805, + "y": 25.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "L24_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 113.805, + "y": 25.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_M24", + "uuid": "5bb1b814-c5d5-415d-83fc-d4988e92245f", + "name": "corning_384_wellplate_112ul_flat_M24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 113.805, + "y": 20.675, + "z": 2.79 + }, + "position3d": { + "x": 113.805, + "y": 20.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "M24_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 113.805, + "y": 20.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_N24", + "uuid": "89a4d64d-6f22-48a6-9f07-1c8a4346b347", + "name": "corning_384_wellplate_112ul_flat_N24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 113.805, + "y": 16.175, + "z": 2.79 + }, + "position3d": { + "x": 113.805, + "y": 16.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "N24_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 113.805, + "y": 16.175, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_O24", + "uuid": "dbacb2b0-a377-4556-89e3-c3f8560c78a9", + "name": "corning_384_wellplate_112ul_flat_O24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 113.805, + "y": 11.675, + "z": 2.79 + }, + "position3d": { + "x": 113.805, + "y": 11.675, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "O24_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 113.805, + "y": 11.675, + "z": 2.79 + } + }, + { + "id": "corning_384_wellplate_112ul_flat_P24", + "uuid": "a785c053-5974-4f03-b83a-10c2ecb7b763", + "name": "corning_384_wellplate_112ul_flat_P24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8bdbcc88-89cd-4095-9ea6-43489835dc4e", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 11.43, + "width": 3.63, + "height": 3.63 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 113.805, + "y": 7.175, + "z": 2.79 + }, + "position3d": { + "x": 113.805, + "y": 7.175, + "z": 2.79 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.63, + "size_y": 3.63, + "size_z": 11.43, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 112, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "P24_volume_tracker", + "max_volume": 112, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 113.805, + "y": 7.175, + "z": 2.79 + } + } + ] + }, + { + "id": "corning_48_wellplate_1point6ml_flat", + "category": [ + "plates" + ], + "class": { + "module": "pylabrobot.resources.opentrons.plates:corning_48_wellplate_1point6ml_flat", + "type": "pylabrobot" + }, + "description": "Corning 48 wellplate 1.6ml flat", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/opentrons/plates.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "corning_48_wellplate_1point6ml_flat", + "uuid": "d488004f-c1aa-4806-829c-57d706045404", + "name": "corning_48_wellplate_1point6ml_flat", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "plate", + "class": "", + "pose": { + "size": { + "depth": 20.02, + "width": 127.89, + "height": 85.6 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Plate", + "size_x": 127.89, + "size_y": 85.6, + "size_z": 20.02, + "category": "plate", + "model": "Corning 48 Well Plate 1.6 mL Flat", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "corning_48_wellplate_1point6ml_flat_A1", + "B1": "corning_48_wellplate_1point6ml_flat_B1", + "C1": "corning_48_wellplate_1point6ml_flat_C1", + "D1": "corning_48_wellplate_1point6ml_flat_D1", + "E1": "corning_48_wellplate_1point6ml_flat_E1", + "F1": "corning_48_wellplate_1point6ml_flat_F1", + "A2": "corning_48_wellplate_1point6ml_flat_A2", + "B2": "corning_48_wellplate_1point6ml_flat_B2", + "C2": "corning_48_wellplate_1point6ml_flat_C2", + "D2": "corning_48_wellplate_1point6ml_flat_D2", + "E2": "corning_48_wellplate_1point6ml_flat_E2", + "F2": "corning_48_wellplate_1point6ml_flat_F2", + "A3": "corning_48_wellplate_1point6ml_flat_A3", + "B3": "corning_48_wellplate_1point6ml_flat_B3", + "C3": "corning_48_wellplate_1point6ml_flat_C3", + "D3": "corning_48_wellplate_1point6ml_flat_D3", + "E3": "corning_48_wellplate_1point6ml_flat_E3", + "F3": "corning_48_wellplate_1point6ml_flat_F3", + "A4": "corning_48_wellplate_1point6ml_flat_A4", + "B4": "corning_48_wellplate_1point6ml_flat_B4", + "C4": "corning_48_wellplate_1point6ml_flat_C4", + "D4": "corning_48_wellplate_1point6ml_flat_D4", + "E4": "corning_48_wellplate_1point6ml_flat_E4", + "F4": "corning_48_wellplate_1point6ml_flat_F4", + "A5": "corning_48_wellplate_1point6ml_flat_A5", + "B5": "corning_48_wellplate_1point6ml_flat_B5", + "C5": "corning_48_wellplate_1point6ml_flat_C5", + "D5": "corning_48_wellplate_1point6ml_flat_D5", + "E5": "corning_48_wellplate_1point6ml_flat_E5", + "F5": "corning_48_wellplate_1point6ml_flat_F5", + "A6": "corning_48_wellplate_1point6ml_flat_A6", + "B6": "corning_48_wellplate_1point6ml_flat_B6", + "C6": "corning_48_wellplate_1point6ml_flat_C6", + "D6": "corning_48_wellplate_1point6ml_flat_D6", + "E6": "corning_48_wellplate_1point6ml_flat_E6", + "F6": "corning_48_wellplate_1point6ml_flat_F6", + "A7": "corning_48_wellplate_1point6ml_flat_A7", + "B7": "corning_48_wellplate_1point6ml_flat_B7", + "C7": "corning_48_wellplate_1point6ml_flat_C7", + "D7": "corning_48_wellplate_1point6ml_flat_D7", + "E7": "corning_48_wellplate_1point6ml_flat_E7", + "F7": "corning_48_wellplate_1point6ml_flat_F7", + "A8": "corning_48_wellplate_1point6ml_flat_A8", + "B8": "corning_48_wellplate_1point6ml_flat_B8", + "C8": "corning_48_wellplate_1point6ml_flat_C8", + "D8": "corning_48_wellplate_1point6ml_flat_D8", + "E8": "corning_48_wellplate_1point6ml_flat_E8", + "F8": "corning_48_wellplate_1point6ml_flat_F8" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "corning_48_wellplate_1point6ml_flat_A1", + "uuid": "27bf3e8c-d69f-49ee-9736-481e1b863fba", + "name": "corning_48_wellplate_1point6ml_flat_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d488004f-c1aa-4806-829c-57d706045404", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 8.174, + "height": 8.174 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 14.073, + "y": 71.393, + "z": 2.62 + }, + "position3d": { + "x": 14.073, + "y": 71.393, + "z": 2.62 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.174, + "size_y": 8.174, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1600, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A1_volume_tracker", + "max_volume": 1600, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 14.073, + "y": 71.393, + "z": 2.62 + } + }, + { + "id": "corning_48_wellplate_1point6ml_flat_B1", + "uuid": "d72997de-d2d1-4c25-87fb-16f742b964ff", + "name": "corning_48_wellplate_1point6ml_flat_B1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d488004f-c1aa-4806-829c-57d706045404", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 8.174, + "height": 8.174 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 14.073, + "y": 58.313, + "z": 2.62 + }, + "position3d": { + "x": 14.073, + "y": 58.313, + "z": 2.62 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.174, + "size_y": 8.174, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1600, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B1_volume_tracker", + "max_volume": 1600, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 14.073, + "y": 58.313, + "z": 2.62 + } + }, + { + "id": "corning_48_wellplate_1point6ml_flat_C1", + "uuid": "8e1dac41-418c-4459-a7c4-0370a0386b56", + "name": "corning_48_wellplate_1point6ml_flat_C1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d488004f-c1aa-4806-829c-57d706045404", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 8.174, + "height": 8.174 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 14.073, + "y": 45.233, + "z": 2.62 + }, + "position3d": { + "x": 14.073, + "y": 45.233, + "z": 2.62 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.174, + "size_y": 8.174, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1600, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C1_volume_tracker", + "max_volume": 1600, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 14.073, + "y": 45.233, + "z": 2.62 + } + }, + { + "id": "corning_48_wellplate_1point6ml_flat_D1", + "uuid": "ab1922d5-23d1-4654-a0da-5b954c8100ef", + "name": "corning_48_wellplate_1point6ml_flat_D1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d488004f-c1aa-4806-829c-57d706045404", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 8.174, + "height": 8.174 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 14.073, + "y": 32.153, + "z": 2.62 + }, + "position3d": { + "x": 14.073, + "y": 32.153, + "z": 2.62 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.174, + "size_y": 8.174, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1600, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D1_volume_tracker", + "max_volume": 1600, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 14.073, + "y": 32.153, + "z": 2.62 + } + }, + { + "id": "corning_48_wellplate_1point6ml_flat_E1", + "uuid": "b33b2b9f-047b-4826-9414-5a14d3f7899f", + "name": "corning_48_wellplate_1point6ml_flat_E1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d488004f-c1aa-4806-829c-57d706045404", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 8.174, + "height": 8.174 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 14.073, + "y": 19.073, + "z": 2.62 + }, + "position3d": { + "x": 14.073, + "y": 19.073, + "z": 2.62 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.174, + "size_y": 8.174, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1600, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E1_volume_tracker", + "max_volume": 1600, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 14.073, + "y": 19.073, + "z": 2.62 + } + }, + { + "id": "corning_48_wellplate_1point6ml_flat_F1", + "uuid": "d35c42cf-1607-47ec-acbc-17730bd5d0c1", + "name": "corning_48_wellplate_1point6ml_flat_F1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d488004f-c1aa-4806-829c-57d706045404", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 8.174, + "height": 8.174 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 14.073, + "y": 5.993, + "z": 2.62 + }, + "position3d": { + "x": 14.073, + "y": 5.993, + "z": 2.62 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.174, + "size_y": 8.174, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1600, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F1_volume_tracker", + "max_volume": 1600, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 14.073, + "y": 5.993, + "z": 2.62 + } + }, + { + "id": "corning_48_wellplate_1point6ml_flat_A2", + "uuid": "3be24030-3f08-43d0-9d06-ca9cfa305c5f", + "name": "corning_48_wellplate_1point6ml_flat_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d488004f-c1aa-4806-829c-57d706045404", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 8.174, + "height": 8.174 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 27.153, + "y": 71.393, + "z": 2.62 + }, + "position3d": { + "x": 27.153, + "y": 71.393, + "z": 2.62 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.174, + "size_y": 8.174, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1600, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A2_volume_tracker", + "max_volume": 1600, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 27.153, + "y": 71.393, + "z": 2.62 + } + }, + { + "id": "corning_48_wellplate_1point6ml_flat_B2", + "uuid": "619991eb-f85e-47bd-86cf-ffb26adcdfc7", + "name": "corning_48_wellplate_1point6ml_flat_B2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d488004f-c1aa-4806-829c-57d706045404", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 8.174, + "height": 8.174 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 27.153, + "y": 58.313, + "z": 2.62 + }, + "position3d": { + "x": 27.153, + "y": 58.313, + "z": 2.62 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.174, + "size_y": 8.174, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1600, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B2_volume_tracker", + "max_volume": 1600, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 27.153, + "y": 58.313, + "z": 2.62 + } + }, + { + "id": "corning_48_wellplate_1point6ml_flat_C2", + "uuid": "de0ea2f8-394d-41dc-9cb3-ae5d3d7a3519", + "name": "corning_48_wellplate_1point6ml_flat_C2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d488004f-c1aa-4806-829c-57d706045404", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 8.174, + "height": 8.174 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 27.153, + "y": 45.233, + "z": 2.62 + }, + "position3d": { + "x": 27.153, + "y": 45.233, + "z": 2.62 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.174, + "size_y": 8.174, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1600, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C2_volume_tracker", + "max_volume": 1600, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 27.153, + "y": 45.233, + "z": 2.62 + } + }, + { + "id": "corning_48_wellplate_1point6ml_flat_D2", + "uuid": "4aa206aa-a218-4af2-9464-d06cc42194a6", + "name": "corning_48_wellplate_1point6ml_flat_D2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d488004f-c1aa-4806-829c-57d706045404", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 8.174, + "height": 8.174 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 27.153, + "y": 32.153, + "z": 2.62 + }, + "position3d": { + "x": 27.153, + "y": 32.153, + "z": 2.62 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.174, + "size_y": 8.174, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1600, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D2_volume_tracker", + "max_volume": 1600, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 27.153, + "y": 32.153, + "z": 2.62 + } + }, + { + "id": "corning_48_wellplate_1point6ml_flat_E2", + "uuid": "511041da-a26f-4fa3-b14e-3cbd88ff7143", + "name": "corning_48_wellplate_1point6ml_flat_E2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d488004f-c1aa-4806-829c-57d706045404", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 8.174, + "height": 8.174 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 27.153, + "y": 19.073, + "z": 2.62 + }, + "position3d": { + "x": 27.153, + "y": 19.073, + "z": 2.62 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.174, + "size_y": 8.174, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1600, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E2_volume_tracker", + "max_volume": 1600, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 27.153, + "y": 19.073, + "z": 2.62 + } + }, + { + "id": "corning_48_wellplate_1point6ml_flat_F2", + "uuid": "f1b2eb5c-e0c1-47b3-ac8c-cc51d06383ad", + "name": "corning_48_wellplate_1point6ml_flat_F2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d488004f-c1aa-4806-829c-57d706045404", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 8.174, + "height": 8.174 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 27.153, + "y": 5.993, + "z": 2.62 + }, + "position3d": { + "x": 27.153, + "y": 5.993, + "z": 2.62 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.174, + "size_y": 8.174, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1600, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F2_volume_tracker", + "max_volume": 1600, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 27.153, + "y": 5.993, + "z": 2.62 + } + }, + { + "id": "corning_48_wellplate_1point6ml_flat_A3", + "uuid": "98e1053e-e369-4ae9-9a7e-73440dcbe665", + "name": "corning_48_wellplate_1point6ml_flat_A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d488004f-c1aa-4806-829c-57d706045404", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 8.174, + "height": 8.174 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 40.233, + "y": 71.393, + "z": 2.62 + }, + "position3d": { + "x": 40.233, + "y": 71.393, + "z": 2.62 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.174, + "size_y": 8.174, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1600, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A3_volume_tracker", + "max_volume": 1600, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 40.233, + "y": 71.393, + "z": 2.62 + } + }, + { + "id": "corning_48_wellplate_1point6ml_flat_B3", + "uuid": "a85d0efa-aa85-4313-a6ba-97915f5ea2aa", + "name": "corning_48_wellplate_1point6ml_flat_B3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d488004f-c1aa-4806-829c-57d706045404", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 8.174, + "height": 8.174 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 40.233, + "y": 58.313, + "z": 2.62 + }, + "position3d": { + "x": 40.233, + "y": 58.313, + "z": 2.62 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.174, + "size_y": 8.174, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1600, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B3_volume_tracker", + "max_volume": 1600, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 40.233, + "y": 58.313, + "z": 2.62 + } + }, + { + "id": "corning_48_wellplate_1point6ml_flat_C3", + "uuid": "642ef786-9c97-4cba-a98e-e16f884c0054", + "name": "corning_48_wellplate_1point6ml_flat_C3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d488004f-c1aa-4806-829c-57d706045404", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 8.174, + "height": 8.174 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 40.233, + "y": 45.233, + "z": 2.62 + }, + "position3d": { + "x": 40.233, + "y": 45.233, + "z": 2.62 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.174, + "size_y": 8.174, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1600, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C3_volume_tracker", + "max_volume": 1600, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 40.233, + "y": 45.233, + "z": 2.62 + } + }, + { + "id": "corning_48_wellplate_1point6ml_flat_D3", + "uuid": "4b6281d8-f6b8-41b5-9690-cf757de9d1ee", + "name": "corning_48_wellplate_1point6ml_flat_D3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d488004f-c1aa-4806-829c-57d706045404", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 8.174, + "height": 8.174 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 40.233, + "y": 32.153, + "z": 2.62 + }, + "position3d": { + "x": 40.233, + "y": 32.153, + "z": 2.62 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.174, + "size_y": 8.174, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1600, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D3_volume_tracker", + "max_volume": 1600, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 40.233, + "y": 32.153, + "z": 2.62 + } + }, + { + "id": "corning_48_wellplate_1point6ml_flat_E3", + "uuid": "2ce96940-eead-461c-94e3-70547cce5ead", + "name": "corning_48_wellplate_1point6ml_flat_E3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d488004f-c1aa-4806-829c-57d706045404", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 8.174, + "height": 8.174 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 40.233, + "y": 19.073, + "z": 2.62 + }, + "position3d": { + "x": 40.233, + "y": 19.073, + "z": 2.62 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.174, + "size_y": 8.174, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1600, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E3_volume_tracker", + "max_volume": 1600, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 40.233, + "y": 19.073, + "z": 2.62 + } + }, + { + "id": "corning_48_wellplate_1point6ml_flat_F3", + "uuid": "a5838851-bb38-40c4-ba1e-55f34e37848a", + "name": "corning_48_wellplate_1point6ml_flat_F3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d488004f-c1aa-4806-829c-57d706045404", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 8.174, + "height": 8.174 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 40.233, + "y": 5.993, + "z": 2.62 + }, + "position3d": { + "x": 40.233, + "y": 5.993, + "z": 2.62 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.174, + "size_y": 8.174, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1600, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F3_volume_tracker", + "max_volume": 1600, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 40.233, + "y": 5.993, + "z": 2.62 + } + }, + { + "id": "corning_48_wellplate_1point6ml_flat_A4", + "uuid": "4b29ee1a-28f8-45b4-93e9-6085c57ab0c9", + "name": "corning_48_wellplate_1point6ml_flat_A4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d488004f-c1aa-4806-829c-57d706045404", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 8.174, + "height": 8.174 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 53.313, + "y": 71.393, + "z": 2.62 + }, + "position3d": { + "x": 53.313, + "y": 71.393, + "z": 2.62 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.174, + "size_y": 8.174, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1600, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A4_volume_tracker", + "max_volume": 1600, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 53.313, + "y": 71.393, + "z": 2.62 + } + }, + { + "id": "corning_48_wellplate_1point6ml_flat_B4", + "uuid": "154e8012-73f1-497d-b9ea-31520759a402", + "name": "corning_48_wellplate_1point6ml_flat_B4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d488004f-c1aa-4806-829c-57d706045404", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 8.174, + "height": 8.174 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 53.313, + "y": 58.313, + "z": 2.62 + }, + "position3d": { + "x": 53.313, + "y": 58.313, + "z": 2.62 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.174, + "size_y": 8.174, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1600, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B4_volume_tracker", + "max_volume": 1600, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 53.313, + "y": 58.313, + "z": 2.62 + } + }, + { + "id": "corning_48_wellplate_1point6ml_flat_C4", + "uuid": "5c093745-1a92-450c-9d85-0c0ff90a42b9", + "name": "corning_48_wellplate_1point6ml_flat_C4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d488004f-c1aa-4806-829c-57d706045404", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 8.174, + "height": 8.174 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 53.313, + "y": 45.233, + "z": 2.62 + }, + "position3d": { + "x": 53.313, + "y": 45.233, + "z": 2.62 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.174, + "size_y": 8.174, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1600, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C4_volume_tracker", + "max_volume": 1600, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 53.313, + "y": 45.233, + "z": 2.62 + } + }, + { + "id": "corning_48_wellplate_1point6ml_flat_D4", + "uuid": "1fc0ebca-b4c2-4780-afed-433833cc1b53", + "name": "corning_48_wellplate_1point6ml_flat_D4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d488004f-c1aa-4806-829c-57d706045404", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 8.174, + "height": 8.174 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 53.313, + "y": 32.153, + "z": 2.62 + }, + "position3d": { + "x": 53.313, + "y": 32.153, + "z": 2.62 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.174, + "size_y": 8.174, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1600, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D4_volume_tracker", + "max_volume": 1600, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 53.313, + "y": 32.153, + "z": 2.62 + } + }, + { + "id": "corning_48_wellplate_1point6ml_flat_E4", + "uuid": "b4f11791-c2bc-4da0-ad04-70ca3164ef1e", + "name": "corning_48_wellplate_1point6ml_flat_E4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d488004f-c1aa-4806-829c-57d706045404", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 8.174, + "height": 8.174 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 53.313, + "y": 19.073, + "z": 2.62 + }, + "position3d": { + "x": 53.313, + "y": 19.073, + "z": 2.62 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.174, + "size_y": 8.174, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1600, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E4_volume_tracker", + "max_volume": 1600, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 53.313, + "y": 19.073, + "z": 2.62 + } + }, + { + "id": "corning_48_wellplate_1point6ml_flat_F4", + "uuid": "bde725d4-dafb-4cc7-bd0e-0691147b4c26", + "name": "corning_48_wellplate_1point6ml_flat_F4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d488004f-c1aa-4806-829c-57d706045404", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 8.174, + "height": 8.174 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 53.313, + "y": 5.993, + "z": 2.62 + }, + "position3d": { + "x": 53.313, + "y": 5.993, + "z": 2.62 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.174, + "size_y": 8.174, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1600, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F4_volume_tracker", + "max_volume": 1600, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 53.313, + "y": 5.993, + "z": 2.62 + } + }, + { + "id": "corning_48_wellplate_1point6ml_flat_A5", + "uuid": "bd98e4fa-e56a-4a0b-9a93-c50693dd32a2", + "name": "corning_48_wellplate_1point6ml_flat_A5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d488004f-c1aa-4806-829c-57d706045404", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 8.174, + "height": 8.174 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 66.393, + "y": 71.393, + "z": 2.62 + }, + "position3d": { + "x": 66.393, + "y": 71.393, + "z": 2.62 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.174, + "size_y": 8.174, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1600, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A5_volume_tracker", + "max_volume": 1600, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 66.393, + "y": 71.393, + "z": 2.62 + } + }, + { + "id": "corning_48_wellplate_1point6ml_flat_B5", + "uuid": "cfec586a-8ac1-49d5-bb5e-111f2c04f756", + "name": "corning_48_wellplate_1point6ml_flat_B5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d488004f-c1aa-4806-829c-57d706045404", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 8.174, + "height": 8.174 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 66.393, + "y": 58.313, + "z": 2.62 + }, + "position3d": { + "x": 66.393, + "y": 58.313, + "z": 2.62 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.174, + "size_y": 8.174, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1600, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B5_volume_tracker", + "max_volume": 1600, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 66.393, + "y": 58.313, + "z": 2.62 + } + }, + { + "id": "corning_48_wellplate_1point6ml_flat_C5", + "uuid": "31470c5f-200d-4e7e-9568-c94c29ea0047", + "name": "corning_48_wellplate_1point6ml_flat_C5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d488004f-c1aa-4806-829c-57d706045404", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 8.174, + "height": 8.174 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 66.393, + "y": 45.233, + "z": 2.62 + }, + "position3d": { + "x": 66.393, + "y": 45.233, + "z": 2.62 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.174, + "size_y": 8.174, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1600, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C5_volume_tracker", + "max_volume": 1600, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 66.393, + "y": 45.233, + "z": 2.62 + } + }, + { + "id": "corning_48_wellplate_1point6ml_flat_D5", + "uuid": "3b26da8d-6d50-4fc4-aef3-93d2000652a9", + "name": "corning_48_wellplate_1point6ml_flat_D5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d488004f-c1aa-4806-829c-57d706045404", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 8.174, + "height": 8.174 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 66.393, + "y": 32.153, + "z": 2.62 + }, + "position3d": { + "x": 66.393, + "y": 32.153, + "z": 2.62 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.174, + "size_y": 8.174, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1600, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D5_volume_tracker", + "max_volume": 1600, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 66.393, + "y": 32.153, + "z": 2.62 + } + }, + { + "id": "corning_48_wellplate_1point6ml_flat_E5", + "uuid": "2a92a11e-fb7b-46f3-b756-b4eac0aed13b", + "name": "corning_48_wellplate_1point6ml_flat_E5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d488004f-c1aa-4806-829c-57d706045404", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 8.174, + "height": 8.174 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 66.393, + "y": 19.073, + "z": 2.62 + }, + "position3d": { + "x": 66.393, + "y": 19.073, + "z": 2.62 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.174, + "size_y": 8.174, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1600, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E5_volume_tracker", + "max_volume": 1600, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 66.393, + "y": 19.073, + "z": 2.62 + } + }, + { + "id": "corning_48_wellplate_1point6ml_flat_F5", + "uuid": "cea93067-bace-4502-b618-5d62b552df15", + "name": "corning_48_wellplate_1point6ml_flat_F5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d488004f-c1aa-4806-829c-57d706045404", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 8.174, + "height": 8.174 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 66.393, + "y": 5.993, + "z": 2.62 + }, + "position3d": { + "x": 66.393, + "y": 5.993, + "z": 2.62 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.174, + "size_y": 8.174, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1600, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F5_volume_tracker", + "max_volume": 1600, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 66.393, + "y": 5.993, + "z": 2.62 + } + }, + { + "id": "corning_48_wellplate_1point6ml_flat_A6", + "uuid": "0a29b9b1-c9ff-4165-a25c-65d57fd5ea1a", + "name": "corning_48_wellplate_1point6ml_flat_A6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d488004f-c1aa-4806-829c-57d706045404", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 8.174, + "height": 8.174 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 79.473, + "y": 71.393, + "z": 2.62 + }, + "position3d": { + "x": 79.473, + "y": 71.393, + "z": 2.62 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.174, + "size_y": 8.174, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1600, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A6_volume_tracker", + "max_volume": 1600, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 79.473, + "y": 71.393, + "z": 2.62 + } + }, + { + "id": "corning_48_wellplate_1point6ml_flat_B6", + "uuid": "794226bc-48bc-41ad-8e35-ba3039eb1472", + "name": "corning_48_wellplate_1point6ml_flat_B6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d488004f-c1aa-4806-829c-57d706045404", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 8.174, + "height": 8.174 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 79.473, + "y": 58.313, + "z": 2.62 + }, + "position3d": { + "x": 79.473, + "y": 58.313, + "z": 2.62 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.174, + "size_y": 8.174, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1600, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B6_volume_tracker", + "max_volume": 1600, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 79.473, + "y": 58.313, + "z": 2.62 + } + }, + { + "id": "corning_48_wellplate_1point6ml_flat_C6", + "uuid": "431c5f81-e2f2-40e8-8dc5-071e29bb1a69", + "name": "corning_48_wellplate_1point6ml_flat_C6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d488004f-c1aa-4806-829c-57d706045404", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 8.174, + "height": 8.174 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 79.473, + "y": 45.233, + "z": 2.62 + }, + "position3d": { + "x": 79.473, + "y": 45.233, + "z": 2.62 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.174, + "size_y": 8.174, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1600, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C6_volume_tracker", + "max_volume": 1600, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 79.473, + "y": 45.233, + "z": 2.62 + } + }, + { + "id": "corning_48_wellplate_1point6ml_flat_D6", + "uuid": "9f4a0f79-7042-491c-a89b-07cdae6e2b39", + "name": "corning_48_wellplate_1point6ml_flat_D6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d488004f-c1aa-4806-829c-57d706045404", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 8.174, + "height": 8.174 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 79.473, + "y": 32.153, + "z": 2.62 + }, + "position3d": { + "x": 79.473, + "y": 32.153, + "z": 2.62 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.174, + "size_y": 8.174, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1600, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D6_volume_tracker", + "max_volume": 1600, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 79.473, + "y": 32.153, + "z": 2.62 + } + }, + { + "id": "corning_48_wellplate_1point6ml_flat_E6", + "uuid": "96830dbf-0ebe-48df-a40f-6f7768ef5ac0", + "name": "corning_48_wellplate_1point6ml_flat_E6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d488004f-c1aa-4806-829c-57d706045404", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 8.174, + "height": 8.174 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 79.473, + "y": 19.073, + "z": 2.62 + }, + "position3d": { + "x": 79.473, + "y": 19.073, + "z": 2.62 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.174, + "size_y": 8.174, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1600, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E6_volume_tracker", + "max_volume": 1600, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 79.473, + "y": 19.073, + "z": 2.62 + } + }, + { + "id": "corning_48_wellplate_1point6ml_flat_F6", + "uuid": "f56ae841-ec22-4dd4-bfc8-8f19cd857a7a", + "name": "corning_48_wellplate_1point6ml_flat_F6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d488004f-c1aa-4806-829c-57d706045404", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 8.174, + "height": 8.174 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 79.473, + "y": 5.993, + "z": 2.62 + }, + "position3d": { + "x": 79.473, + "y": 5.993, + "z": 2.62 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.174, + "size_y": 8.174, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1600, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F6_volume_tracker", + "max_volume": 1600, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 79.473, + "y": 5.993, + "z": 2.62 + } + }, + { + "id": "corning_48_wellplate_1point6ml_flat_A7", + "uuid": "a3b1dd4f-03bb-4795-93a7-779f984d5008", + "name": "corning_48_wellplate_1point6ml_flat_A7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d488004f-c1aa-4806-829c-57d706045404", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 8.174, + "height": 8.174 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.553, + "y": 71.393, + "z": 2.62 + }, + "position3d": { + "x": 92.553, + "y": 71.393, + "z": 2.62 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.174, + "size_y": 8.174, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1600, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A7_volume_tracker", + "max_volume": 1600, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.553, + "y": 71.393, + "z": 2.62 + } + }, + { + "id": "corning_48_wellplate_1point6ml_flat_B7", + "uuid": "5166cd67-5d67-4cd9-bd26-e821d126c12f", + "name": "corning_48_wellplate_1point6ml_flat_B7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d488004f-c1aa-4806-829c-57d706045404", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 8.174, + "height": 8.174 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.553, + "y": 58.313, + "z": 2.62 + }, + "position3d": { + "x": 92.553, + "y": 58.313, + "z": 2.62 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.174, + "size_y": 8.174, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1600, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B7_volume_tracker", + "max_volume": 1600, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.553, + "y": 58.313, + "z": 2.62 + } + }, + { + "id": "corning_48_wellplate_1point6ml_flat_C7", + "uuid": "938d49c4-5ee1-49ba-b091-4e114cdd3e28", + "name": "corning_48_wellplate_1point6ml_flat_C7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d488004f-c1aa-4806-829c-57d706045404", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 8.174, + "height": 8.174 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.553, + "y": 45.233, + "z": 2.62 + }, + "position3d": { + "x": 92.553, + "y": 45.233, + "z": 2.62 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.174, + "size_y": 8.174, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1600, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C7_volume_tracker", + "max_volume": 1600, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.553, + "y": 45.233, + "z": 2.62 + } + }, + { + "id": "corning_48_wellplate_1point6ml_flat_D7", + "uuid": "09c7b450-adec-4b6a-bc41-a18806734f87", + "name": "corning_48_wellplate_1point6ml_flat_D7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d488004f-c1aa-4806-829c-57d706045404", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 8.174, + "height": 8.174 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.553, + "y": 32.153, + "z": 2.62 + }, + "position3d": { + "x": 92.553, + "y": 32.153, + "z": 2.62 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.174, + "size_y": 8.174, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1600, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D7_volume_tracker", + "max_volume": 1600, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.553, + "y": 32.153, + "z": 2.62 + } + }, + { + "id": "corning_48_wellplate_1point6ml_flat_E7", + "uuid": "897087ff-db62-496c-ab12-1b5d23b0b12f", + "name": "corning_48_wellplate_1point6ml_flat_E7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d488004f-c1aa-4806-829c-57d706045404", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 8.174, + "height": 8.174 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.553, + "y": 19.073, + "z": 2.62 + }, + "position3d": { + "x": 92.553, + "y": 19.073, + "z": 2.62 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.174, + "size_y": 8.174, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1600, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E7_volume_tracker", + "max_volume": 1600, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.553, + "y": 19.073, + "z": 2.62 + } + }, + { + "id": "corning_48_wellplate_1point6ml_flat_F7", + "uuid": "cc56528f-445e-42c4-897f-ada6ffdbe860", + "name": "corning_48_wellplate_1point6ml_flat_F7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d488004f-c1aa-4806-829c-57d706045404", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 8.174, + "height": 8.174 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.553, + "y": 5.993, + "z": 2.62 + }, + "position3d": { + "x": 92.553, + "y": 5.993, + "z": 2.62 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.174, + "size_y": 8.174, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1600, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F7_volume_tracker", + "max_volume": 1600, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.553, + "y": 5.993, + "z": 2.62 + } + }, + { + "id": "corning_48_wellplate_1point6ml_flat_A8", + "uuid": "8082cf38-b4b5-4c5b-a847-7b728bb7a8cb", + "name": "corning_48_wellplate_1point6ml_flat_A8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d488004f-c1aa-4806-829c-57d706045404", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 8.174, + "height": 8.174 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 105.633, + "y": 71.393, + "z": 2.62 + }, + "position3d": { + "x": 105.633, + "y": 71.393, + "z": 2.62 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.174, + "size_y": 8.174, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1600, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A8_volume_tracker", + "max_volume": 1600, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 105.633, + "y": 71.393, + "z": 2.62 + } + }, + { + "id": "corning_48_wellplate_1point6ml_flat_B8", + "uuid": "cd5d453c-0160-49b8-9486-0774978caa6b", + "name": "corning_48_wellplate_1point6ml_flat_B8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d488004f-c1aa-4806-829c-57d706045404", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 8.174, + "height": 8.174 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 105.633, + "y": 58.313, + "z": 2.62 + }, + "position3d": { + "x": 105.633, + "y": 58.313, + "z": 2.62 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.174, + "size_y": 8.174, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1600, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B8_volume_tracker", + "max_volume": 1600, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 105.633, + "y": 58.313, + "z": 2.62 + } + }, + { + "id": "corning_48_wellplate_1point6ml_flat_C8", + "uuid": "e8489845-7987-4ba6-92ed-910265af5ce9", + "name": "corning_48_wellplate_1point6ml_flat_C8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d488004f-c1aa-4806-829c-57d706045404", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 8.174, + "height": 8.174 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 105.633, + "y": 45.233, + "z": 2.62 + }, + "position3d": { + "x": 105.633, + "y": 45.233, + "z": 2.62 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.174, + "size_y": 8.174, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1600, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C8_volume_tracker", + "max_volume": 1600, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 105.633, + "y": 45.233, + "z": 2.62 + } + }, + { + "id": "corning_48_wellplate_1point6ml_flat_D8", + "uuid": "7e22c4b7-131e-4362-8573-2998f3ce0177", + "name": "corning_48_wellplate_1point6ml_flat_D8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d488004f-c1aa-4806-829c-57d706045404", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 8.174, + "height": 8.174 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 105.633, + "y": 32.153, + "z": 2.62 + }, + "position3d": { + "x": 105.633, + "y": 32.153, + "z": 2.62 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.174, + "size_y": 8.174, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1600, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D8_volume_tracker", + "max_volume": 1600, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 105.633, + "y": 32.153, + "z": 2.62 + } + }, + { + "id": "corning_48_wellplate_1point6ml_flat_E8", + "uuid": "77d7962b-0d28-423a-bc5c-34444aaa7f94", + "name": "corning_48_wellplate_1point6ml_flat_E8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d488004f-c1aa-4806-829c-57d706045404", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 8.174, + "height": 8.174 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 105.633, + "y": 19.073, + "z": 2.62 + }, + "position3d": { + "x": 105.633, + "y": 19.073, + "z": 2.62 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.174, + "size_y": 8.174, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1600, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E8_volume_tracker", + "max_volume": 1600, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 105.633, + "y": 19.073, + "z": 2.62 + } + }, + { + "id": "corning_48_wellplate_1point6ml_flat_F8", + "uuid": "9cf0e43b-0793-4137-b414-d02025d45334", + "name": "corning_48_wellplate_1point6ml_flat_F8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d488004f-c1aa-4806-829c-57d706045404", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 8.174, + "height": 8.174 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 105.633, + "y": 5.993, + "z": 2.62 + }, + "position3d": { + "x": 105.633, + "y": 5.993, + "z": 2.62 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.174, + "size_y": 8.174, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1600, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F8_volume_tracker", + "max_volume": 1600, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 105.633, + "y": 5.993, + "z": 2.62 + } + } + ] + }, + { + "id": "corning_6_wellplate_16point8ml_flat", + "category": [ + "plates" + ], + "class": { + "module": "pylabrobot.resources.opentrons.plates:corning_6_wellplate_16point8ml_flat", + "type": "pylabrobot" + }, + "description": "Corning 6 wellplate 16.8ml flat", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/opentrons/plates.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "corning_6_wellplate_16point8ml_flat", + "uuid": "ec125c96-19b4-4c36-b6ea-ad510b028f48", + "name": "corning_6_wellplate_16point8ml_flat", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "plate", + "class": "", + "pose": { + "size": { + "depth": 20.27, + "width": 127.76, + "height": 85.47 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Plate", + "size_x": 127.76, + "size_y": 85.47, + "size_z": 20.27, + "category": "plate", + "model": "Corning 6 Well Plate 16.8 mL Flat", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "corning_6_wellplate_16point8ml_flat_A1", + "B1": "corning_6_wellplate_16point8ml_flat_B1", + "A2": "corning_6_wellplate_16point8ml_flat_A2", + "B2": "corning_6_wellplate_16point8ml_flat_B2", + "A3": "corning_6_wellplate_16point8ml_flat_A3", + "B3": "corning_6_wellplate_16point8ml_flat_B3" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "corning_6_wellplate_16point8ml_flat_A1", + "uuid": "061a7f1a-512b-4e4c-858a-2d47cd437696", + "name": "corning_6_wellplate_16point8ml_flat_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ec125c96-19b4-4c36-b6ea-ad510b028f48", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 25.053, + "height": 25.053 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 12.2335, + "y": 49.7535, + "z": 2.87 + }, + "position3d": { + "x": 12.2335, + "y": 49.7535, + "z": 2.87 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 25.053, + "size_y": 25.053, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 16800, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A1_volume_tracker", + "max_volume": 16800, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 12.2335, + "y": 49.7535, + "z": 2.87 + } + }, + { + "id": "corning_6_wellplate_16point8ml_flat_B1", + "uuid": "66436d7e-cacd-47b5-9458-577491d37c53", + "name": "corning_6_wellplate_16point8ml_flat_B1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ec125c96-19b4-4c36-b6ea-ad510b028f48", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 25.053, + "height": 25.053 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 12.2335, + "y": 10.6335, + "z": 2.87 + }, + "position3d": { + "x": 12.2335, + "y": 10.6335, + "z": 2.87 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 25.053, + "size_y": 25.053, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 16800, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B1_volume_tracker", + "max_volume": 16800, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 12.2335, + "y": 10.6335, + "z": 2.87 + } + }, + { + "id": "corning_6_wellplate_16point8ml_flat_A2", + "uuid": "b844965e-0fa8-42ee-90cc-9dca41c741b7", + "name": "corning_6_wellplate_16point8ml_flat_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ec125c96-19b4-4c36-b6ea-ad510b028f48", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 25.053, + "height": 25.053 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 51.3535, + "y": 49.7535, + "z": 2.87 + }, + "position3d": { + "x": 51.3535, + "y": 49.7535, + "z": 2.87 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 25.053, + "size_y": 25.053, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 16800, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A2_volume_tracker", + "max_volume": 16800, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 51.3535, + "y": 49.7535, + "z": 2.87 + } + }, + { + "id": "corning_6_wellplate_16point8ml_flat_B2", + "uuid": "df7e1a99-91f8-463f-a8bb-090571aa8122", + "name": "corning_6_wellplate_16point8ml_flat_B2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ec125c96-19b4-4c36-b6ea-ad510b028f48", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 25.053, + "height": 25.053 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 51.3535, + "y": 10.6335, + "z": 2.87 + }, + "position3d": { + "x": 51.3535, + "y": 10.6335, + "z": 2.87 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 25.053, + "size_y": 25.053, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 16800, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B2_volume_tracker", + "max_volume": 16800, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 51.3535, + "y": 10.6335, + "z": 2.87 + } + }, + { + "id": "corning_6_wellplate_16point8ml_flat_A3", + "uuid": "a038f43a-eb36-44af-883e-1bfcfcf882d2", + "name": "corning_6_wellplate_16point8ml_flat_A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ec125c96-19b4-4c36-b6ea-ad510b028f48", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 25.053, + "height": 25.053 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 90.4735, + "y": 49.7535, + "z": 2.87 + }, + "position3d": { + "x": 90.4735, + "y": 49.7535, + "z": 2.87 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 25.053, + "size_y": 25.053, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 16800, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A3_volume_tracker", + "max_volume": 16800, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 90.4735, + "y": 49.7535, + "z": 2.87 + } + }, + { + "id": "corning_6_wellplate_16point8ml_flat_B3", + "uuid": "0cfd14de-c361-45ef-97fc-3b363708cae8", + "name": "corning_6_wellplate_16point8ml_flat_B3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ec125c96-19b4-4c36-b6ea-ad510b028f48", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 17.4, + "width": 25.053, + "height": 25.053 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 90.4735, + "y": 10.6335, + "z": 2.87 + }, + "position3d": { + "x": 90.4735, + "y": 10.6335, + "z": 2.87 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 25.053, + "size_y": 25.053, + "size_z": 17.4, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 16800, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B3_volume_tracker", + "max_volume": 16800, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 90.4735, + "y": 10.6335, + "z": 2.87 + } + } + ] + }, + { + "id": "corning_96_wellplate_360ul_flat", + "category": [ + "plates" + ], + "class": { + "module": "pylabrobot.resources.opentrons.plates:corning_96_wellplate_360ul_flat", + "type": "pylabrobot" + }, + "description": "Corning 96 wellplate 360ul flat", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/opentrons/plates.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "corning_96_wellplate_360ul_flat", + "uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "name": "corning_96_wellplate_360ul_flat", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "plate", + "class": "", + "pose": { + "size": { + "depth": 14.22, + "width": 127.76, + "height": 85.47 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Plate", + "size_x": 127.76, + "size_y": 85.47, + "size_z": 14.22, + "category": "plate", + "model": "Corning 96 Well Plate 360 µL Flat", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "corning_96_wellplate_360ul_flat_A1", + "B1": "corning_96_wellplate_360ul_flat_B1", + "C1": "corning_96_wellplate_360ul_flat_C1", + "D1": "corning_96_wellplate_360ul_flat_D1", + "E1": "corning_96_wellplate_360ul_flat_E1", + "F1": "corning_96_wellplate_360ul_flat_F1", + "G1": "corning_96_wellplate_360ul_flat_G1", + "H1": "corning_96_wellplate_360ul_flat_H1", + "A2": "corning_96_wellplate_360ul_flat_A2", + "B2": "corning_96_wellplate_360ul_flat_B2", + "C2": "corning_96_wellplate_360ul_flat_C2", + "D2": "corning_96_wellplate_360ul_flat_D2", + "E2": "corning_96_wellplate_360ul_flat_E2", + "F2": "corning_96_wellplate_360ul_flat_F2", + "G2": "corning_96_wellplate_360ul_flat_G2", + "H2": "corning_96_wellplate_360ul_flat_H2", + "A3": "corning_96_wellplate_360ul_flat_A3", + "B3": "corning_96_wellplate_360ul_flat_B3", + "C3": "corning_96_wellplate_360ul_flat_C3", + "D3": "corning_96_wellplate_360ul_flat_D3", + "E3": "corning_96_wellplate_360ul_flat_E3", + "F3": "corning_96_wellplate_360ul_flat_F3", + "G3": "corning_96_wellplate_360ul_flat_G3", + "H3": "corning_96_wellplate_360ul_flat_H3", + "A4": "corning_96_wellplate_360ul_flat_A4", + "B4": "corning_96_wellplate_360ul_flat_B4", + "C4": "corning_96_wellplate_360ul_flat_C4", + "D4": "corning_96_wellplate_360ul_flat_D4", + "E4": "corning_96_wellplate_360ul_flat_E4", + "F4": "corning_96_wellplate_360ul_flat_F4", + "G4": "corning_96_wellplate_360ul_flat_G4", + "H4": "corning_96_wellplate_360ul_flat_H4", + "A5": "corning_96_wellplate_360ul_flat_A5", + "B5": "corning_96_wellplate_360ul_flat_B5", + "C5": "corning_96_wellplate_360ul_flat_C5", + "D5": "corning_96_wellplate_360ul_flat_D5", + "E5": "corning_96_wellplate_360ul_flat_E5", + "F5": "corning_96_wellplate_360ul_flat_F5", + "G5": "corning_96_wellplate_360ul_flat_G5", + "H5": "corning_96_wellplate_360ul_flat_H5", + "A6": "corning_96_wellplate_360ul_flat_A6", + "B6": "corning_96_wellplate_360ul_flat_B6", + "C6": "corning_96_wellplate_360ul_flat_C6", + "D6": "corning_96_wellplate_360ul_flat_D6", + "E6": "corning_96_wellplate_360ul_flat_E6", + "F6": "corning_96_wellplate_360ul_flat_F6", + "G6": "corning_96_wellplate_360ul_flat_G6", + "H6": "corning_96_wellplate_360ul_flat_H6", + "A7": "corning_96_wellplate_360ul_flat_A7", + "B7": "corning_96_wellplate_360ul_flat_B7", + "C7": "corning_96_wellplate_360ul_flat_C7", + "D7": "corning_96_wellplate_360ul_flat_D7", + "E7": "corning_96_wellplate_360ul_flat_E7", + "F7": "corning_96_wellplate_360ul_flat_F7", + "G7": "corning_96_wellplate_360ul_flat_G7", + "H7": "corning_96_wellplate_360ul_flat_H7", + "A8": "corning_96_wellplate_360ul_flat_A8", + "B8": "corning_96_wellplate_360ul_flat_B8", + "C8": "corning_96_wellplate_360ul_flat_C8", + "D8": "corning_96_wellplate_360ul_flat_D8", + "E8": "corning_96_wellplate_360ul_flat_E8", + "F8": "corning_96_wellplate_360ul_flat_F8", + "G8": "corning_96_wellplate_360ul_flat_G8", + "H8": "corning_96_wellplate_360ul_flat_H8", + "A9": "corning_96_wellplate_360ul_flat_A9", + "B9": "corning_96_wellplate_360ul_flat_B9", + "C9": "corning_96_wellplate_360ul_flat_C9", + "D9": "corning_96_wellplate_360ul_flat_D9", + "E9": "corning_96_wellplate_360ul_flat_E9", + "F9": "corning_96_wellplate_360ul_flat_F9", + "G9": "corning_96_wellplate_360ul_flat_G9", + "H9": "corning_96_wellplate_360ul_flat_H9", + "A10": "corning_96_wellplate_360ul_flat_A10", + "B10": "corning_96_wellplate_360ul_flat_B10", + "C10": "corning_96_wellplate_360ul_flat_C10", + "D10": "corning_96_wellplate_360ul_flat_D10", + "E10": "corning_96_wellplate_360ul_flat_E10", + "F10": "corning_96_wellplate_360ul_flat_F10", + "G10": "corning_96_wellplate_360ul_flat_G10", + "H10": "corning_96_wellplate_360ul_flat_H10", + "A11": "corning_96_wellplate_360ul_flat_A11", + "B11": "corning_96_wellplate_360ul_flat_B11", + "C11": "corning_96_wellplate_360ul_flat_C11", + "D11": "corning_96_wellplate_360ul_flat_D11", + "E11": "corning_96_wellplate_360ul_flat_E11", + "F11": "corning_96_wellplate_360ul_flat_F11", + "G11": "corning_96_wellplate_360ul_flat_G11", + "H11": "corning_96_wellplate_360ul_flat_H11", + "A12": "corning_96_wellplate_360ul_flat_A12", + "B12": "corning_96_wellplate_360ul_flat_B12", + "C12": "corning_96_wellplate_360ul_flat_C12", + "D12": "corning_96_wellplate_360ul_flat_D12", + "E12": "corning_96_wellplate_360ul_flat_E12", + "F12": "corning_96_wellplate_360ul_flat_F12", + "G12": "corning_96_wellplate_360ul_flat_G12", + "H12": "corning_96_wellplate_360ul_flat_H12" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_A1", + "uuid": "bc16ca08-38ba-4021-b961-fc076ead7bf9", + "name": "corning_96_wellplate_360ul_flat_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.9545, + "y": 71.8145, + "z": 3.55 + }, + "position3d": { + "x": 11.9545, + "y": 71.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A1_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.9545, + "y": 71.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_B1", + "uuid": "314ac00a-72a1-47e9-a15e-82d441af9fdb", + "name": "corning_96_wellplate_360ul_flat_B1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.9545, + "y": 62.8145, + "z": 3.55 + }, + "position3d": { + "x": 11.9545, + "y": 62.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B1_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.9545, + "y": 62.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_C1", + "uuid": "548044db-bdd9-4b45-b7cd-0c6ff23bc8c1", + "name": "corning_96_wellplate_360ul_flat_C1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.9545, + "y": 53.8145, + "z": 3.55 + }, + "position3d": { + "x": 11.9545, + "y": 53.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C1_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.9545, + "y": 53.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_D1", + "uuid": "4d879e01-ef94-4ca8-b9d9-ee99dcd21934", + "name": "corning_96_wellplate_360ul_flat_D1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.9545, + "y": 44.8145, + "z": 3.55 + }, + "position3d": { + "x": 11.9545, + "y": 44.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D1_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.9545, + "y": 44.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_E1", + "uuid": "08b0cdf7-5134-4fea-85d8-36be1b69fee6", + "name": "corning_96_wellplate_360ul_flat_E1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.9545, + "y": 35.8145, + "z": 3.55 + }, + "position3d": { + "x": 11.9545, + "y": 35.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E1_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.9545, + "y": 35.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_F1", + "uuid": "022cda4f-c239-46ae-bc25-83f8bc63c4f0", + "name": "corning_96_wellplate_360ul_flat_F1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.9545, + "y": 26.8145, + "z": 3.55 + }, + "position3d": { + "x": 11.9545, + "y": 26.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F1_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.9545, + "y": 26.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_G1", + "uuid": "049cd103-8b02-463a-a15f-59d259e90920", + "name": "corning_96_wellplate_360ul_flat_G1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.9545, + "y": 17.8145, + "z": 3.55 + }, + "position3d": { + "x": 11.9545, + "y": 17.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G1_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.9545, + "y": 17.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_H1", + "uuid": "14d0a29a-cc63-42d3-a915-3ef666a61ea4", + "name": "corning_96_wellplate_360ul_flat_H1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.9545, + "y": 8.8145, + "z": 3.55 + }, + "position3d": { + "x": 11.9545, + "y": 8.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H1_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.9545, + "y": 8.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_A2", + "uuid": "89bb4406-d4ac-4e9a-8835-3034dbacf750", + "name": "corning_96_wellplate_360ul_flat_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.9545, + "y": 71.8145, + "z": 3.55 + }, + "position3d": { + "x": 20.9545, + "y": 71.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A2_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.9545, + "y": 71.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_B2", + "uuid": "3992f40a-9c29-4f35-bfd2-c029b50d05d7", + "name": "corning_96_wellplate_360ul_flat_B2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.9545, + "y": 62.8145, + "z": 3.55 + }, + "position3d": { + "x": 20.9545, + "y": 62.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B2_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.9545, + "y": 62.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_C2", + "uuid": "d57112f1-ce65-40c1-ba40-8846977ba4b2", + "name": "corning_96_wellplate_360ul_flat_C2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.9545, + "y": 53.8145, + "z": 3.55 + }, + "position3d": { + "x": 20.9545, + "y": 53.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C2_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.9545, + "y": 53.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_D2", + "uuid": "9b85a59b-a99b-4e91-83df-150d5a56dcf8", + "name": "corning_96_wellplate_360ul_flat_D2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.9545, + "y": 44.8145, + "z": 3.55 + }, + "position3d": { + "x": 20.9545, + "y": 44.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D2_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.9545, + "y": 44.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_E2", + "uuid": "cc8cb7cb-86c3-47b5-bdf2-77b85aceb10d", + "name": "corning_96_wellplate_360ul_flat_E2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.9545, + "y": 35.8145, + "z": 3.55 + }, + "position3d": { + "x": 20.9545, + "y": 35.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E2_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.9545, + "y": 35.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_F2", + "uuid": "6a8ad820-51a9-43c7-8b9f-f9af3082fb10", + "name": "corning_96_wellplate_360ul_flat_F2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.9545, + "y": 26.8145, + "z": 3.55 + }, + "position3d": { + "x": 20.9545, + "y": 26.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F2_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.9545, + "y": 26.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_G2", + "uuid": "31801b20-5ed5-4947-b7a0-139dfac45011", + "name": "corning_96_wellplate_360ul_flat_G2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.9545, + "y": 17.8145, + "z": 3.55 + }, + "position3d": { + "x": 20.9545, + "y": 17.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G2_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.9545, + "y": 17.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_H2", + "uuid": "a62bc629-25b7-4799-9f98-8f622dc674d8", + "name": "corning_96_wellplate_360ul_flat_H2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.9545, + "y": 8.8145, + "z": 3.55 + }, + "position3d": { + "x": 20.9545, + "y": 8.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H2_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.9545, + "y": 8.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_A3", + "uuid": "e7f2cb0b-5c72-42fb-a12f-4505a211e73f", + "name": "corning_96_wellplate_360ul_flat_A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.9545, + "y": 71.8145, + "z": 3.55 + }, + "position3d": { + "x": 29.9545, + "y": 71.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A3_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.9545, + "y": 71.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_B3", + "uuid": "8be6be17-06e1-4e32-86de-ed535475d574", + "name": "corning_96_wellplate_360ul_flat_B3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.9545, + "y": 62.8145, + "z": 3.55 + }, + "position3d": { + "x": 29.9545, + "y": 62.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B3_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.9545, + "y": 62.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_C3", + "uuid": "2b6cb4a9-fe9f-48b9-a00f-985c43e604cc", + "name": "corning_96_wellplate_360ul_flat_C3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.9545, + "y": 53.8145, + "z": 3.55 + }, + "position3d": { + "x": 29.9545, + "y": 53.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C3_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.9545, + "y": 53.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_D3", + "uuid": "bf6922cf-d8b6-4d3d-b492-3efbb08d9c75", + "name": "corning_96_wellplate_360ul_flat_D3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.9545, + "y": 44.8145, + "z": 3.55 + }, + "position3d": { + "x": 29.9545, + "y": 44.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D3_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.9545, + "y": 44.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_E3", + "uuid": "d18de996-bb37-425a-b086-58600e118f30", + "name": "corning_96_wellplate_360ul_flat_E3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.9545, + "y": 35.8145, + "z": 3.55 + }, + "position3d": { + "x": 29.9545, + "y": 35.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E3_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.9545, + "y": 35.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_F3", + "uuid": "0f26b0c4-3885-42c4-b2fb-e4e149b99d9d", + "name": "corning_96_wellplate_360ul_flat_F3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.9545, + "y": 26.8145, + "z": 3.55 + }, + "position3d": { + "x": 29.9545, + "y": 26.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F3_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.9545, + "y": 26.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_G3", + "uuid": "8d1c3ad4-c4aa-4204-8850-72ae9efa7cb0", + "name": "corning_96_wellplate_360ul_flat_G3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.9545, + "y": 17.8145, + "z": 3.55 + }, + "position3d": { + "x": 29.9545, + "y": 17.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G3_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.9545, + "y": 17.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_H3", + "uuid": "29a47f79-7390-4445-a13d-08b6047af18f", + "name": "corning_96_wellplate_360ul_flat_H3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.9545, + "y": 8.8145, + "z": 3.55 + }, + "position3d": { + "x": 29.9545, + "y": 8.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H3_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.9545, + "y": 8.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_A4", + "uuid": "680a6f8c-c056-40b1-aab7-9ae3b96c69b5", + "name": "corning_96_wellplate_360ul_flat_A4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.9545, + "y": 71.8145, + "z": 3.55 + }, + "position3d": { + "x": 38.9545, + "y": 71.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A4_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.9545, + "y": 71.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_B4", + "uuid": "e133f597-f07f-429c-8f7d-5d7d9a43bdf4", + "name": "corning_96_wellplate_360ul_flat_B4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.9545, + "y": 62.8145, + "z": 3.55 + }, + "position3d": { + "x": 38.9545, + "y": 62.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B4_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.9545, + "y": 62.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_C4", + "uuid": "f7a96894-88da-4a8c-ba36-94d6ada5ef2b", + "name": "corning_96_wellplate_360ul_flat_C4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.9545, + "y": 53.8145, + "z": 3.55 + }, + "position3d": { + "x": 38.9545, + "y": 53.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C4_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.9545, + "y": 53.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_D4", + "uuid": "785982e0-eadd-4998-8d5d-98728fd638a6", + "name": "corning_96_wellplate_360ul_flat_D4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.9545, + "y": 44.8145, + "z": 3.55 + }, + "position3d": { + "x": 38.9545, + "y": 44.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D4_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.9545, + "y": 44.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_E4", + "uuid": "36f0eeed-a951-40a2-90e7-2034afc0e243", + "name": "corning_96_wellplate_360ul_flat_E4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.9545, + "y": 35.8145, + "z": 3.55 + }, + "position3d": { + "x": 38.9545, + "y": 35.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E4_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.9545, + "y": 35.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_F4", + "uuid": "8ddcedfb-124c-4ddf-afe6-e8be1fc23b13", + "name": "corning_96_wellplate_360ul_flat_F4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.9545, + "y": 26.8145, + "z": 3.55 + }, + "position3d": { + "x": 38.9545, + "y": 26.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F4_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.9545, + "y": 26.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_G4", + "uuid": "f752aeb2-c96d-4181-8bc4-b1ce81c94430", + "name": "corning_96_wellplate_360ul_flat_G4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.9545, + "y": 17.8145, + "z": 3.55 + }, + "position3d": { + "x": 38.9545, + "y": 17.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G4_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.9545, + "y": 17.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_H4", + "uuid": "ce8fe8d5-0313-42b8-824a-7fecc3da427f", + "name": "corning_96_wellplate_360ul_flat_H4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.9545, + "y": 8.8145, + "z": 3.55 + }, + "position3d": { + "x": 38.9545, + "y": 8.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H4_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.9545, + "y": 8.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_A5", + "uuid": "62010acf-397b-4b9b-a18e-eca773973c16", + "name": "corning_96_wellplate_360ul_flat_A5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.9545, + "y": 71.8145, + "z": 3.55 + }, + "position3d": { + "x": 47.9545, + "y": 71.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A5_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.9545, + "y": 71.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_B5", + "uuid": "9c7a067a-eea6-44b7-aa40-3390280036e0", + "name": "corning_96_wellplate_360ul_flat_B5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.9545, + "y": 62.8145, + "z": 3.55 + }, + "position3d": { + "x": 47.9545, + "y": 62.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B5_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.9545, + "y": 62.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_C5", + "uuid": "425d8b46-e226-47e0-aa8b-05cb3b550fab", + "name": "corning_96_wellplate_360ul_flat_C5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.9545, + "y": 53.8145, + "z": 3.55 + }, + "position3d": { + "x": 47.9545, + "y": 53.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C5_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.9545, + "y": 53.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_D5", + "uuid": "bea13ff4-0987-4c4b-831f-704a0dfba3b1", + "name": "corning_96_wellplate_360ul_flat_D5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.9545, + "y": 44.8145, + "z": 3.55 + }, + "position3d": { + "x": 47.9545, + "y": 44.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D5_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.9545, + "y": 44.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_E5", + "uuid": "4d44f220-6581-4681-8a11-583092d2d93d", + "name": "corning_96_wellplate_360ul_flat_E5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.9545, + "y": 35.8145, + "z": 3.55 + }, + "position3d": { + "x": 47.9545, + "y": 35.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E5_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.9545, + "y": 35.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_F5", + "uuid": "69b5bc01-7e68-4cc9-882a-efb4391bf040", + "name": "corning_96_wellplate_360ul_flat_F5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.9545, + "y": 26.8145, + "z": 3.55 + }, + "position3d": { + "x": 47.9545, + "y": 26.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F5_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.9545, + "y": 26.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_G5", + "uuid": "9afb8ebc-164f-4c6d-87e8-7d78b23a81ce", + "name": "corning_96_wellplate_360ul_flat_G5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.9545, + "y": 17.8145, + "z": 3.55 + }, + "position3d": { + "x": 47.9545, + "y": 17.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G5_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.9545, + "y": 17.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_H5", + "uuid": "41dc0fa1-fb66-4c91-9a0b-943d5cfd289d", + "name": "corning_96_wellplate_360ul_flat_H5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.9545, + "y": 8.8145, + "z": 3.55 + }, + "position3d": { + "x": 47.9545, + "y": 8.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H5_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.9545, + "y": 8.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_A6", + "uuid": "508fcfd4-bcef-4efe-81cf-e21e6d14eb37", + "name": "corning_96_wellplate_360ul_flat_A6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.9545, + "y": 71.8145, + "z": 3.55 + }, + "position3d": { + "x": 56.9545, + "y": 71.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A6_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.9545, + "y": 71.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_B6", + "uuid": "ef24eb67-9e6a-4a2e-aa41-7a19b29636ce", + "name": "corning_96_wellplate_360ul_flat_B6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.9545, + "y": 62.8145, + "z": 3.55 + }, + "position3d": { + "x": 56.9545, + "y": 62.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B6_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.9545, + "y": 62.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_C6", + "uuid": "04a3cea4-b8d9-4032-bc54-e3431a7a74cb", + "name": "corning_96_wellplate_360ul_flat_C6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.9545, + "y": 53.8145, + "z": 3.55 + }, + "position3d": { + "x": 56.9545, + "y": 53.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C6_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.9545, + "y": 53.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_D6", + "uuid": "460abe33-cba7-4d06-af8b-51d498518752", + "name": "corning_96_wellplate_360ul_flat_D6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.9545, + "y": 44.8145, + "z": 3.55 + }, + "position3d": { + "x": 56.9545, + "y": 44.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D6_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.9545, + "y": 44.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_E6", + "uuid": "dc2da178-8f9f-4c70-a2be-2290dd898dfd", + "name": "corning_96_wellplate_360ul_flat_E6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.9545, + "y": 35.8145, + "z": 3.55 + }, + "position3d": { + "x": 56.9545, + "y": 35.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E6_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.9545, + "y": 35.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_F6", + "uuid": "062219e8-896a-4e79-8b90-b53489242600", + "name": "corning_96_wellplate_360ul_flat_F6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.9545, + "y": 26.8145, + "z": 3.55 + }, + "position3d": { + "x": 56.9545, + "y": 26.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F6_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.9545, + "y": 26.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_G6", + "uuid": "7209972f-c619-4d94-b87d-a4a7a73fe1ce", + "name": "corning_96_wellplate_360ul_flat_G6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.9545, + "y": 17.8145, + "z": 3.55 + }, + "position3d": { + "x": 56.9545, + "y": 17.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G6_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.9545, + "y": 17.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_H6", + "uuid": "bb9d49b9-3057-4dd1-8645-229235aa5ab4", + "name": "corning_96_wellplate_360ul_flat_H6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.9545, + "y": 8.8145, + "z": 3.55 + }, + "position3d": { + "x": 56.9545, + "y": 8.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H6_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.9545, + "y": 8.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_A7", + "uuid": "149ffc66-8a5e-406c-9592-ceef45efceb2", + "name": "corning_96_wellplate_360ul_flat_A7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.9545, + "y": 71.8145, + "z": 3.55 + }, + "position3d": { + "x": 65.9545, + "y": 71.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A7_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.9545, + "y": 71.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_B7", + "uuid": "c3357220-610d-4e38-9b73-d1c512cc9575", + "name": "corning_96_wellplate_360ul_flat_B7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.9545, + "y": 62.8145, + "z": 3.55 + }, + "position3d": { + "x": 65.9545, + "y": 62.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B7_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.9545, + "y": 62.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_C7", + "uuid": "01b8f443-f14c-4f05-bb7d-207d54872ed6", + "name": "corning_96_wellplate_360ul_flat_C7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.9545, + "y": 53.8145, + "z": 3.55 + }, + "position3d": { + "x": 65.9545, + "y": 53.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C7_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.9545, + "y": 53.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_D7", + "uuid": "a662b277-9350-431b-a8e4-12b18740f87a", + "name": "corning_96_wellplate_360ul_flat_D7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.9545, + "y": 44.8145, + "z": 3.55 + }, + "position3d": { + "x": 65.9545, + "y": 44.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D7_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.9545, + "y": 44.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_E7", + "uuid": "0fab365b-cf61-4aea-89c8-7b8e97203bc4", + "name": "corning_96_wellplate_360ul_flat_E7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.9545, + "y": 35.8145, + "z": 3.55 + }, + "position3d": { + "x": 65.9545, + "y": 35.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E7_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.9545, + "y": 35.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_F7", + "uuid": "2f17a55e-1ffb-426a-ac78-34bd888005dc", + "name": "corning_96_wellplate_360ul_flat_F7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.9545, + "y": 26.8145, + "z": 3.55 + }, + "position3d": { + "x": 65.9545, + "y": 26.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F7_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.9545, + "y": 26.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_G7", + "uuid": "8fd10664-f82c-40b8-bb7c-bf1f3035c5a5", + "name": "corning_96_wellplate_360ul_flat_G7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.9545, + "y": 17.8145, + "z": 3.55 + }, + "position3d": { + "x": 65.9545, + "y": 17.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G7_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.9545, + "y": 17.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_H7", + "uuid": "67b1d959-3328-4211-ad26-4379a66d1350", + "name": "corning_96_wellplate_360ul_flat_H7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.9545, + "y": 8.8145, + "z": 3.55 + }, + "position3d": { + "x": 65.9545, + "y": 8.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H7_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.9545, + "y": 8.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_A8", + "uuid": "b14f5db1-6c03-4103-b21e-137350248a3c", + "name": "corning_96_wellplate_360ul_flat_A8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.9545, + "y": 71.8145, + "z": 3.55 + }, + "position3d": { + "x": 74.9545, + "y": 71.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A8_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.9545, + "y": 71.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_B8", + "uuid": "6ba53454-0e62-48c3-9542-84a22ee4c340", + "name": "corning_96_wellplate_360ul_flat_B8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.9545, + "y": 62.8145, + "z": 3.55 + }, + "position3d": { + "x": 74.9545, + "y": 62.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B8_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.9545, + "y": 62.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_C8", + "uuid": "00171cc3-58a1-4ed5-a89c-b60d6920fb50", + "name": "corning_96_wellplate_360ul_flat_C8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.9545, + "y": 53.8145, + "z": 3.55 + }, + "position3d": { + "x": 74.9545, + "y": 53.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C8_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.9545, + "y": 53.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_D8", + "uuid": "16a701fc-4241-4d4f-94dc-85ef40f4c6ba", + "name": "corning_96_wellplate_360ul_flat_D8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.9545, + "y": 44.8145, + "z": 3.55 + }, + "position3d": { + "x": 74.9545, + "y": 44.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D8_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.9545, + "y": 44.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_E8", + "uuid": "78c8297b-504f-421f-b66e-1e42da7f7300", + "name": "corning_96_wellplate_360ul_flat_E8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.9545, + "y": 35.8145, + "z": 3.55 + }, + "position3d": { + "x": 74.9545, + "y": 35.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E8_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.9545, + "y": 35.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_F8", + "uuid": "0f914a86-ee5a-4fdd-a5aa-5be5a71967fa", + "name": "corning_96_wellplate_360ul_flat_F8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.9545, + "y": 26.8145, + "z": 3.55 + }, + "position3d": { + "x": 74.9545, + "y": 26.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F8_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.9545, + "y": 26.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_G8", + "uuid": "2b171daa-e9cc-437b-a168-09db0411e4ce", + "name": "corning_96_wellplate_360ul_flat_G8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.9545, + "y": 17.8145, + "z": 3.55 + }, + "position3d": { + "x": 74.9545, + "y": 17.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G8_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.9545, + "y": 17.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_H8", + "uuid": "a75fab26-c539-45ea-ac18-87866cfed201", + "name": "corning_96_wellplate_360ul_flat_H8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.9545, + "y": 8.8145, + "z": 3.55 + }, + "position3d": { + "x": 74.9545, + "y": 8.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H8_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.9545, + "y": 8.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_A9", + "uuid": "da0a2f66-7302-454b-9d3d-78288a23ab77", + "name": "corning_96_wellplate_360ul_flat_A9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.9545, + "y": 71.8145, + "z": 3.55 + }, + "position3d": { + "x": 83.9545, + "y": 71.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A9_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.9545, + "y": 71.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_B9", + "uuid": "d09c2d2d-3121-4210-b8f0-3269b85810b3", + "name": "corning_96_wellplate_360ul_flat_B9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.9545, + "y": 62.8145, + "z": 3.55 + }, + "position3d": { + "x": 83.9545, + "y": 62.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B9_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.9545, + "y": 62.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_C9", + "uuid": "49f1cd2f-3478-4b36-b719-00152791327d", + "name": "corning_96_wellplate_360ul_flat_C9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.9545, + "y": 53.8145, + "z": 3.55 + }, + "position3d": { + "x": 83.9545, + "y": 53.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C9_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.9545, + "y": 53.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_D9", + "uuid": "a30dfbad-a50a-400a-a53e-cebd6d38c828", + "name": "corning_96_wellplate_360ul_flat_D9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.9545, + "y": 44.8145, + "z": 3.55 + }, + "position3d": { + "x": 83.9545, + "y": 44.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D9_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.9545, + "y": 44.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_E9", + "uuid": "4335a1ca-037b-4590-bad2-63cdb3a0f700", + "name": "corning_96_wellplate_360ul_flat_E9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.9545, + "y": 35.8145, + "z": 3.55 + }, + "position3d": { + "x": 83.9545, + "y": 35.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E9_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.9545, + "y": 35.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_F9", + "uuid": "25dd1873-f128-4ffe-b64e-43f887dc8985", + "name": "corning_96_wellplate_360ul_flat_F9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.9545, + "y": 26.8145, + "z": 3.55 + }, + "position3d": { + "x": 83.9545, + "y": 26.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F9_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.9545, + "y": 26.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_G9", + "uuid": "c905fb66-a08b-4e83-8b83-4e3f95043299", + "name": "corning_96_wellplate_360ul_flat_G9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.9545, + "y": 17.8145, + "z": 3.55 + }, + "position3d": { + "x": 83.9545, + "y": 17.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G9_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.9545, + "y": 17.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_H9", + "uuid": "f2d0f5b9-0ec1-416b-8ec3-5dfda24c39b9", + "name": "corning_96_wellplate_360ul_flat_H9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.9545, + "y": 8.8145, + "z": 3.55 + }, + "position3d": { + "x": 83.9545, + "y": 8.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H9_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.9545, + "y": 8.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_A10", + "uuid": "d5f46691-8657-4232-94fd-c4bd286d7f80", + "name": "corning_96_wellplate_360ul_flat_A10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.9545, + "y": 71.8145, + "z": 3.55 + }, + "position3d": { + "x": 92.9545, + "y": 71.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A10_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.9545, + "y": 71.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_B10", + "uuid": "59aee92f-e910-42dc-a859-2ec3e257422d", + "name": "corning_96_wellplate_360ul_flat_B10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.9545, + "y": 62.8145, + "z": 3.55 + }, + "position3d": { + "x": 92.9545, + "y": 62.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B10_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.9545, + "y": 62.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_C10", + "uuid": "404dd5de-93f0-4920-9bfe-12718ab3ec16", + "name": "corning_96_wellplate_360ul_flat_C10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.9545, + "y": 53.8145, + "z": 3.55 + }, + "position3d": { + "x": 92.9545, + "y": 53.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C10_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.9545, + "y": 53.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_D10", + "uuid": "e9bbba13-e5cf-4f84-a2b6-6e9a60226379", + "name": "corning_96_wellplate_360ul_flat_D10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.9545, + "y": 44.8145, + "z": 3.55 + }, + "position3d": { + "x": 92.9545, + "y": 44.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D10_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.9545, + "y": 44.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_E10", + "uuid": "b3ac6821-3964-4c59-a7a3-2da1c0a8f210", + "name": "corning_96_wellplate_360ul_flat_E10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.9545, + "y": 35.8145, + "z": 3.55 + }, + "position3d": { + "x": 92.9545, + "y": 35.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E10_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.9545, + "y": 35.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_F10", + "uuid": "c175d174-c2e3-4d84-87fd-4e70809b2e3e", + "name": "corning_96_wellplate_360ul_flat_F10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.9545, + "y": 26.8145, + "z": 3.55 + }, + "position3d": { + "x": 92.9545, + "y": 26.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F10_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.9545, + "y": 26.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_G10", + "uuid": "985435a9-8b48-41b9-b5e2-195bb17c316c", + "name": "corning_96_wellplate_360ul_flat_G10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.9545, + "y": 17.8145, + "z": 3.55 + }, + "position3d": { + "x": 92.9545, + "y": 17.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G10_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.9545, + "y": 17.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_H10", + "uuid": "0b398c64-078f-476e-ace8-e39518f1d35f", + "name": "corning_96_wellplate_360ul_flat_H10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.9545, + "y": 8.8145, + "z": 3.55 + }, + "position3d": { + "x": 92.9545, + "y": 8.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H10_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.9545, + "y": 8.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_A11", + "uuid": "d6f6d224-a2f1-451d-ad81-7ab3aa21becf", + "name": "corning_96_wellplate_360ul_flat_A11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.9545, + "y": 71.8145, + "z": 3.55 + }, + "position3d": { + "x": 101.9545, + "y": 71.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A11_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.9545, + "y": 71.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_B11", + "uuid": "e27f7c17-d9b9-42fa-ab37-fe0a66c8ca17", + "name": "corning_96_wellplate_360ul_flat_B11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.9545, + "y": 62.8145, + "z": 3.55 + }, + "position3d": { + "x": 101.9545, + "y": 62.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B11_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.9545, + "y": 62.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_C11", + "uuid": "fade6406-6f01-4d27-bbc4-2b5fbd821750", + "name": "corning_96_wellplate_360ul_flat_C11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.9545, + "y": 53.8145, + "z": 3.55 + }, + "position3d": { + "x": 101.9545, + "y": 53.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C11_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.9545, + "y": 53.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_D11", + "uuid": "4f89e797-18fd-454c-84fa-97f9c06e8c1e", + "name": "corning_96_wellplate_360ul_flat_D11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.9545, + "y": 44.8145, + "z": 3.55 + }, + "position3d": { + "x": 101.9545, + "y": 44.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D11_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.9545, + "y": 44.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_E11", + "uuid": "67ea38e9-0948-404e-a6b5-d3f7d9de1129", + "name": "corning_96_wellplate_360ul_flat_E11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.9545, + "y": 35.8145, + "z": 3.55 + }, + "position3d": { + "x": 101.9545, + "y": 35.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E11_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.9545, + "y": 35.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_F11", + "uuid": "9dbb3f6d-ab97-432b-abbb-f3b7906ef728", + "name": "corning_96_wellplate_360ul_flat_F11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.9545, + "y": 26.8145, + "z": 3.55 + }, + "position3d": { + "x": 101.9545, + "y": 26.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F11_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.9545, + "y": 26.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_G11", + "uuid": "dd290854-14c0-4ddc-bb98-7974e5210963", + "name": "corning_96_wellplate_360ul_flat_G11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.9545, + "y": 17.8145, + "z": 3.55 + }, + "position3d": { + "x": 101.9545, + "y": 17.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G11_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.9545, + "y": 17.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_H11", + "uuid": "f7239816-f393-430c-867e-1191fd3ca3ca", + "name": "corning_96_wellplate_360ul_flat_H11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.9545, + "y": 8.8145, + "z": 3.55 + }, + "position3d": { + "x": 101.9545, + "y": 8.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H11_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.9545, + "y": 8.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_A12", + "uuid": "dfc5f161-b925-49c6-9f90-7b3bfde85664", + "name": "corning_96_wellplate_360ul_flat_A12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.9545, + "y": 71.8145, + "z": 3.55 + }, + "position3d": { + "x": 110.9545, + "y": 71.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A12_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.9545, + "y": 71.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_B12", + "uuid": "2386572f-0f1e-4cf4-96d9-925550fbbda8", + "name": "corning_96_wellplate_360ul_flat_B12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.9545, + "y": 62.8145, + "z": 3.55 + }, + "position3d": { + "x": 110.9545, + "y": 62.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B12_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.9545, + "y": 62.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_C12", + "uuid": "05ebbb41-d67a-47c8-98db-e98794265d42", + "name": "corning_96_wellplate_360ul_flat_C12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.9545, + "y": 53.8145, + "z": 3.55 + }, + "position3d": { + "x": 110.9545, + "y": 53.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C12_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.9545, + "y": 53.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_D12", + "uuid": "39cbb792-0759-4d5c-9564-4f1105f7450f", + "name": "corning_96_wellplate_360ul_flat_D12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.9545, + "y": 44.8145, + "z": 3.55 + }, + "position3d": { + "x": 110.9545, + "y": 44.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D12_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.9545, + "y": 44.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_E12", + "uuid": "69de92c5-9ad2-44cb-b8fd-3dde47c68a83", + "name": "corning_96_wellplate_360ul_flat_E12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.9545, + "y": 35.8145, + "z": 3.55 + }, + "position3d": { + "x": 110.9545, + "y": 35.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E12_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.9545, + "y": 35.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_F12", + "uuid": "6ea183dd-fd2e-4f65-8fcd-60383b840b5f", + "name": "corning_96_wellplate_360ul_flat_F12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.9545, + "y": 26.8145, + "z": 3.55 + }, + "position3d": { + "x": 110.9545, + "y": 26.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F12_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.9545, + "y": 26.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_G12", + "uuid": "e7fbc96e-8c2a-406c-a93e-5dafc0d7596a", + "name": "corning_96_wellplate_360ul_flat_G12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.9545, + "y": 17.8145, + "z": 3.55 + }, + "position3d": { + "x": 110.9545, + "y": 17.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G12_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.9545, + "y": 17.8145, + "z": 3.55 + } + }, + { + "id": "corning_96_wellplate_360ul_flat_H12", + "uuid": "01dbc99f-cb38-4bdf-8614-a20a7fe87b54", + "name": "corning_96_wellplate_360ul_flat_H12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6f71cbb6-78f3-4436-9999-a3b353c5905c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.67, + "width": 4.851, + "height": 4.851 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.9545, + "y": 8.8145, + "z": 3.55 + }, + "position3d": { + "x": 110.9545, + "y": 8.8145, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.851, + "size_y": 4.851, + "size_z": 10.67, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 360, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H12_volume_tracker", + "max_volume": 360, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.9545, + "y": 8.8145, + "z": 3.55 + } + } + ] + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt", + "category": [ + "plates" + ], + "class": { + "module": "pylabrobot.resources.opentrons.plates:nest_96_wellplate_100ul_pcr_full_skirt", + "type": "pylabrobot" + }, + "description": "Nest 96 wellplate 100ul pcr full skirt", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/opentrons/plates.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "model": { + "children_mesh": "generic_labware_tube_10_75/meshes/0_base.stl", + "children_mesh_path": "https://leap-lab.oss-cn-zhangjiakou.aliyuncs.com/uni-lab/resources/generic_labware_tube_10_75/modal.xacro", + "children_mesh_tf": [ + 0.0018, + 0.0018, + 0, + -1.5708, + 0, + 0 + ], + "mesh": "tecan_nested_tip_rack/meshes/plate.stl", + "mesh_tf": [ + 0.064, + 0.043, + 0, + -1.5708, + 0, + 1.5708 + ], + "path": "https://leap-lab.oss-cn-zhangjiakou.aliyuncs.com/uni-lab/resources/tecan_nested_tip_rack/modal.xacro", + "type": "resource" + }, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt", + "uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "name": "nest_96_wellplate_100ul_pcr_full_skirt", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "plate", + "class": "", + "pose": { + "size": { + "depth": 15.7, + "width": 127.76, + "height": 85.48 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Plate", + "size_x": 127.76, + "size_y": 85.48, + "size_z": 15.7, + "category": "plate", + "model": "NEST 96 Well Plate 100 µL PCR Full Skirt", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "nest_96_wellplate_100ul_pcr_full_skirt_A1", + "B1": "nest_96_wellplate_100ul_pcr_full_skirt_B1", + "C1": "nest_96_wellplate_100ul_pcr_full_skirt_C1", + "D1": "nest_96_wellplate_100ul_pcr_full_skirt_D1", + "E1": "nest_96_wellplate_100ul_pcr_full_skirt_E1", + "F1": "nest_96_wellplate_100ul_pcr_full_skirt_F1", + "G1": "nest_96_wellplate_100ul_pcr_full_skirt_G1", + "H1": "nest_96_wellplate_100ul_pcr_full_skirt_H1", + "A2": "nest_96_wellplate_100ul_pcr_full_skirt_A2", + "B2": "nest_96_wellplate_100ul_pcr_full_skirt_B2", + "C2": "nest_96_wellplate_100ul_pcr_full_skirt_C2", + "D2": "nest_96_wellplate_100ul_pcr_full_skirt_D2", + "E2": "nest_96_wellplate_100ul_pcr_full_skirt_E2", + "F2": "nest_96_wellplate_100ul_pcr_full_skirt_F2", + "G2": "nest_96_wellplate_100ul_pcr_full_skirt_G2", + "H2": "nest_96_wellplate_100ul_pcr_full_skirt_H2", + "A3": "nest_96_wellplate_100ul_pcr_full_skirt_A3", + "B3": "nest_96_wellplate_100ul_pcr_full_skirt_B3", + "C3": "nest_96_wellplate_100ul_pcr_full_skirt_C3", + "D3": "nest_96_wellplate_100ul_pcr_full_skirt_D3", + "E3": "nest_96_wellplate_100ul_pcr_full_skirt_E3", + "F3": "nest_96_wellplate_100ul_pcr_full_skirt_F3", + "G3": "nest_96_wellplate_100ul_pcr_full_skirt_G3", + "H3": "nest_96_wellplate_100ul_pcr_full_skirt_H3", + "A4": "nest_96_wellplate_100ul_pcr_full_skirt_A4", + "B4": "nest_96_wellplate_100ul_pcr_full_skirt_B4", + "C4": "nest_96_wellplate_100ul_pcr_full_skirt_C4", + "D4": "nest_96_wellplate_100ul_pcr_full_skirt_D4", + "E4": "nest_96_wellplate_100ul_pcr_full_skirt_E4", + "F4": "nest_96_wellplate_100ul_pcr_full_skirt_F4", + "G4": "nest_96_wellplate_100ul_pcr_full_skirt_G4", + "H4": "nest_96_wellplate_100ul_pcr_full_skirt_H4", + "A5": "nest_96_wellplate_100ul_pcr_full_skirt_A5", + "B5": "nest_96_wellplate_100ul_pcr_full_skirt_B5", + "C5": "nest_96_wellplate_100ul_pcr_full_skirt_C5", + "D5": "nest_96_wellplate_100ul_pcr_full_skirt_D5", + "E5": "nest_96_wellplate_100ul_pcr_full_skirt_E5", + "F5": "nest_96_wellplate_100ul_pcr_full_skirt_F5", + "G5": "nest_96_wellplate_100ul_pcr_full_skirt_G5", + "H5": "nest_96_wellplate_100ul_pcr_full_skirt_H5", + "A6": "nest_96_wellplate_100ul_pcr_full_skirt_A6", + "B6": "nest_96_wellplate_100ul_pcr_full_skirt_B6", + "C6": "nest_96_wellplate_100ul_pcr_full_skirt_C6", + "D6": "nest_96_wellplate_100ul_pcr_full_skirt_D6", + "E6": "nest_96_wellplate_100ul_pcr_full_skirt_E6", + "F6": "nest_96_wellplate_100ul_pcr_full_skirt_F6", + "G6": "nest_96_wellplate_100ul_pcr_full_skirt_G6", + "H6": "nest_96_wellplate_100ul_pcr_full_skirt_H6", + "A7": "nest_96_wellplate_100ul_pcr_full_skirt_A7", + "B7": "nest_96_wellplate_100ul_pcr_full_skirt_B7", + "C7": "nest_96_wellplate_100ul_pcr_full_skirt_C7", + "D7": "nest_96_wellplate_100ul_pcr_full_skirt_D7", + "E7": "nest_96_wellplate_100ul_pcr_full_skirt_E7", + "F7": "nest_96_wellplate_100ul_pcr_full_skirt_F7", + "G7": "nest_96_wellplate_100ul_pcr_full_skirt_G7", + "H7": "nest_96_wellplate_100ul_pcr_full_skirt_H7", + "A8": "nest_96_wellplate_100ul_pcr_full_skirt_A8", + "B8": "nest_96_wellplate_100ul_pcr_full_skirt_B8", + "C8": "nest_96_wellplate_100ul_pcr_full_skirt_C8", + "D8": "nest_96_wellplate_100ul_pcr_full_skirt_D8", + "E8": "nest_96_wellplate_100ul_pcr_full_skirt_E8", + "F8": "nest_96_wellplate_100ul_pcr_full_skirt_F8", + "G8": "nest_96_wellplate_100ul_pcr_full_skirt_G8", + "H8": "nest_96_wellplate_100ul_pcr_full_skirt_H8", + "A9": "nest_96_wellplate_100ul_pcr_full_skirt_A9", + "B9": "nest_96_wellplate_100ul_pcr_full_skirt_B9", + "C9": "nest_96_wellplate_100ul_pcr_full_skirt_C9", + "D9": "nest_96_wellplate_100ul_pcr_full_skirt_D9", + "E9": "nest_96_wellplate_100ul_pcr_full_skirt_E9", + "F9": "nest_96_wellplate_100ul_pcr_full_skirt_F9", + "G9": "nest_96_wellplate_100ul_pcr_full_skirt_G9", + "H9": "nest_96_wellplate_100ul_pcr_full_skirt_H9", + "A10": "nest_96_wellplate_100ul_pcr_full_skirt_A10", + "B10": "nest_96_wellplate_100ul_pcr_full_skirt_B10", + "C10": "nest_96_wellplate_100ul_pcr_full_skirt_C10", + "D10": "nest_96_wellplate_100ul_pcr_full_skirt_D10", + "E10": "nest_96_wellplate_100ul_pcr_full_skirt_E10", + "F10": "nest_96_wellplate_100ul_pcr_full_skirt_F10", + "G10": "nest_96_wellplate_100ul_pcr_full_skirt_G10", + "H10": "nest_96_wellplate_100ul_pcr_full_skirt_H10", + "A11": "nest_96_wellplate_100ul_pcr_full_skirt_A11", + "B11": "nest_96_wellplate_100ul_pcr_full_skirt_B11", + "C11": "nest_96_wellplate_100ul_pcr_full_skirt_C11", + "D11": "nest_96_wellplate_100ul_pcr_full_skirt_D11", + "E11": "nest_96_wellplate_100ul_pcr_full_skirt_E11", + "F11": "nest_96_wellplate_100ul_pcr_full_skirt_F11", + "G11": "nest_96_wellplate_100ul_pcr_full_skirt_G11", + "H11": "nest_96_wellplate_100ul_pcr_full_skirt_H11", + "A12": "nest_96_wellplate_100ul_pcr_full_skirt_A12", + "B12": "nest_96_wellplate_100ul_pcr_full_skirt_B12", + "C12": "nest_96_wellplate_100ul_pcr_full_skirt_C12", + "D12": "nest_96_wellplate_100ul_pcr_full_skirt_D12", + "E12": "nest_96_wellplate_100ul_pcr_full_skirt_E12", + "F12": "nest_96_wellplate_100ul_pcr_full_skirt_F12", + "G12": "nest_96_wellplate_100ul_pcr_full_skirt_G12", + "H12": "nest_96_wellplate_100ul_pcr_full_skirt_H12" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_A1", + "uuid": "35b0628f-5dcd-4c5c-8abd-f9708a89c453", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 12.492, + "y": 72.352, + "z": 0.92 + }, + "position3d": { + "x": 12.492, + "y": 72.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A1_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 12.492, + "y": 72.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_B1", + "uuid": "28b2dfba-fe39-4a6b-997a-4d5c8a0b1558", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_B1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 12.492, + "y": 63.352, + "z": 0.92 + }, + "position3d": { + "x": 12.492, + "y": 63.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B1_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 12.492, + "y": 63.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_C1", + "uuid": "5dfd4896-4c46-42f7-aa0a-a50313100371", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_C1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 12.492, + "y": 54.352, + "z": 0.92 + }, + "position3d": { + "x": 12.492, + "y": 54.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C1_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 12.492, + "y": 54.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_D1", + "uuid": "c33aef87-a120-498b-81ec-b87a41e65d97", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_D1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 12.492, + "y": 45.352, + "z": 0.92 + }, + "position3d": { + "x": 12.492, + "y": 45.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D1_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 12.492, + "y": 45.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_E1", + "uuid": "43dc312d-d80f-4c8c-b167-6aafbebcdb9f", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_E1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 12.492, + "y": 36.352, + "z": 0.92 + }, + "position3d": { + "x": 12.492, + "y": 36.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E1_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 12.492, + "y": 36.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_F1", + "uuid": "da921c45-1416-461d-a259-3326309a3b6e", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_F1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 12.492, + "y": 27.352, + "z": 0.92 + }, + "position3d": { + "x": 12.492, + "y": 27.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F1_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 12.492, + "y": 27.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_G1", + "uuid": "3eac43fe-124b-48ab-a2e5-f62250f1c098", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_G1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 12.492, + "y": 18.352, + "z": 0.92 + }, + "position3d": { + "x": 12.492, + "y": 18.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G1_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 12.492, + "y": 18.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_H1", + "uuid": "f5e1c093-5fb3-4f92-b2a3-c151d1ec4da4", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_H1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 12.492, + "y": 9.352, + "z": 0.92 + }, + "position3d": { + "x": 12.492, + "y": 9.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H1_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 12.492, + "y": 9.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_A2", + "uuid": "a9a1565b-2b54-4349-b7f6-f1b16cae7b93", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 21.492, + "y": 72.352, + "z": 0.92 + }, + "position3d": { + "x": 21.492, + "y": 72.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A2_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 21.492, + "y": 72.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_B2", + "uuid": "2820d7bc-3dbd-4c21-a9ee-27c3d022caef", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_B2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 21.492, + "y": 63.352, + "z": 0.92 + }, + "position3d": { + "x": 21.492, + "y": 63.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B2_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 21.492, + "y": 63.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_C2", + "uuid": "a6f24a36-f6a9-4baa-84b5-c26bdf31e253", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_C2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 21.492, + "y": 54.352, + "z": 0.92 + }, + "position3d": { + "x": 21.492, + "y": 54.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C2_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 21.492, + "y": 54.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_D2", + "uuid": "048b739c-f3eb-497a-b7e7-f62116af2d5b", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_D2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 21.492, + "y": 45.352, + "z": 0.92 + }, + "position3d": { + "x": 21.492, + "y": 45.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D2_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 21.492, + "y": 45.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_E2", + "uuid": "b2487bb2-5b66-4d38-bc15-48754931b054", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_E2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 21.492, + "y": 36.352, + "z": 0.92 + }, + "position3d": { + "x": 21.492, + "y": 36.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E2_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 21.492, + "y": 36.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_F2", + "uuid": "e2fad704-76fb-42d0-8657-d35480d9b058", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_F2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 21.492, + "y": 27.352, + "z": 0.92 + }, + "position3d": { + "x": 21.492, + "y": 27.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F2_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 21.492, + "y": 27.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_G2", + "uuid": "69c08c1a-7499-4ea6-9fa1-bb9fe2762332", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_G2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 21.492, + "y": 18.352, + "z": 0.92 + }, + "position3d": { + "x": 21.492, + "y": 18.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G2_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 21.492, + "y": 18.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_H2", + "uuid": "b735d860-386d-4a64-b85d-4d8fc952cff4", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_H2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 21.492, + "y": 9.352, + "z": 0.92 + }, + "position3d": { + "x": 21.492, + "y": 9.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H2_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 21.492, + "y": 9.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_A3", + "uuid": "b8386f51-9b6c-40d3-833f-79a2ed3bc0c0", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 30.492, + "y": 72.352, + "z": 0.92 + }, + "position3d": { + "x": 30.492, + "y": 72.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A3_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 30.492, + "y": 72.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_B3", + "uuid": "2f644d56-2c5d-4496-9f9d-81d865f30c0d", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_B3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 30.492, + "y": 63.352, + "z": 0.92 + }, + "position3d": { + "x": 30.492, + "y": 63.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B3_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 30.492, + "y": 63.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_C3", + "uuid": "cb666d78-860c-4624-b2d6-11a738dfb7ad", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_C3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 30.492, + "y": 54.352, + "z": 0.92 + }, + "position3d": { + "x": 30.492, + "y": 54.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C3_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 30.492, + "y": 54.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_D3", + "uuid": "e74e01ed-4f5a-4c89-b91a-1b6e7798ad50", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_D3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 30.492, + "y": 45.352, + "z": 0.92 + }, + "position3d": { + "x": 30.492, + "y": 45.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D3_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 30.492, + "y": 45.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_E3", + "uuid": "7d235a81-a26b-49ee-bc5a-62cde7bd4f48", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_E3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 30.492, + "y": 36.352, + "z": 0.92 + }, + "position3d": { + "x": 30.492, + "y": 36.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E3_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 30.492, + "y": 36.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_F3", + "uuid": "1773973f-6d3c-424e-ac32-d4d643af1c9a", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_F3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 30.492, + "y": 27.352, + "z": 0.92 + }, + "position3d": { + "x": 30.492, + "y": 27.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F3_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 30.492, + "y": 27.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_G3", + "uuid": "c65a39fb-d0a3-456f-9d1d-450388cb255e", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_G3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 30.492, + "y": 18.352, + "z": 0.92 + }, + "position3d": { + "x": 30.492, + "y": 18.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G3_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 30.492, + "y": 18.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_H3", + "uuid": "7169a049-8c93-45c3-af8d-d73d03733bf3", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_H3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 30.492, + "y": 9.352, + "z": 0.92 + }, + "position3d": { + "x": 30.492, + "y": 9.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H3_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 30.492, + "y": 9.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_A4", + "uuid": "986a45a4-46f6-4a01-ab17-382e77eabb23", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_A4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 39.492, + "y": 72.352, + "z": 0.92 + }, + "position3d": { + "x": 39.492, + "y": 72.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A4_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 39.492, + "y": 72.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_B4", + "uuid": "8feca0b9-c7d4-434c-86f2-879f348ca111", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_B4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 39.492, + "y": 63.352, + "z": 0.92 + }, + "position3d": { + "x": 39.492, + "y": 63.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B4_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 39.492, + "y": 63.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_C4", + "uuid": "ef9299be-9324-4e01-92be-2c1e36ca2155", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_C4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 39.492, + "y": 54.352, + "z": 0.92 + }, + "position3d": { + "x": 39.492, + "y": 54.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C4_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 39.492, + "y": 54.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_D4", + "uuid": "f1082dcf-9a7a-4446-b1d8-04a2aed660b5", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_D4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 39.492, + "y": 45.352, + "z": 0.92 + }, + "position3d": { + "x": 39.492, + "y": 45.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D4_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 39.492, + "y": 45.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_E4", + "uuid": "051a8b82-2bea-49c4-9782-4bd760ff6348", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_E4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 39.492, + "y": 36.352, + "z": 0.92 + }, + "position3d": { + "x": 39.492, + "y": 36.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E4_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 39.492, + "y": 36.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_F4", + "uuid": "42f370a3-d82b-4514-898f-5389ab645bc4", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_F4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 39.492, + "y": 27.352, + "z": 0.92 + }, + "position3d": { + "x": 39.492, + "y": 27.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F4_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 39.492, + "y": 27.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_G4", + "uuid": "7cfab909-b239-4ed9-a53a-dc1d4090d952", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_G4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 39.492, + "y": 18.352, + "z": 0.92 + }, + "position3d": { + "x": 39.492, + "y": 18.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G4_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 39.492, + "y": 18.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_H4", + "uuid": "109e734d-abf4-4648-806c-cc56a439ceb8", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_H4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 39.492, + "y": 9.352, + "z": 0.92 + }, + "position3d": { + "x": 39.492, + "y": 9.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H4_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 39.492, + "y": 9.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_A5", + "uuid": "41e1fd79-84f9-4523-9215-cda4e0efe34e", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_A5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 48.492, + "y": 72.352, + "z": 0.92 + }, + "position3d": { + "x": 48.492, + "y": 72.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A5_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 48.492, + "y": 72.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_B5", + "uuid": "7d2fb470-ba5c-4913-92c7-aba86bc249fc", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_B5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 48.492, + "y": 63.352, + "z": 0.92 + }, + "position3d": { + "x": 48.492, + "y": 63.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B5_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 48.492, + "y": 63.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_C5", + "uuid": "ac02e40b-b13c-40ee-bbfa-278be8299dfa", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_C5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 48.492, + "y": 54.352, + "z": 0.92 + }, + "position3d": { + "x": 48.492, + "y": 54.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C5_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 48.492, + "y": 54.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_D5", + "uuid": "720cd7d9-f20e-442d-903a-adc2a93f1db7", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_D5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 48.492, + "y": 45.352, + "z": 0.92 + }, + "position3d": { + "x": 48.492, + "y": 45.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D5_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 48.492, + "y": 45.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_E5", + "uuid": "9e747f9f-8e79-4360-a5ae-6fd560f10d5d", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_E5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 48.492, + "y": 36.352, + "z": 0.92 + }, + "position3d": { + "x": 48.492, + "y": 36.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E5_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 48.492, + "y": 36.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_F5", + "uuid": "c35e4f53-ef3c-4273-9df3-60f2a3f1a470", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_F5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 48.492, + "y": 27.352, + "z": 0.92 + }, + "position3d": { + "x": 48.492, + "y": 27.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F5_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 48.492, + "y": 27.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_G5", + "uuid": "ec6fbbeb-c181-4edd-90fc-1f41bc5806c8", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_G5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 48.492, + "y": 18.352, + "z": 0.92 + }, + "position3d": { + "x": 48.492, + "y": 18.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G5_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 48.492, + "y": 18.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_H5", + "uuid": "39800a41-a1c4-4834-a343-c00f467655e0", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_H5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 48.492, + "y": 9.352, + "z": 0.92 + }, + "position3d": { + "x": 48.492, + "y": 9.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H5_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 48.492, + "y": 9.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_A6", + "uuid": "83ef4cdf-3ec8-4654-8153-ce66da2a6202", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_A6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 57.492, + "y": 72.352, + "z": 0.92 + }, + "position3d": { + "x": 57.492, + "y": 72.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A6_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 57.492, + "y": 72.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_B6", + "uuid": "c5cc8267-7b54-4883-bcbe-a7487633252d", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_B6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 57.492, + "y": 63.352, + "z": 0.92 + }, + "position3d": { + "x": 57.492, + "y": 63.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B6_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 57.492, + "y": 63.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_C6", + "uuid": "bf73ef55-abf7-4020-baab-d625c55b9975", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_C6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 57.492, + "y": 54.352, + "z": 0.92 + }, + "position3d": { + "x": 57.492, + "y": 54.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C6_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 57.492, + "y": 54.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_D6", + "uuid": "a21e4ad1-2b07-4a6f-902f-5da928364746", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_D6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 57.492, + "y": 45.352, + "z": 0.92 + }, + "position3d": { + "x": 57.492, + "y": 45.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D6_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 57.492, + "y": 45.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_E6", + "uuid": "eb17afc5-00db-45e4-bb25-a24edec063c3", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_E6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 57.492, + "y": 36.352, + "z": 0.92 + }, + "position3d": { + "x": 57.492, + "y": 36.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E6_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 57.492, + "y": 36.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_F6", + "uuid": "7ed05cca-f23b-47c4-9e00-6e14e9fcecfe", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_F6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 57.492, + "y": 27.352, + "z": 0.92 + }, + "position3d": { + "x": 57.492, + "y": 27.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F6_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 57.492, + "y": 27.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_G6", + "uuid": "cd0f5b04-d950-4888-b185-031a7e84dd8c", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_G6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 57.492, + "y": 18.352, + "z": 0.92 + }, + "position3d": { + "x": 57.492, + "y": 18.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G6_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 57.492, + "y": 18.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_H6", + "uuid": "04100ce0-3880-4a06-9175-81fc5112c880", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_H6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 57.492, + "y": 9.352, + "z": 0.92 + }, + "position3d": { + "x": 57.492, + "y": 9.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H6_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 57.492, + "y": 9.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_A7", + "uuid": "dbf8ff87-d253-4127-be94-9bc37c6bf18d", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_A7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 66.492, + "y": 72.352, + "z": 0.92 + }, + "position3d": { + "x": 66.492, + "y": 72.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A7_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 66.492, + "y": 72.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_B7", + "uuid": "a4cb6fb2-2d51-40c6-bffd-4ee3f6c14824", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_B7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 66.492, + "y": 63.352, + "z": 0.92 + }, + "position3d": { + "x": 66.492, + "y": 63.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B7_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 66.492, + "y": 63.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_C7", + "uuid": "4609b1dc-c03c-4f51-a082-4b79ff80b96a", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_C7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 66.492, + "y": 54.352, + "z": 0.92 + }, + "position3d": { + "x": 66.492, + "y": 54.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C7_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 66.492, + "y": 54.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_D7", + "uuid": "e1edb280-af43-4c4d-8834-c59d0b9573bc", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_D7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 66.492, + "y": 45.352, + "z": 0.92 + }, + "position3d": { + "x": 66.492, + "y": 45.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D7_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 66.492, + "y": 45.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_E7", + "uuid": "0a8997c0-918c-4eae-9ffc-96e77b2a10b9", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_E7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 66.492, + "y": 36.352, + "z": 0.92 + }, + "position3d": { + "x": 66.492, + "y": 36.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E7_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 66.492, + "y": 36.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_F7", + "uuid": "c851de72-f92f-427f-ac13-efbd84d5c856", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_F7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 66.492, + "y": 27.352, + "z": 0.92 + }, + "position3d": { + "x": 66.492, + "y": 27.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F7_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 66.492, + "y": 27.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_G7", + "uuid": "c65e791e-2325-48f8-9ce8-a0a857ef8f66", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_G7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 66.492, + "y": 18.352, + "z": 0.92 + }, + "position3d": { + "x": 66.492, + "y": 18.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G7_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 66.492, + "y": 18.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_H7", + "uuid": "647e46cd-9ac9-44ca-ad7b-3d03efe70cc9", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_H7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 66.492, + "y": 9.352, + "z": 0.92 + }, + "position3d": { + "x": 66.492, + "y": 9.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H7_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 66.492, + "y": 9.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_A8", + "uuid": "7d314a60-99c8-437b-8ecd-782cb1fdf1c1", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_A8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 75.492, + "y": 72.352, + "z": 0.92 + }, + "position3d": { + "x": 75.492, + "y": 72.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A8_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 75.492, + "y": 72.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_B8", + "uuid": "c1eb4334-11a1-48d6-a1ec-0517a805e784", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_B8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 75.492, + "y": 63.352, + "z": 0.92 + }, + "position3d": { + "x": 75.492, + "y": 63.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B8_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 75.492, + "y": 63.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_C8", + "uuid": "a7787faa-6646-4352-a2da-b619d5cf673d", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_C8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 75.492, + "y": 54.352, + "z": 0.92 + }, + "position3d": { + "x": 75.492, + "y": 54.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C8_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 75.492, + "y": 54.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_D8", + "uuid": "91da2b4a-5835-4a7f-b379-4cdc6e63f91f", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_D8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 75.492, + "y": 45.352, + "z": 0.92 + }, + "position3d": { + "x": 75.492, + "y": 45.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D8_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 75.492, + "y": 45.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_E8", + "uuid": "a043b65d-72b2-4d58-aa2a-32d67225bc4f", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_E8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 75.492, + "y": 36.352, + "z": 0.92 + }, + "position3d": { + "x": 75.492, + "y": 36.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E8_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 75.492, + "y": 36.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_F8", + "uuid": "0d57d9cd-9a81-4852-aa60-8b9117fe400b", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_F8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 75.492, + "y": 27.352, + "z": 0.92 + }, + "position3d": { + "x": 75.492, + "y": 27.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F8_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 75.492, + "y": 27.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_G8", + "uuid": "c3a9ce20-3a05-4579-b193-d995cacca0c5", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_G8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 75.492, + "y": 18.352, + "z": 0.92 + }, + "position3d": { + "x": 75.492, + "y": 18.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G8_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 75.492, + "y": 18.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_H8", + "uuid": "1c5cc382-5cbd-4f73-9dcd-ac448ecb7b6e", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_H8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 75.492, + "y": 9.352, + "z": 0.92 + }, + "position3d": { + "x": 75.492, + "y": 9.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H8_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 75.492, + "y": 9.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_A9", + "uuid": "143b4976-4038-4f7a-871c-98992eb31fec", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_A9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 84.492, + "y": 72.352, + "z": 0.92 + }, + "position3d": { + "x": 84.492, + "y": 72.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A9_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 84.492, + "y": 72.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_B9", + "uuid": "2e473ac1-8477-4f39-b56f-d14435524bba", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_B9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 84.492, + "y": 63.352, + "z": 0.92 + }, + "position3d": { + "x": 84.492, + "y": 63.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B9_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 84.492, + "y": 63.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_C9", + "uuid": "629c5c8c-d022-4f59-a136-14014b2a2ef3", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_C9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 84.492, + "y": 54.352, + "z": 0.92 + }, + "position3d": { + "x": 84.492, + "y": 54.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C9_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 84.492, + "y": 54.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_D9", + "uuid": "0b505257-e2ee-4d61-8753-2c91d3c55995", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_D9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 84.492, + "y": 45.352, + "z": 0.92 + }, + "position3d": { + "x": 84.492, + "y": 45.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D9_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 84.492, + "y": 45.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_E9", + "uuid": "2e68f026-ce3e-44a6-ad25-9dc5839b1eb5", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_E9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 84.492, + "y": 36.352, + "z": 0.92 + }, + "position3d": { + "x": 84.492, + "y": 36.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E9_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 84.492, + "y": 36.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_F9", + "uuid": "357b0720-1442-4ad2-bed9-ec000fa35513", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_F9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 84.492, + "y": 27.352, + "z": 0.92 + }, + "position3d": { + "x": 84.492, + "y": 27.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F9_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 84.492, + "y": 27.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_G9", + "uuid": "b2a61e42-c016-4ce7-8ecd-0de470925230", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_G9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 84.492, + "y": 18.352, + "z": 0.92 + }, + "position3d": { + "x": 84.492, + "y": 18.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G9_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 84.492, + "y": 18.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_H9", + "uuid": "306452ee-40d5-4116-9de9-46173f60168f", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_H9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 84.492, + "y": 9.352, + "z": 0.92 + }, + "position3d": { + "x": 84.492, + "y": 9.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H9_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 84.492, + "y": 9.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_A10", + "uuid": "8de9dab7-267c-41aa-b31f-c6ed9cd80770", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_A10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 93.492, + "y": 72.352, + "z": 0.92 + }, + "position3d": { + "x": 93.492, + "y": 72.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A10_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 93.492, + "y": 72.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_B10", + "uuid": "0bd7985a-35f3-43cd-ae01-cf916dd24bf3", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_B10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 93.492, + "y": 63.352, + "z": 0.92 + }, + "position3d": { + "x": 93.492, + "y": 63.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B10_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 93.492, + "y": 63.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_C10", + "uuid": "1159f984-7a04-4d26-b77b-04f36f4ce4db", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_C10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 93.492, + "y": 54.352, + "z": 0.92 + }, + "position3d": { + "x": 93.492, + "y": 54.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C10_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 93.492, + "y": 54.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_D10", + "uuid": "8cdb6802-c709-4497-bf17-9ee1fb3a31fa", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_D10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 93.492, + "y": 45.352, + "z": 0.92 + }, + "position3d": { + "x": 93.492, + "y": 45.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D10_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 93.492, + "y": 45.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_E10", + "uuid": "ae24d7ed-22dd-4d57-9429-2ada03fbef3e", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_E10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 93.492, + "y": 36.352, + "z": 0.92 + }, + "position3d": { + "x": 93.492, + "y": 36.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E10_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 93.492, + "y": 36.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_F10", + "uuid": "995b5828-70b2-43c6-808e-e0cbf2c8dd5a", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_F10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 93.492, + "y": 27.352, + "z": 0.92 + }, + "position3d": { + "x": 93.492, + "y": 27.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F10_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 93.492, + "y": 27.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_G10", + "uuid": "6ca2d94a-ec3d-4eab-8f3c-c4967842b0a8", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_G10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 93.492, + "y": 18.352, + "z": 0.92 + }, + "position3d": { + "x": 93.492, + "y": 18.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G10_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 93.492, + "y": 18.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_H10", + "uuid": "11998b69-5978-4f60-a7b7-eae476412301", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_H10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 93.492, + "y": 9.352, + "z": 0.92 + }, + "position3d": { + "x": 93.492, + "y": 9.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H10_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 93.492, + "y": 9.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_A11", + "uuid": "5aab3521-a891-4fd6-a26e-cc842554fb14", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_A11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 102.492, + "y": 72.352, + "z": 0.92 + }, + "position3d": { + "x": 102.492, + "y": 72.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A11_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 102.492, + "y": 72.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_B11", + "uuid": "127c9fa6-3c31-445a-b982-8972b93cc854", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_B11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 102.492, + "y": 63.352, + "z": 0.92 + }, + "position3d": { + "x": 102.492, + "y": 63.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B11_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 102.492, + "y": 63.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_C11", + "uuid": "c87ad58c-b5f4-457b-9015-abe0f30cc554", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_C11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 102.492, + "y": 54.352, + "z": 0.92 + }, + "position3d": { + "x": 102.492, + "y": 54.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C11_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 102.492, + "y": 54.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_D11", + "uuid": "4c996636-7489-4151-a9d9-2a8a7a4b957e", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_D11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 102.492, + "y": 45.352, + "z": 0.92 + }, + "position3d": { + "x": 102.492, + "y": 45.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D11_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 102.492, + "y": 45.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_E11", + "uuid": "ce29cadd-77c2-456a-a4f6-134bdc5ec6e7", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_E11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 102.492, + "y": 36.352, + "z": 0.92 + }, + "position3d": { + "x": 102.492, + "y": 36.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E11_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 102.492, + "y": 36.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_F11", + "uuid": "d45abd90-8355-42bf-986a-467c7f87ff04", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_F11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 102.492, + "y": 27.352, + "z": 0.92 + }, + "position3d": { + "x": 102.492, + "y": 27.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F11_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 102.492, + "y": 27.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_G11", + "uuid": "6fc118c4-cdcc-4515-9799-07e920bd399b", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_G11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 102.492, + "y": 18.352, + "z": 0.92 + }, + "position3d": { + "x": 102.492, + "y": 18.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G11_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 102.492, + "y": 18.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_H11", + "uuid": "51f2e6e2-7c65-43cb-bb8a-431b49e41eb5", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_H11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 102.492, + "y": 9.352, + "z": 0.92 + }, + "position3d": { + "x": 102.492, + "y": 9.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H11_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 102.492, + "y": 9.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_A12", + "uuid": "287df975-7768-47bb-b49a-e63adde9f67f", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_A12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 111.492, + "y": 72.352, + "z": 0.92 + }, + "position3d": { + "x": 111.492, + "y": 72.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A12_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 111.492, + "y": 72.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_B12", + "uuid": "c0747fe6-e61e-4dc7-8184-7c5a37aeadfc", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_B12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 111.492, + "y": 63.352, + "z": 0.92 + }, + "position3d": { + "x": 111.492, + "y": 63.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B12_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 111.492, + "y": 63.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_C12", + "uuid": "8295b075-6741-4837-8969-abae051a62c5", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_C12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 111.492, + "y": 54.352, + "z": 0.92 + }, + "position3d": { + "x": 111.492, + "y": 54.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C12_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 111.492, + "y": 54.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_D12", + "uuid": "65e68201-ccf5-4b2f-9a5d-9ddb51f4cc05", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_D12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 111.492, + "y": 45.352, + "z": 0.92 + }, + "position3d": { + "x": 111.492, + "y": 45.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D12_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 111.492, + "y": 45.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_E12", + "uuid": "ced6027e-e9d2-4bcd-9e6b-cd00b7f8c86c", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_E12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 111.492, + "y": 36.352, + "z": 0.92 + }, + "position3d": { + "x": 111.492, + "y": 36.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E12_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 111.492, + "y": 36.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_F12", + "uuid": "8464804d-50e2-413b-8820-fdc8ea573c64", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_F12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 111.492, + "y": 27.352, + "z": 0.92 + }, + "position3d": { + "x": 111.492, + "y": 27.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F12_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 111.492, + "y": 27.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_G12", + "uuid": "0904d0d8-c327-425e-955b-32e33013a5bc", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_G12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 111.492, + "y": 18.352, + "z": 0.92 + }, + "position3d": { + "x": 111.492, + "y": 18.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G12_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 111.492, + "y": 18.352, + "z": 0.92 + } + }, + { + "id": "nest_96_wellplate_100ul_pcr_full_skirt_H12", + "uuid": "728e45e7-0a78-4204-a22e-45a4842aff23", + "name": "nest_96_wellplate_100ul_pcr_full_skirt_H12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d6c5a830-d860-43ec-89e5-e0e431a024bc", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 111.492, + "y": 9.352, + "z": 0.92 + }, + "position3d": { + "x": 111.492, + "y": 9.352, + "z": 0.92 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H12_volume_tracker", + "max_volume": 100, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 111.492, + "y": 9.352, + "z": 0.92 + } + } + ] + }, + { + "id": "nest_96_wellplate_200ul_flat", + "category": [ + "plates" + ], + "class": { + "module": "pylabrobot.resources.opentrons.plates:nest_96_wellplate_200ul_flat", + "type": "pylabrobot" + }, + "description": "Nest 96 wellplate 200ul flat", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/opentrons/plates.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "nest_96_wellplate_200ul_flat", + "uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "name": "nest_96_wellplate_200ul_flat", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "plate", + "class": "", + "pose": { + "size": { + "depth": 14.3, + "width": 127.56, + "height": 85.36 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Plate", + "size_x": 127.56, + "size_y": 85.36, + "size_z": 14.3, + "category": "plate", + "model": "NEST 96 Well Plate 200 µL Flat", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "nest_96_wellplate_200ul_flat_A1", + "B1": "nest_96_wellplate_200ul_flat_B1", + "C1": "nest_96_wellplate_200ul_flat_C1", + "D1": "nest_96_wellplate_200ul_flat_D1", + "E1": "nest_96_wellplate_200ul_flat_E1", + "F1": "nest_96_wellplate_200ul_flat_F1", + "G1": "nest_96_wellplate_200ul_flat_G1", + "H1": "nest_96_wellplate_200ul_flat_H1", + "A2": "nest_96_wellplate_200ul_flat_A2", + "B2": "nest_96_wellplate_200ul_flat_B2", + "C2": "nest_96_wellplate_200ul_flat_C2", + "D2": "nest_96_wellplate_200ul_flat_D2", + "E2": "nest_96_wellplate_200ul_flat_E2", + "F2": "nest_96_wellplate_200ul_flat_F2", + "G2": "nest_96_wellplate_200ul_flat_G2", + "H2": "nest_96_wellplate_200ul_flat_H2", + "A3": "nest_96_wellplate_200ul_flat_A3", + "B3": "nest_96_wellplate_200ul_flat_B3", + "C3": "nest_96_wellplate_200ul_flat_C3", + "D3": "nest_96_wellplate_200ul_flat_D3", + "E3": "nest_96_wellplate_200ul_flat_E3", + "F3": "nest_96_wellplate_200ul_flat_F3", + "G3": "nest_96_wellplate_200ul_flat_G3", + "H3": "nest_96_wellplate_200ul_flat_H3", + "A4": "nest_96_wellplate_200ul_flat_A4", + "B4": "nest_96_wellplate_200ul_flat_B4", + "C4": "nest_96_wellplate_200ul_flat_C4", + "D4": "nest_96_wellplate_200ul_flat_D4", + "E4": "nest_96_wellplate_200ul_flat_E4", + "F4": "nest_96_wellplate_200ul_flat_F4", + "G4": "nest_96_wellplate_200ul_flat_G4", + "H4": "nest_96_wellplate_200ul_flat_H4", + "A5": "nest_96_wellplate_200ul_flat_A5", + "B5": "nest_96_wellplate_200ul_flat_B5", + "C5": "nest_96_wellplate_200ul_flat_C5", + "D5": "nest_96_wellplate_200ul_flat_D5", + "E5": "nest_96_wellplate_200ul_flat_E5", + "F5": "nest_96_wellplate_200ul_flat_F5", + "G5": "nest_96_wellplate_200ul_flat_G5", + "H5": "nest_96_wellplate_200ul_flat_H5", + "A6": "nest_96_wellplate_200ul_flat_A6", + "B6": "nest_96_wellplate_200ul_flat_B6", + "C6": "nest_96_wellplate_200ul_flat_C6", + "D6": "nest_96_wellplate_200ul_flat_D6", + "E6": "nest_96_wellplate_200ul_flat_E6", + "F6": "nest_96_wellplate_200ul_flat_F6", + "G6": "nest_96_wellplate_200ul_flat_G6", + "H6": "nest_96_wellplate_200ul_flat_H6", + "A7": "nest_96_wellplate_200ul_flat_A7", + "B7": "nest_96_wellplate_200ul_flat_B7", + "C7": "nest_96_wellplate_200ul_flat_C7", + "D7": "nest_96_wellplate_200ul_flat_D7", + "E7": "nest_96_wellplate_200ul_flat_E7", + "F7": "nest_96_wellplate_200ul_flat_F7", + "G7": "nest_96_wellplate_200ul_flat_G7", + "H7": "nest_96_wellplate_200ul_flat_H7", + "A8": "nest_96_wellplate_200ul_flat_A8", + "B8": "nest_96_wellplate_200ul_flat_B8", + "C8": "nest_96_wellplate_200ul_flat_C8", + "D8": "nest_96_wellplate_200ul_flat_D8", + "E8": "nest_96_wellplate_200ul_flat_E8", + "F8": "nest_96_wellplate_200ul_flat_F8", + "G8": "nest_96_wellplate_200ul_flat_G8", + "H8": "nest_96_wellplate_200ul_flat_H8", + "A9": "nest_96_wellplate_200ul_flat_A9", + "B9": "nest_96_wellplate_200ul_flat_B9", + "C9": "nest_96_wellplate_200ul_flat_C9", + "D9": "nest_96_wellplate_200ul_flat_D9", + "E9": "nest_96_wellplate_200ul_flat_E9", + "F9": "nest_96_wellplate_200ul_flat_F9", + "G9": "nest_96_wellplate_200ul_flat_G9", + "H9": "nest_96_wellplate_200ul_flat_H9", + "A10": "nest_96_wellplate_200ul_flat_A10", + "B10": "nest_96_wellplate_200ul_flat_B10", + "C10": "nest_96_wellplate_200ul_flat_C10", + "D10": "nest_96_wellplate_200ul_flat_D10", + "E10": "nest_96_wellplate_200ul_flat_E10", + "F10": "nest_96_wellplate_200ul_flat_F10", + "G10": "nest_96_wellplate_200ul_flat_G10", + "H10": "nest_96_wellplate_200ul_flat_H10", + "A11": "nest_96_wellplate_200ul_flat_A11", + "B11": "nest_96_wellplate_200ul_flat_B11", + "C11": "nest_96_wellplate_200ul_flat_C11", + "D11": "nest_96_wellplate_200ul_flat_D11", + "E11": "nest_96_wellplate_200ul_flat_E11", + "F11": "nest_96_wellplate_200ul_flat_F11", + "G11": "nest_96_wellplate_200ul_flat_G11", + "H11": "nest_96_wellplate_200ul_flat_H11", + "A12": "nest_96_wellplate_200ul_flat_A12", + "B12": "nest_96_wellplate_200ul_flat_B12", + "C12": "nest_96_wellplate_200ul_flat_C12", + "D12": "nest_96_wellplate_200ul_flat_D12", + "E12": "nest_96_wellplate_200ul_flat_E12", + "F12": "nest_96_wellplate_200ul_flat_F12", + "G12": "nest_96_wellplate_200ul_flat_G12", + "H12": "nest_96_wellplate_200ul_flat_H12" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_A1", + "uuid": "681b3643-c982-4719-ba58-fb74dbe4b117", + "name": "nest_96_wellplate_200ul_flat_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.858, + "y": 71.758, + "z": 3.5 + }, + "position3d": { + "x": 11.858, + "y": 71.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A1_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.858, + "y": 71.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_B1", + "uuid": "4a5c850b-60fd-4bab-aca3-b1d12ca9cd08", + "name": "nest_96_wellplate_200ul_flat_B1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.858, + "y": 62.758, + "z": 3.5 + }, + "position3d": { + "x": 11.858, + "y": 62.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B1_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.858, + "y": 62.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_C1", + "uuid": "23797528-118d-4455-9d11-5b04214b8327", + "name": "nest_96_wellplate_200ul_flat_C1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.858, + "y": 53.758, + "z": 3.5 + }, + "position3d": { + "x": 11.858, + "y": 53.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C1_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.858, + "y": 53.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_D1", + "uuid": "d52e0c77-1ca7-46e6-af77-a96da273f16e", + "name": "nest_96_wellplate_200ul_flat_D1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.858, + "y": 44.758, + "z": 3.5 + }, + "position3d": { + "x": 11.858, + "y": 44.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D1_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.858, + "y": 44.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_E1", + "uuid": "e407229e-5eec-47e2-aefa-b4bd5d2336fe", + "name": "nest_96_wellplate_200ul_flat_E1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.858, + "y": 35.758, + "z": 3.5 + }, + "position3d": { + "x": 11.858, + "y": 35.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E1_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.858, + "y": 35.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_F1", + "uuid": "8f068256-9957-4a33-beaf-ae95039d4eac", + "name": "nest_96_wellplate_200ul_flat_F1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.858, + "y": 26.758, + "z": 3.5 + }, + "position3d": { + "x": 11.858, + "y": 26.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F1_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.858, + "y": 26.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_G1", + "uuid": "5c67f3fa-5c50-4042-8690-9056f224e35c", + "name": "nest_96_wellplate_200ul_flat_G1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.858, + "y": 17.758, + "z": 3.5 + }, + "position3d": { + "x": 11.858, + "y": 17.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G1_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.858, + "y": 17.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_H1", + "uuid": "b602d964-c04c-4ce3-b555-7a2d1798562f", + "name": "nest_96_wellplate_200ul_flat_H1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.858, + "y": 8.758, + "z": 3.5 + }, + "position3d": { + "x": 11.858, + "y": 8.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H1_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.858, + "y": 8.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_A2", + "uuid": "e06aa331-055c-49ce-90ea-20d3cbb56288", + "name": "nest_96_wellplate_200ul_flat_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.858, + "y": 71.758, + "z": 3.5 + }, + "position3d": { + "x": 20.858, + "y": 71.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A2_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.858, + "y": 71.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_B2", + "uuid": "7777aa03-d79c-47df-a424-e3b4112c8b66", + "name": "nest_96_wellplate_200ul_flat_B2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.858, + "y": 62.758, + "z": 3.5 + }, + "position3d": { + "x": 20.858, + "y": 62.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B2_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.858, + "y": 62.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_C2", + "uuid": "41252f71-9d72-477d-84c8-3a65565fa0e2", + "name": "nest_96_wellplate_200ul_flat_C2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.858, + "y": 53.758, + "z": 3.5 + }, + "position3d": { + "x": 20.858, + "y": 53.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C2_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.858, + "y": 53.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_D2", + "uuid": "2402d028-741f-4385-a415-77ecbcbb9793", + "name": "nest_96_wellplate_200ul_flat_D2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.858, + "y": 44.758, + "z": 3.5 + }, + "position3d": { + "x": 20.858, + "y": 44.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D2_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.858, + "y": 44.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_E2", + "uuid": "3035233e-c432-4569-96bd-6d2322c6b62a", + "name": "nest_96_wellplate_200ul_flat_E2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.858, + "y": 35.758, + "z": 3.5 + }, + "position3d": { + "x": 20.858, + "y": 35.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E2_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.858, + "y": 35.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_F2", + "uuid": "a22afe03-b3b8-425d-bba3-483a89a73a28", + "name": "nest_96_wellplate_200ul_flat_F2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.858, + "y": 26.758, + "z": 3.5 + }, + "position3d": { + "x": 20.858, + "y": 26.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F2_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.858, + "y": 26.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_G2", + "uuid": "f5d4aa6d-5077-4821-a37f-8d95cf7fb251", + "name": "nest_96_wellplate_200ul_flat_G2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.858, + "y": 17.758, + "z": 3.5 + }, + "position3d": { + "x": 20.858, + "y": 17.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G2_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.858, + "y": 17.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_H2", + "uuid": "fcff2874-dd35-4866-b1c3-f6f634b0fc51", + "name": "nest_96_wellplate_200ul_flat_H2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.858, + "y": 8.758, + "z": 3.5 + }, + "position3d": { + "x": 20.858, + "y": 8.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H2_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.858, + "y": 8.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_A3", + "uuid": "eb2c8bc5-fd96-4326-97f7-36fbb875d946", + "name": "nest_96_wellplate_200ul_flat_A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.858, + "y": 71.758, + "z": 3.5 + }, + "position3d": { + "x": 29.858, + "y": 71.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A3_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.858, + "y": 71.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_B3", + "uuid": "9fc3e3be-339a-422b-9d42-edf00c456997", + "name": "nest_96_wellplate_200ul_flat_B3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.858, + "y": 62.758, + "z": 3.5 + }, + "position3d": { + "x": 29.858, + "y": 62.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B3_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.858, + "y": 62.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_C3", + "uuid": "98ace5b3-d3af-4828-bde2-8b0370748ab9", + "name": "nest_96_wellplate_200ul_flat_C3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.858, + "y": 53.758, + "z": 3.5 + }, + "position3d": { + "x": 29.858, + "y": 53.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C3_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.858, + "y": 53.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_D3", + "uuid": "1a46a027-35ce-48ba-ac7d-38a5eb58e093", + "name": "nest_96_wellplate_200ul_flat_D3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.858, + "y": 44.758, + "z": 3.5 + }, + "position3d": { + "x": 29.858, + "y": 44.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D3_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.858, + "y": 44.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_E3", + "uuid": "603bcdf3-8d87-4801-9eff-a7be63e8342d", + "name": "nest_96_wellplate_200ul_flat_E3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.858, + "y": 35.758, + "z": 3.5 + }, + "position3d": { + "x": 29.858, + "y": 35.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E3_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.858, + "y": 35.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_F3", + "uuid": "8da984c7-5313-46e7-8003-dbf1bf49932f", + "name": "nest_96_wellplate_200ul_flat_F3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.858, + "y": 26.758, + "z": 3.5 + }, + "position3d": { + "x": 29.858, + "y": 26.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F3_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.858, + "y": 26.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_G3", + "uuid": "fdaecc51-e3f6-42b3-9ba4-cc7a66b0c3e4", + "name": "nest_96_wellplate_200ul_flat_G3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.858, + "y": 17.758, + "z": 3.5 + }, + "position3d": { + "x": 29.858, + "y": 17.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G3_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.858, + "y": 17.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_H3", + "uuid": "d695015c-43ae-40fe-a1f1-495daf770be2", + "name": "nest_96_wellplate_200ul_flat_H3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.858, + "y": 8.758, + "z": 3.5 + }, + "position3d": { + "x": 29.858, + "y": 8.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H3_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.858, + "y": 8.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_A4", + "uuid": "03875f7e-3e74-4810-8608-61f592f08737", + "name": "nest_96_wellplate_200ul_flat_A4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.858, + "y": 71.758, + "z": 3.5 + }, + "position3d": { + "x": 38.858, + "y": 71.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A4_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.858, + "y": 71.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_B4", + "uuid": "c4b67a33-612d-4b5a-9ff0-85772eef6a19", + "name": "nest_96_wellplate_200ul_flat_B4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.858, + "y": 62.758, + "z": 3.5 + }, + "position3d": { + "x": 38.858, + "y": 62.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B4_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.858, + "y": 62.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_C4", + "uuid": "1cbdaf74-1570-426f-81aa-59e6ef9c6448", + "name": "nest_96_wellplate_200ul_flat_C4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.858, + "y": 53.758, + "z": 3.5 + }, + "position3d": { + "x": 38.858, + "y": 53.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C4_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.858, + "y": 53.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_D4", + "uuid": "11cd1266-68e6-4792-81f4-e8520527a687", + "name": "nest_96_wellplate_200ul_flat_D4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.858, + "y": 44.758, + "z": 3.5 + }, + "position3d": { + "x": 38.858, + "y": 44.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D4_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.858, + "y": 44.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_E4", + "uuid": "b87d9c11-8b3b-421a-854a-28f782be7568", + "name": "nest_96_wellplate_200ul_flat_E4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.858, + "y": 35.758, + "z": 3.5 + }, + "position3d": { + "x": 38.858, + "y": 35.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E4_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.858, + "y": 35.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_F4", + "uuid": "85595305-042a-44fd-b266-3589a851c0ea", + "name": "nest_96_wellplate_200ul_flat_F4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.858, + "y": 26.758, + "z": 3.5 + }, + "position3d": { + "x": 38.858, + "y": 26.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F4_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.858, + "y": 26.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_G4", + "uuid": "ece7099a-aec8-4cf6-8d55-3f59068331b3", + "name": "nest_96_wellplate_200ul_flat_G4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.858, + "y": 17.758, + "z": 3.5 + }, + "position3d": { + "x": 38.858, + "y": 17.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G4_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.858, + "y": 17.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_H4", + "uuid": "2a35fb60-903c-4a57-aea8-759ecd072b2f", + "name": "nest_96_wellplate_200ul_flat_H4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.858, + "y": 8.758, + "z": 3.5 + }, + "position3d": { + "x": 38.858, + "y": 8.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H4_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.858, + "y": 8.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_A5", + "uuid": "38d8b528-7e4a-4601-aa71-823b00b17d16", + "name": "nest_96_wellplate_200ul_flat_A5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.858, + "y": 71.758, + "z": 3.5 + }, + "position3d": { + "x": 47.858, + "y": 71.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A5_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.858, + "y": 71.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_B5", + "uuid": "b40f3509-f2d5-494b-89e9-98cc87828ece", + "name": "nest_96_wellplate_200ul_flat_B5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.858, + "y": 62.758, + "z": 3.5 + }, + "position3d": { + "x": 47.858, + "y": 62.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B5_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.858, + "y": 62.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_C5", + "uuid": "6053a812-903a-4b45-88df-07cc4b2745d6", + "name": "nest_96_wellplate_200ul_flat_C5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.858, + "y": 53.758, + "z": 3.5 + }, + "position3d": { + "x": 47.858, + "y": 53.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C5_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.858, + "y": 53.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_D5", + "uuid": "9fddf694-247e-4832-a8d1-65d5b50a52bb", + "name": "nest_96_wellplate_200ul_flat_D5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.858, + "y": 44.758, + "z": 3.5 + }, + "position3d": { + "x": 47.858, + "y": 44.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D5_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.858, + "y": 44.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_E5", + "uuid": "d9182015-7ffc-429f-90fc-f5a807ccf04d", + "name": "nest_96_wellplate_200ul_flat_E5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.858, + "y": 35.758, + "z": 3.5 + }, + "position3d": { + "x": 47.858, + "y": 35.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E5_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.858, + "y": 35.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_F5", + "uuid": "c6042f55-028d-489c-805a-02a63be18bd8", + "name": "nest_96_wellplate_200ul_flat_F5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.858, + "y": 26.758, + "z": 3.5 + }, + "position3d": { + "x": 47.858, + "y": 26.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F5_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.858, + "y": 26.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_G5", + "uuid": "33605a7c-a0d5-421b-8281-1b0bc2171804", + "name": "nest_96_wellplate_200ul_flat_G5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.858, + "y": 17.758, + "z": 3.5 + }, + "position3d": { + "x": 47.858, + "y": 17.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G5_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.858, + "y": 17.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_H5", + "uuid": "964847cd-4954-4578-ad10-023929749c0a", + "name": "nest_96_wellplate_200ul_flat_H5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.858, + "y": 8.758, + "z": 3.5 + }, + "position3d": { + "x": 47.858, + "y": 8.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H5_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.858, + "y": 8.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_A6", + "uuid": "ef075d0c-b7d8-4689-857a-fe341404e75b", + "name": "nest_96_wellplate_200ul_flat_A6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.858, + "y": 71.758, + "z": 3.5 + }, + "position3d": { + "x": 56.858, + "y": 71.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A6_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.858, + "y": 71.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_B6", + "uuid": "aa1f793f-81ec-4134-b9f0-0c5a452e8692", + "name": "nest_96_wellplate_200ul_flat_B6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.858, + "y": 62.758, + "z": 3.5 + }, + "position3d": { + "x": 56.858, + "y": 62.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B6_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.858, + "y": 62.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_C6", + "uuid": "f7a09f1a-2328-4afb-a8d7-3aed631d4619", + "name": "nest_96_wellplate_200ul_flat_C6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.858, + "y": 53.758, + "z": 3.5 + }, + "position3d": { + "x": 56.858, + "y": 53.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C6_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.858, + "y": 53.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_D6", + "uuid": "e00d302d-dfad-4947-b552-9af48ed9391e", + "name": "nest_96_wellplate_200ul_flat_D6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.858, + "y": 44.758, + "z": 3.5 + }, + "position3d": { + "x": 56.858, + "y": 44.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D6_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.858, + "y": 44.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_E6", + "uuid": "a093182d-2320-4ba3-8abb-00397340df47", + "name": "nest_96_wellplate_200ul_flat_E6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.858, + "y": 35.758, + "z": 3.5 + }, + "position3d": { + "x": 56.858, + "y": 35.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E6_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.858, + "y": 35.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_F6", + "uuid": "60de3658-c50f-45a4-af75-56b260d21919", + "name": "nest_96_wellplate_200ul_flat_F6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.858, + "y": 26.758, + "z": 3.5 + }, + "position3d": { + "x": 56.858, + "y": 26.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F6_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.858, + "y": 26.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_G6", + "uuid": "b2e17fb8-33ca-4cd7-9d61-19d11b072657", + "name": "nest_96_wellplate_200ul_flat_G6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.858, + "y": 17.758, + "z": 3.5 + }, + "position3d": { + "x": 56.858, + "y": 17.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G6_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.858, + "y": 17.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_H6", + "uuid": "1c1dac3a-e046-483b-9c4f-369e4f8b3003", + "name": "nest_96_wellplate_200ul_flat_H6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.858, + "y": 8.758, + "z": 3.5 + }, + "position3d": { + "x": 56.858, + "y": 8.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H6_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.858, + "y": 8.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_A7", + "uuid": "d37c6eb0-a6d7-4290-ac92-9c898cf079fb", + "name": "nest_96_wellplate_200ul_flat_A7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.858, + "y": 71.758, + "z": 3.5 + }, + "position3d": { + "x": 65.858, + "y": 71.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A7_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.858, + "y": 71.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_B7", + "uuid": "cf586e17-fe1f-4c94-9c7d-2fe823e679dc", + "name": "nest_96_wellplate_200ul_flat_B7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.858, + "y": 62.758, + "z": 3.5 + }, + "position3d": { + "x": 65.858, + "y": 62.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B7_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.858, + "y": 62.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_C7", + "uuid": "a22bd389-d996-4a24-8db3-ae1123ee040f", + "name": "nest_96_wellplate_200ul_flat_C7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.858, + "y": 53.758, + "z": 3.5 + }, + "position3d": { + "x": 65.858, + "y": 53.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C7_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.858, + "y": 53.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_D7", + "uuid": "991cd620-3ea0-4e39-a2ad-2ad47e213a6e", + "name": "nest_96_wellplate_200ul_flat_D7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.858, + "y": 44.758, + "z": 3.5 + }, + "position3d": { + "x": 65.858, + "y": 44.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D7_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.858, + "y": 44.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_E7", + "uuid": "beb9eb72-f517-4e8b-90e4-d1440b78f9ca", + "name": "nest_96_wellplate_200ul_flat_E7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.858, + "y": 35.758, + "z": 3.5 + }, + "position3d": { + "x": 65.858, + "y": 35.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E7_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.858, + "y": 35.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_F7", + "uuid": "0fc6a5ac-3123-4ca9-967a-3f91d32d45d2", + "name": "nest_96_wellplate_200ul_flat_F7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.858, + "y": 26.758, + "z": 3.5 + }, + "position3d": { + "x": 65.858, + "y": 26.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F7_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.858, + "y": 26.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_G7", + "uuid": "6e07cc9e-ec49-4547-b610-356605e8cfa7", + "name": "nest_96_wellplate_200ul_flat_G7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.858, + "y": 17.758, + "z": 3.5 + }, + "position3d": { + "x": 65.858, + "y": 17.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G7_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.858, + "y": 17.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_H7", + "uuid": "18d63ec3-59e0-4a5f-becd-a0ffddd19002", + "name": "nest_96_wellplate_200ul_flat_H7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.858, + "y": 8.758, + "z": 3.5 + }, + "position3d": { + "x": 65.858, + "y": 8.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H7_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.858, + "y": 8.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_A8", + "uuid": "ae2bf77a-3a5d-4609-99fa-c9e43822d3d5", + "name": "nest_96_wellplate_200ul_flat_A8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.858, + "y": 71.758, + "z": 3.5 + }, + "position3d": { + "x": 74.858, + "y": 71.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A8_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.858, + "y": 71.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_B8", + "uuid": "e322978b-28e8-45ca-be31-8dcdc1bc38fc", + "name": "nest_96_wellplate_200ul_flat_B8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.858, + "y": 62.758, + "z": 3.5 + }, + "position3d": { + "x": 74.858, + "y": 62.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B8_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.858, + "y": 62.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_C8", + "uuid": "634f5550-88e2-48e9-83c1-d8bb9ba534cf", + "name": "nest_96_wellplate_200ul_flat_C8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.858, + "y": 53.758, + "z": 3.5 + }, + "position3d": { + "x": 74.858, + "y": 53.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C8_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.858, + "y": 53.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_D8", + "uuid": "d4799a75-3d3a-4844-bbb1-3ad245499a28", + "name": "nest_96_wellplate_200ul_flat_D8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.858, + "y": 44.758, + "z": 3.5 + }, + "position3d": { + "x": 74.858, + "y": 44.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D8_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.858, + "y": 44.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_E8", + "uuid": "791041fc-315e-433a-85c4-e67d4d971a19", + "name": "nest_96_wellplate_200ul_flat_E8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.858, + "y": 35.758, + "z": 3.5 + }, + "position3d": { + "x": 74.858, + "y": 35.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E8_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.858, + "y": 35.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_F8", + "uuid": "e0bd60bf-8cf8-4862-9174-544e60c3c3ca", + "name": "nest_96_wellplate_200ul_flat_F8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.858, + "y": 26.758, + "z": 3.5 + }, + "position3d": { + "x": 74.858, + "y": 26.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F8_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.858, + "y": 26.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_G8", + "uuid": "b843c432-1269-45f2-abab-3c3415948bd8", + "name": "nest_96_wellplate_200ul_flat_G8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.858, + "y": 17.758, + "z": 3.5 + }, + "position3d": { + "x": 74.858, + "y": 17.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G8_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.858, + "y": 17.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_H8", + "uuid": "7a2d9081-7ea3-4cbf-b600-94a4f4362aa4", + "name": "nest_96_wellplate_200ul_flat_H8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.858, + "y": 8.758, + "z": 3.5 + }, + "position3d": { + "x": 74.858, + "y": 8.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H8_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.858, + "y": 8.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_A9", + "uuid": "23618fdc-8ca3-428d-b906-cc6cc5d0093a", + "name": "nest_96_wellplate_200ul_flat_A9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.858, + "y": 71.758, + "z": 3.5 + }, + "position3d": { + "x": 83.858, + "y": 71.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A9_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.858, + "y": 71.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_B9", + "uuid": "44b3c160-2d8d-4bfa-83b4-c2c5007aa65f", + "name": "nest_96_wellplate_200ul_flat_B9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.858, + "y": 62.758, + "z": 3.5 + }, + "position3d": { + "x": 83.858, + "y": 62.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B9_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.858, + "y": 62.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_C9", + "uuid": "46dfa85f-2477-4158-8a88-2b8ae533ec0e", + "name": "nest_96_wellplate_200ul_flat_C9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.858, + "y": 53.758, + "z": 3.5 + }, + "position3d": { + "x": 83.858, + "y": 53.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C9_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.858, + "y": 53.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_D9", + "uuid": "b8d4a0b1-8d59-41a2-8e21-1fa3281a5e1a", + "name": "nest_96_wellplate_200ul_flat_D9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.858, + "y": 44.758, + "z": 3.5 + }, + "position3d": { + "x": 83.858, + "y": 44.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D9_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.858, + "y": 44.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_E9", + "uuid": "fae79c0b-8f36-41a1-a3bb-82436ceb2767", + "name": "nest_96_wellplate_200ul_flat_E9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.858, + "y": 35.758, + "z": 3.5 + }, + "position3d": { + "x": 83.858, + "y": 35.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E9_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.858, + "y": 35.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_F9", + "uuid": "e863d0e1-5a62-4084-8266-2c45a6f60123", + "name": "nest_96_wellplate_200ul_flat_F9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.858, + "y": 26.758, + "z": 3.5 + }, + "position3d": { + "x": 83.858, + "y": 26.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F9_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.858, + "y": 26.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_G9", + "uuid": "58dfe250-0e64-429c-9d21-9007acd2a16a", + "name": "nest_96_wellplate_200ul_flat_G9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.858, + "y": 17.758, + "z": 3.5 + }, + "position3d": { + "x": 83.858, + "y": 17.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G9_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.858, + "y": 17.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_H9", + "uuid": "0dca6e81-8aeb-4e6c-a472-c91ecb8ad23c", + "name": "nest_96_wellplate_200ul_flat_H9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.858, + "y": 8.758, + "z": 3.5 + }, + "position3d": { + "x": 83.858, + "y": 8.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H9_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.858, + "y": 8.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_A10", + "uuid": "9f70da67-d4f0-44e7-ab9f-f84168fe8f30", + "name": "nest_96_wellplate_200ul_flat_A10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.858, + "y": 71.758, + "z": 3.5 + }, + "position3d": { + "x": 92.858, + "y": 71.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A10_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.858, + "y": 71.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_B10", + "uuid": "9476b4e0-1d12-4e8d-bedb-789d66e8e458", + "name": "nest_96_wellplate_200ul_flat_B10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.858, + "y": 62.758, + "z": 3.5 + }, + "position3d": { + "x": 92.858, + "y": 62.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B10_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.858, + "y": 62.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_C10", + "uuid": "98542136-2424-4f19-8364-fcc8eeea43c9", + "name": "nest_96_wellplate_200ul_flat_C10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.858, + "y": 53.758, + "z": 3.5 + }, + "position3d": { + "x": 92.858, + "y": 53.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C10_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.858, + "y": 53.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_D10", + "uuid": "4c665ae4-22ab-4458-8b5d-3c7eeb7b1978", + "name": "nest_96_wellplate_200ul_flat_D10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.858, + "y": 44.758, + "z": 3.5 + }, + "position3d": { + "x": 92.858, + "y": 44.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D10_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.858, + "y": 44.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_E10", + "uuid": "b14890ee-cb94-4f34-afe2-b0cabef385e8", + "name": "nest_96_wellplate_200ul_flat_E10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.858, + "y": 35.758, + "z": 3.5 + }, + "position3d": { + "x": 92.858, + "y": 35.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E10_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.858, + "y": 35.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_F10", + "uuid": "945519dd-647b-41c4-ac41-95eb1dde0aab", + "name": "nest_96_wellplate_200ul_flat_F10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.858, + "y": 26.758, + "z": 3.5 + }, + "position3d": { + "x": 92.858, + "y": 26.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F10_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.858, + "y": 26.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_G10", + "uuid": "52500508-3710-4284-9b0f-01623776e7ed", + "name": "nest_96_wellplate_200ul_flat_G10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.858, + "y": 17.758, + "z": 3.5 + }, + "position3d": { + "x": 92.858, + "y": 17.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G10_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.858, + "y": 17.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_H10", + "uuid": "f4641048-60cb-4753-be68-88af71b09b78", + "name": "nest_96_wellplate_200ul_flat_H10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.858, + "y": 8.758, + "z": 3.5 + }, + "position3d": { + "x": 92.858, + "y": 8.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H10_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.858, + "y": 8.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_A11", + "uuid": "5387b4cf-29d0-4646-8885-5004a2c1a3ce", + "name": "nest_96_wellplate_200ul_flat_A11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.858, + "y": 71.758, + "z": 3.5 + }, + "position3d": { + "x": 101.858, + "y": 71.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A11_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.858, + "y": 71.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_B11", + "uuid": "cd1a9bb9-46b4-4bb7-b049-82bcca5f3190", + "name": "nest_96_wellplate_200ul_flat_B11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.858, + "y": 62.758, + "z": 3.5 + }, + "position3d": { + "x": 101.858, + "y": 62.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B11_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.858, + "y": 62.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_C11", + "uuid": "fe652186-3b13-4e95-b3da-b834c9b86cb5", + "name": "nest_96_wellplate_200ul_flat_C11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.858, + "y": 53.758, + "z": 3.5 + }, + "position3d": { + "x": 101.858, + "y": 53.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C11_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.858, + "y": 53.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_D11", + "uuid": "a9a3e8d4-22e4-42b6-a302-9373f9aa7e86", + "name": "nest_96_wellplate_200ul_flat_D11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.858, + "y": 44.758, + "z": 3.5 + }, + "position3d": { + "x": 101.858, + "y": 44.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D11_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.858, + "y": 44.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_E11", + "uuid": "e1940342-7029-41ef-b603-9976eeb3fdbf", + "name": "nest_96_wellplate_200ul_flat_E11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.858, + "y": 35.758, + "z": 3.5 + }, + "position3d": { + "x": 101.858, + "y": 35.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E11_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.858, + "y": 35.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_F11", + "uuid": "0eee2899-1d3b-44d2-ae7e-1bed3f411000", + "name": "nest_96_wellplate_200ul_flat_F11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.858, + "y": 26.758, + "z": 3.5 + }, + "position3d": { + "x": 101.858, + "y": 26.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F11_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.858, + "y": 26.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_G11", + "uuid": "cea65d4c-0698-4e2e-8597-5591a4d922db", + "name": "nest_96_wellplate_200ul_flat_G11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.858, + "y": 17.758, + "z": 3.5 + }, + "position3d": { + "x": 101.858, + "y": 17.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G11_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.858, + "y": 17.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_H11", + "uuid": "7fe39bc0-6936-4538-b9e7-6b0ed372a7bb", + "name": "nest_96_wellplate_200ul_flat_H11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.858, + "y": 8.758, + "z": 3.5 + }, + "position3d": { + "x": 101.858, + "y": 8.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H11_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.858, + "y": 8.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_A12", + "uuid": "34d8b450-e92e-4267-8249-395c386b6373", + "name": "nest_96_wellplate_200ul_flat_A12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.858, + "y": 71.758, + "z": 3.5 + }, + "position3d": { + "x": 110.858, + "y": 71.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A12_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.858, + "y": 71.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_B12", + "uuid": "b8933bfd-dddf-4954-a6d6-3488f1aed612", + "name": "nest_96_wellplate_200ul_flat_B12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.858, + "y": 62.758, + "z": 3.5 + }, + "position3d": { + "x": 110.858, + "y": 62.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B12_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.858, + "y": 62.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_C12", + "uuid": "106ad64f-f771-434a-9b06-74c1d165c017", + "name": "nest_96_wellplate_200ul_flat_C12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.858, + "y": 53.758, + "z": 3.5 + }, + "position3d": { + "x": 110.858, + "y": 53.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C12_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.858, + "y": 53.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_D12", + "uuid": "7ff7b943-eb46-4d2f-b8c0-ad612a83dc57", + "name": "nest_96_wellplate_200ul_flat_D12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.858, + "y": 44.758, + "z": 3.5 + }, + "position3d": { + "x": 110.858, + "y": 44.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D12_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.858, + "y": 44.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_E12", + "uuid": "5adce236-3255-4168-a930-b7e3102a04af", + "name": "nest_96_wellplate_200ul_flat_E12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.858, + "y": 35.758, + "z": 3.5 + }, + "position3d": { + "x": 110.858, + "y": 35.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E12_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.858, + "y": 35.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_F12", + "uuid": "00706a4c-5cab-4aad-892b-9e5ef5635f03", + "name": "nest_96_wellplate_200ul_flat_F12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.858, + "y": 26.758, + "z": 3.5 + }, + "position3d": { + "x": 110.858, + "y": 26.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F12_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.858, + "y": 26.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_G12", + "uuid": "ab70a966-4137-4749-8286-4431ebd6d925", + "name": "nest_96_wellplate_200ul_flat_G12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.858, + "y": 17.758, + "z": 3.5 + }, + "position3d": { + "x": 110.858, + "y": 17.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G12_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.858, + "y": 17.758, + "z": 3.5 + } + }, + { + "id": "nest_96_wellplate_200ul_flat_H12", + "uuid": "26000b6c-82d0-44ce-9eb8-50d94c05fc34", + "name": "nest_96_wellplate_200ul_flat_H12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d0bffdb5-ec52-492f-82fb-aa3b49773503", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.8, + "width": 4.844, + "height": 4.844 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.858, + "y": 8.758, + "z": 3.5 + }, + "position3d": { + "x": 110.858, + "y": 8.758, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 4.844, + "size_y": 4.844, + "size_z": 10.8, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H12_volume_tracker", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.858, + "y": 8.758, + "z": 3.5 + } + } + ] + }, + { + "id": "nest_96_wellplate_2ml_deep", + "category": [ + "plates" + ], + "class": { + "module": "pylabrobot.resources.opentrons.plates:nest_96_wellplate_2ml_deep", + "type": "pylabrobot" + }, + "description": "Nest 96 wellplate 2ml deep", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/opentrons/plates.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "model": { + "mesh": "tecan_nested_tip_rack/meshes/plate.stl", + "mesh_tf": [ + 0.064, + 0.043, + 0, + -1.5708, + 0, + 1.5708 + ], + "path": "https://leap-lab.oss-cn-zhangjiakou.aliyuncs.com/uni-lab/resources/tecan_nested_tip_rack/modal.xacro", + "type": "resource" + }, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "nest_96_wellplate_2ml_deep", + "uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "name": "nest_96_wellplate_2ml_deep", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "plate", + "class": "", + "pose": { + "size": { + "depth": 41.0, + "width": 127.6, + "height": 85.3 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Plate", + "size_x": 127.6, + "size_y": 85.3, + "size_z": 41, + "category": "plate", + "model": "NEST 96 Deep Well Plate 2mL", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "nest_96_wellplate_2ml_deep_A1", + "B1": "nest_96_wellplate_2ml_deep_B1", + "C1": "nest_96_wellplate_2ml_deep_C1", + "D1": "nest_96_wellplate_2ml_deep_D1", + "E1": "nest_96_wellplate_2ml_deep_E1", + "F1": "nest_96_wellplate_2ml_deep_F1", + "G1": "nest_96_wellplate_2ml_deep_G1", + "H1": "nest_96_wellplate_2ml_deep_H1", + "A2": "nest_96_wellplate_2ml_deep_A2", + "B2": "nest_96_wellplate_2ml_deep_B2", + "C2": "nest_96_wellplate_2ml_deep_C2", + "D2": "nest_96_wellplate_2ml_deep_D2", + "E2": "nest_96_wellplate_2ml_deep_E2", + "F2": "nest_96_wellplate_2ml_deep_F2", + "G2": "nest_96_wellplate_2ml_deep_G2", + "H2": "nest_96_wellplate_2ml_deep_H2", + "A3": "nest_96_wellplate_2ml_deep_A3", + "B3": "nest_96_wellplate_2ml_deep_B3", + "C3": "nest_96_wellplate_2ml_deep_C3", + "D3": "nest_96_wellplate_2ml_deep_D3", + "E3": "nest_96_wellplate_2ml_deep_E3", + "F3": "nest_96_wellplate_2ml_deep_F3", + "G3": "nest_96_wellplate_2ml_deep_G3", + "H3": "nest_96_wellplate_2ml_deep_H3", + "A4": "nest_96_wellplate_2ml_deep_A4", + "B4": "nest_96_wellplate_2ml_deep_B4", + "C4": "nest_96_wellplate_2ml_deep_C4", + "D4": "nest_96_wellplate_2ml_deep_D4", + "E4": "nest_96_wellplate_2ml_deep_E4", + "F4": "nest_96_wellplate_2ml_deep_F4", + "G4": "nest_96_wellplate_2ml_deep_G4", + "H4": "nest_96_wellplate_2ml_deep_H4", + "A5": "nest_96_wellplate_2ml_deep_A5", + "B5": "nest_96_wellplate_2ml_deep_B5", + "C5": "nest_96_wellplate_2ml_deep_C5", + "D5": "nest_96_wellplate_2ml_deep_D5", + "E5": "nest_96_wellplate_2ml_deep_E5", + "F5": "nest_96_wellplate_2ml_deep_F5", + "G5": "nest_96_wellplate_2ml_deep_G5", + "H5": "nest_96_wellplate_2ml_deep_H5", + "A6": "nest_96_wellplate_2ml_deep_A6", + "B6": "nest_96_wellplate_2ml_deep_B6", + "C6": "nest_96_wellplate_2ml_deep_C6", + "D6": "nest_96_wellplate_2ml_deep_D6", + "E6": "nest_96_wellplate_2ml_deep_E6", + "F6": "nest_96_wellplate_2ml_deep_F6", + "G6": "nest_96_wellplate_2ml_deep_G6", + "H6": "nest_96_wellplate_2ml_deep_H6", + "A7": "nest_96_wellplate_2ml_deep_A7", + "B7": "nest_96_wellplate_2ml_deep_B7", + "C7": "nest_96_wellplate_2ml_deep_C7", + "D7": "nest_96_wellplate_2ml_deep_D7", + "E7": "nest_96_wellplate_2ml_deep_E7", + "F7": "nest_96_wellplate_2ml_deep_F7", + "G7": "nest_96_wellplate_2ml_deep_G7", + "H7": "nest_96_wellplate_2ml_deep_H7", + "A8": "nest_96_wellplate_2ml_deep_A8", + "B8": "nest_96_wellplate_2ml_deep_B8", + "C8": "nest_96_wellplate_2ml_deep_C8", + "D8": "nest_96_wellplate_2ml_deep_D8", + "E8": "nest_96_wellplate_2ml_deep_E8", + "F8": "nest_96_wellplate_2ml_deep_F8", + "G8": "nest_96_wellplate_2ml_deep_G8", + "H8": "nest_96_wellplate_2ml_deep_H8", + "A9": "nest_96_wellplate_2ml_deep_A9", + "B9": "nest_96_wellplate_2ml_deep_B9", + "C9": "nest_96_wellplate_2ml_deep_C9", + "D9": "nest_96_wellplate_2ml_deep_D9", + "E9": "nest_96_wellplate_2ml_deep_E9", + "F9": "nest_96_wellplate_2ml_deep_F9", + "G9": "nest_96_wellplate_2ml_deep_G9", + "H9": "nest_96_wellplate_2ml_deep_H9", + "A10": "nest_96_wellplate_2ml_deep_A10", + "B10": "nest_96_wellplate_2ml_deep_B10", + "C10": "nest_96_wellplate_2ml_deep_C10", + "D10": "nest_96_wellplate_2ml_deep_D10", + "E10": "nest_96_wellplate_2ml_deep_E10", + "F10": "nest_96_wellplate_2ml_deep_F10", + "G10": "nest_96_wellplate_2ml_deep_G10", + "H10": "nest_96_wellplate_2ml_deep_H10", + "A11": "nest_96_wellplate_2ml_deep_A11", + "B11": "nest_96_wellplate_2ml_deep_B11", + "C11": "nest_96_wellplate_2ml_deep_C11", + "D11": "nest_96_wellplate_2ml_deep_D11", + "E11": "nest_96_wellplate_2ml_deep_E11", + "F11": "nest_96_wellplate_2ml_deep_F11", + "G11": "nest_96_wellplate_2ml_deep_G11", + "H11": "nest_96_wellplate_2ml_deep_H11", + "A12": "nest_96_wellplate_2ml_deep_A12", + "B12": "nest_96_wellplate_2ml_deep_B12", + "C12": "nest_96_wellplate_2ml_deep_C12", + "D12": "nest_96_wellplate_2ml_deep_D12", + "E12": "nest_96_wellplate_2ml_deep_E12", + "F12": "nest_96_wellplate_2ml_deep_F12", + "G12": "nest_96_wellplate_2ml_deep_G12", + "H12": "nest_96_wellplate_2ml_deep_H12" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_A1", + "uuid": "9bd8bc1a-2d02-415b-917e-b0c4c6eea7df", + "name": "nest_96_wellplate_2ml_deep_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.2, + "y": 70.05, + "z": 3.0 + }, + "position3d": { + "x": 10.2, + "y": 70.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A1_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.2, + "y": 70.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_B1", + "uuid": "b282be45-4f66-4a8a-b8ea-075f9c0add97", + "name": "nest_96_wellplate_2ml_deep_B1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.2, + "y": 61.05, + "z": 3.0 + }, + "position3d": { + "x": 10.2, + "y": 61.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B1_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.2, + "y": 61.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_C1", + "uuid": "4c5ab3b0-4eed-4a39-8f81-d66b406590e8", + "name": "nest_96_wellplate_2ml_deep_C1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.2, + "y": 52.05, + "z": 3.0 + }, + "position3d": { + "x": 10.2, + "y": 52.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C1_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.2, + "y": 52.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_D1", + "uuid": "e8250cbe-b48e-4332-957a-7c12e8a1faee", + "name": "nest_96_wellplate_2ml_deep_D1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.2, + "y": 43.05, + "z": 3.0 + }, + "position3d": { + "x": 10.2, + "y": 43.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D1_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.2, + "y": 43.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_E1", + "uuid": "39e23f70-12b5-4a86-8498-13a0e581ae4f", + "name": "nest_96_wellplate_2ml_deep_E1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.2, + "y": 34.05, + "z": 3.0 + }, + "position3d": { + "x": 10.2, + "y": 34.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E1_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.2, + "y": 34.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_F1", + "uuid": "f38ac246-3fd0-4cc8-8601-6cc56090271a", + "name": "nest_96_wellplate_2ml_deep_F1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.2, + "y": 25.05, + "z": 3.0 + }, + "position3d": { + "x": 10.2, + "y": 25.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F1_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.2, + "y": 25.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_G1", + "uuid": "e8dd3acf-ec3f-4904-b804-bb9a7d37708e", + "name": "nest_96_wellplate_2ml_deep_G1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.2, + "y": 16.05, + "z": 3.0 + }, + "position3d": { + "x": 10.2, + "y": 16.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G1_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.2, + "y": 16.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_H1", + "uuid": "5861204c-8068-4e20-b363-906d4ef0d820", + "name": "nest_96_wellplate_2ml_deep_H1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.2, + "y": 7.05, + "z": 3.0 + }, + "position3d": { + "x": 10.2, + "y": 7.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H1_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.2, + "y": 7.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_A2", + "uuid": "d2152c1d-9124-4676-8f05-354797f9f81a", + "name": "nest_96_wellplate_2ml_deep_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 19.2, + "y": 70.05, + "z": 3.0 + }, + "position3d": { + "x": 19.2, + "y": 70.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A2_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 19.2, + "y": 70.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_B2", + "uuid": "f0c6496a-fa65-446a-a9e6-f8ad248ffcfb", + "name": "nest_96_wellplate_2ml_deep_B2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 19.2, + "y": 61.05, + "z": 3.0 + }, + "position3d": { + "x": 19.2, + "y": 61.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B2_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 19.2, + "y": 61.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_C2", + "uuid": "3e9efe6a-29e9-4b40-bd55-e449bb5130c7", + "name": "nest_96_wellplate_2ml_deep_C2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 19.2, + "y": 52.05, + "z": 3.0 + }, + "position3d": { + "x": 19.2, + "y": 52.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C2_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 19.2, + "y": 52.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_D2", + "uuid": "0e37c69f-fdff-4be8-865b-c517732c8167", + "name": "nest_96_wellplate_2ml_deep_D2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 19.2, + "y": 43.05, + "z": 3.0 + }, + "position3d": { + "x": 19.2, + "y": 43.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D2_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 19.2, + "y": 43.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_E2", + "uuid": "f3b4043b-7de1-4c45-b796-d1de64ddd61f", + "name": "nest_96_wellplate_2ml_deep_E2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 19.2, + "y": 34.05, + "z": 3.0 + }, + "position3d": { + "x": 19.2, + "y": 34.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E2_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 19.2, + "y": 34.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_F2", + "uuid": "81c498ca-7aad-49a0-a428-464221a44130", + "name": "nest_96_wellplate_2ml_deep_F2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 19.2, + "y": 25.05, + "z": 3.0 + }, + "position3d": { + "x": 19.2, + "y": 25.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F2_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 19.2, + "y": 25.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_G2", + "uuid": "5da8aed0-eab2-434b-ac80-91bfabb37cda", + "name": "nest_96_wellplate_2ml_deep_G2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 19.2, + "y": 16.05, + "z": 3.0 + }, + "position3d": { + "x": 19.2, + "y": 16.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G2_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 19.2, + "y": 16.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_H2", + "uuid": "71786191-309c-4b69-b111-4171a55840c9", + "name": "nest_96_wellplate_2ml_deep_H2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 19.2, + "y": 7.05, + "z": 3.0 + }, + "position3d": { + "x": 19.2, + "y": 7.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H2_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 19.2, + "y": 7.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_A3", + "uuid": "2f81988f-0842-4f70-b2e5-fd60afc3de93", + "name": "nest_96_wellplate_2ml_deep_A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.2, + "y": 70.05, + "z": 3.0 + }, + "position3d": { + "x": 28.2, + "y": 70.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A3_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.2, + "y": 70.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_B3", + "uuid": "58fc12fb-16be-4889-bde5-9bf6f3f6c972", + "name": "nest_96_wellplate_2ml_deep_B3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.2, + "y": 61.05, + "z": 3.0 + }, + "position3d": { + "x": 28.2, + "y": 61.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B3_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.2, + "y": 61.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_C3", + "uuid": "9fe46b34-d3c7-42e7-ad69-a8620743281f", + "name": "nest_96_wellplate_2ml_deep_C3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.2, + "y": 52.05, + "z": 3.0 + }, + "position3d": { + "x": 28.2, + "y": 52.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C3_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.2, + "y": 52.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_D3", + "uuid": "a55130c8-be69-4d07-aa40-19191b77c020", + "name": "nest_96_wellplate_2ml_deep_D3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.2, + "y": 43.05, + "z": 3.0 + }, + "position3d": { + "x": 28.2, + "y": 43.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D3_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.2, + "y": 43.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_E3", + "uuid": "6c1ee139-105e-419a-ab08-2efeda39d18f", + "name": "nest_96_wellplate_2ml_deep_E3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.2, + "y": 34.05, + "z": 3.0 + }, + "position3d": { + "x": 28.2, + "y": 34.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E3_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.2, + "y": 34.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_F3", + "uuid": "72ee2464-1cfa-40be-b1e4-8cd855c777b9", + "name": "nest_96_wellplate_2ml_deep_F3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.2, + "y": 25.05, + "z": 3.0 + }, + "position3d": { + "x": 28.2, + "y": 25.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F3_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.2, + "y": 25.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_G3", + "uuid": "c974943d-6a4d-4f51-8531-296e5d5e7412", + "name": "nest_96_wellplate_2ml_deep_G3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.2, + "y": 16.05, + "z": 3.0 + }, + "position3d": { + "x": 28.2, + "y": 16.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G3_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.2, + "y": 16.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_H3", + "uuid": "5c27248a-2f36-4cd4-9a6c-273b07a1f67d", + "name": "nest_96_wellplate_2ml_deep_H3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.2, + "y": 7.05, + "z": 3.0 + }, + "position3d": { + "x": 28.2, + "y": 7.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H3_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.2, + "y": 7.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_A4", + "uuid": "cc50f90d-8746-4a06-946e-7fccc47c6714", + "name": "nest_96_wellplate_2ml_deep_A4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.2, + "y": 70.05, + "z": 3.0 + }, + "position3d": { + "x": 37.2, + "y": 70.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A4_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.2, + "y": 70.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_B4", + "uuid": "a3cc19c0-cae7-436b-9c94-dbb1e1fff625", + "name": "nest_96_wellplate_2ml_deep_B4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.2, + "y": 61.05, + "z": 3.0 + }, + "position3d": { + "x": 37.2, + "y": 61.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B4_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.2, + "y": 61.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_C4", + "uuid": "1a4e9d4f-8c86-4465-83b6-827602946aa2", + "name": "nest_96_wellplate_2ml_deep_C4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.2, + "y": 52.05, + "z": 3.0 + }, + "position3d": { + "x": 37.2, + "y": 52.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C4_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.2, + "y": 52.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_D4", + "uuid": "d256fca3-ae4a-436c-a481-b2f6f7b357e7", + "name": "nest_96_wellplate_2ml_deep_D4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.2, + "y": 43.05, + "z": 3.0 + }, + "position3d": { + "x": 37.2, + "y": 43.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D4_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.2, + "y": 43.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_E4", + "uuid": "4ba1a0e1-7e0f-4b45-ab71-33c52b8308c2", + "name": "nest_96_wellplate_2ml_deep_E4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.2, + "y": 34.05, + "z": 3.0 + }, + "position3d": { + "x": 37.2, + "y": 34.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E4_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.2, + "y": 34.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_F4", + "uuid": "80e78501-de76-4b57-ad51-5bde9aba2898", + "name": "nest_96_wellplate_2ml_deep_F4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.2, + "y": 25.05, + "z": 3.0 + }, + "position3d": { + "x": 37.2, + "y": 25.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F4_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.2, + "y": 25.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_G4", + "uuid": "4f921202-c6fd-47b5-a27b-8903d502406e", + "name": "nest_96_wellplate_2ml_deep_G4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.2, + "y": 16.05, + "z": 3.0 + }, + "position3d": { + "x": 37.2, + "y": 16.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G4_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.2, + "y": 16.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_H4", + "uuid": "a759682f-7c70-4dd9-9dd6-cf697f3bcb58", + "name": "nest_96_wellplate_2ml_deep_H4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.2, + "y": 7.05, + "z": 3.0 + }, + "position3d": { + "x": 37.2, + "y": 7.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H4_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.2, + "y": 7.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_A5", + "uuid": "c0f95e78-ed25-4753-a4c5-6f17e18a9bda", + "name": "nest_96_wellplate_2ml_deep_A5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.2, + "y": 70.05, + "z": 3.0 + }, + "position3d": { + "x": 46.2, + "y": 70.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A5_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.2, + "y": 70.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_B5", + "uuid": "455a9cde-d9bf-4ceb-b3f8-a220fca869c2", + "name": "nest_96_wellplate_2ml_deep_B5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.2, + "y": 61.05, + "z": 3.0 + }, + "position3d": { + "x": 46.2, + "y": 61.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B5_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.2, + "y": 61.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_C5", + "uuid": "775c768a-4908-4f14-9b36-61597cd37198", + "name": "nest_96_wellplate_2ml_deep_C5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.2, + "y": 52.05, + "z": 3.0 + }, + "position3d": { + "x": 46.2, + "y": 52.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C5_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.2, + "y": 52.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_D5", + "uuid": "84d7474f-b6e1-402b-b6bc-2d846a87cb7b", + "name": "nest_96_wellplate_2ml_deep_D5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.2, + "y": 43.05, + "z": 3.0 + }, + "position3d": { + "x": 46.2, + "y": 43.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D5_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.2, + "y": 43.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_E5", + "uuid": "00a6ac2b-c3bf-4dd6-9257-f9fa35f627b5", + "name": "nest_96_wellplate_2ml_deep_E5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.2, + "y": 34.05, + "z": 3.0 + }, + "position3d": { + "x": 46.2, + "y": 34.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E5_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.2, + "y": 34.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_F5", + "uuid": "9832c8d1-ddf2-43fb-98fa-f8295ba8634d", + "name": "nest_96_wellplate_2ml_deep_F5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.2, + "y": 25.05, + "z": 3.0 + }, + "position3d": { + "x": 46.2, + "y": 25.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F5_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.2, + "y": 25.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_G5", + "uuid": "3e2c0640-ea59-4c64-91c6-fab3d99c8ef7", + "name": "nest_96_wellplate_2ml_deep_G5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.2, + "y": 16.05, + "z": 3.0 + }, + "position3d": { + "x": 46.2, + "y": 16.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G5_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.2, + "y": 16.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_H5", + "uuid": "78439799-ccc8-42e7-ab39-999d5c090049", + "name": "nest_96_wellplate_2ml_deep_H5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.2, + "y": 7.05, + "z": 3.0 + }, + "position3d": { + "x": 46.2, + "y": 7.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H5_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.2, + "y": 7.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_A6", + "uuid": "d10c20ba-f042-420f-be78-e840f20df493", + "name": "nest_96_wellplate_2ml_deep_A6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.2, + "y": 70.05, + "z": 3.0 + }, + "position3d": { + "x": 55.2, + "y": 70.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A6_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.2, + "y": 70.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_B6", + "uuid": "deb14da1-29e9-4434-af4c-7efbceeb8ab2", + "name": "nest_96_wellplate_2ml_deep_B6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.2, + "y": 61.05, + "z": 3.0 + }, + "position3d": { + "x": 55.2, + "y": 61.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B6_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.2, + "y": 61.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_C6", + "uuid": "3d8a1ffc-b24f-4bba-807d-c065f78f6364", + "name": "nest_96_wellplate_2ml_deep_C6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.2, + "y": 52.05, + "z": 3.0 + }, + "position3d": { + "x": 55.2, + "y": 52.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C6_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.2, + "y": 52.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_D6", + "uuid": "ccff1e5c-96c5-45f0-bad0-ae8e18f88764", + "name": "nest_96_wellplate_2ml_deep_D6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.2, + "y": 43.05, + "z": 3.0 + }, + "position3d": { + "x": 55.2, + "y": 43.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D6_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.2, + "y": 43.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_E6", + "uuid": "d3c6675e-6a94-4b7a-868c-51751960c25e", + "name": "nest_96_wellplate_2ml_deep_E6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.2, + "y": 34.05, + "z": 3.0 + }, + "position3d": { + "x": 55.2, + "y": 34.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E6_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.2, + "y": 34.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_F6", + "uuid": "c6a614bb-118f-42cf-a4c4-304f1926feb0", + "name": "nest_96_wellplate_2ml_deep_F6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.2, + "y": 25.05, + "z": 3.0 + }, + "position3d": { + "x": 55.2, + "y": 25.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F6_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.2, + "y": 25.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_G6", + "uuid": "ef2061f8-aca0-481e-8118-283ee05683f3", + "name": "nest_96_wellplate_2ml_deep_G6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.2, + "y": 16.05, + "z": 3.0 + }, + "position3d": { + "x": 55.2, + "y": 16.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G6_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.2, + "y": 16.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_H6", + "uuid": "0493edf5-7785-4435-b1f1-2b48bdce24c7", + "name": "nest_96_wellplate_2ml_deep_H6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.2, + "y": 7.05, + "z": 3.0 + }, + "position3d": { + "x": 55.2, + "y": 7.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H6_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.2, + "y": 7.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_A7", + "uuid": "45f2d987-4feb-49cd-b9c4-25df9d250cd1", + "name": "nest_96_wellplate_2ml_deep_A7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.2, + "y": 70.05, + "z": 3.0 + }, + "position3d": { + "x": 64.2, + "y": 70.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A7_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.2, + "y": 70.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_B7", + "uuid": "dcbd7035-6544-4eda-8d0c-889801b45a4b", + "name": "nest_96_wellplate_2ml_deep_B7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.2, + "y": 61.05, + "z": 3.0 + }, + "position3d": { + "x": 64.2, + "y": 61.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B7_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.2, + "y": 61.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_C7", + "uuid": "0c8ebca4-1ea3-49c9-b487-7de939d0eaca", + "name": "nest_96_wellplate_2ml_deep_C7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.2, + "y": 52.05, + "z": 3.0 + }, + "position3d": { + "x": 64.2, + "y": 52.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C7_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.2, + "y": 52.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_D7", + "uuid": "95f9f4fe-754b-466b-a576-848fe9ddabb7", + "name": "nest_96_wellplate_2ml_deep_D7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.2, + "y": 43.05, + "z": 3.0 + }, + "position3d": { + "x": 64.2, + "y": 43.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D7_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.2, + "y": 43.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_E7", + "uuid": "86a50699-793f-4980-b972-b32baee052d6", + "name": "nest_96_wellplate_2ml_deep_E7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.2, + "y": 34.05, + "z": 3.0 + }, + "position3d": { + "x": 64.2, + "y": 34.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E7_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.2, + "y": 34.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_F7", + "uuid": "e97eb8c6-f6a4-4ef9-ae0d-c38eeff8227f", + "name": "nest_96_wellplate_2ml_deep_F7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.2, + "y": 25.05, + "z": 3.0 + }, + "position3d": { + "x": 64.2, + "y": 25.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F7_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.2, + "y": 25.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_G7", + "uuid": "90f22816-9f7d-43c1-a0ea-e56c6767d5b5", + "name": "nest_96_wellplate_2ml_deep_G7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.2, + "y": 16.05, + "z": 3.0 + }, + "position3d": { + "x": 64.2, + "y": 16.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G7_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.2, + "y": 16.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_H7", + "uuid": "5f65688e-315a-4b21-9b32-a15d6537cfe1", + "name": "nest_96_wellplate_2ml_deep_H7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.2, + "y": 7.05, + "z": 3.0 + }, + "position3d": { + "x": 64.2, + "y": 7.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H7_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.2, + "y": 7.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_A8", + "uuid": "c201bbc9-2483-43d8-9488-7b0d79913588", + "name": "nest_96_wellplate_2ml_deep_A8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.2, + "y": 70.05, + "z": 3.0 + }, + "position3d": { + "x": 73.2, + "y": 70.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A8_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.2, + "y": 70.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_B8", + "uuid": "1b63e3d0-8e70-4819-b746-88c331d97598", + "name": "nest_96_wellplate_2ml_deep_B8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.2, + "y": 61.05, + "z": 3.0 + }, + "position3d": { + "x": 73.2, + "y": 61.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B8_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.2, + "y": 61.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_C8", + "uuid": "98fe5cdf-2745-4fb2-ba89-160b0eada864", + "name": "nest_96_wellplate_2ml_deep_C8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.2, + "y": 52.05, + "z": 3.0 + }, + "position3d": { + "x": 73.2, + "y": 52.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C8_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.2, + "y": 52.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_D8", + "uuid": "5c7c42a2-3cd9-470b-8cf5-e76491a5ea35", + "name": "nest_96_wellplate_2ml_deep_D8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.2, + "y": 43.05, + "z": 3.0 + }, + "position3d": { + "x": 73.2, + "y": 43.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D8_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.2, + "y": 43.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_E8", + "uuid": "20c81bcc-77c3-4f1a-bbb7-0d44035271da", + "name": "nest_96_wellplate_2ml_deep_E8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.2, + "y": 34.05, + "z": 3.0 + }, + "position3d": { + "x": 73.2, + "y": 34.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E8_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.2, + "y": 34.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_F8", + "uuid": "4fd37757-eaf8-4850-83bc-d94d440b1222", + "name": "nest_96_wellplate_2ml_deep_F8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.2, + "y": 25.05, + "z": 3.0 + }, + "position3d": { + "x": 73.2, + "y": 25.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F8_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.2, + "y": 25.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_G8", + "uuid": "f2c80906-0911-4365-94cf-be27dab4c690", + "name": "nest_96_wellplate_2ml_deep_G8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.2, + "y": 16.05, + "z": 3.0 + }, + "position3d": { + "x": 73.2, + "y": 16.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G8_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.2, + "y": 16.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_H8", + "uuid": "bf9b3df7-ce45-432c-8454-83f444993fd0", + "name": "nest_96_wellplate_2ml_deep_H8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.2, + "y": 7.05, + "z": 3.0 + }, + "position3d": { + "x": 73.2, + "y": 7.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H8_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.2, + "y": 7.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_A9", + "uuid": "0f599fa9-e4cc-4d89-a911-b6a0db13d05a", + "name": "nest_96_wellplate_2ml_deep_A9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.2, + "y": 70.05, + "z": 3.0 + }, + "position3d": { + "x": 82.2, + "y": 70.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A9_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.2, + "y": 70.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_B9", + "uuid": "80923c20-0a2f-44a0-8c73-6f9ff3dde249", + "name": "nest_96_wellplate_2ml_deep_B9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.2, + "y": 61.05, + "z": 3.0 + }, + "position3d": { + "x": 82.2, + "y": 61.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B9_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.2, + "y": 61.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_C9", + "uuid": "6271e37b-2015-40b1-9d92-e02ecd9bacdb", + "name": "nest_96_wellplate_2ml_deep_C9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.2, + "y": 52.05, + "z": 3.0 + }, + "position3d": { + "x": 82.2, + "y": 52.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C9_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.2, + "y": 52.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_D9", + "uuid": "5c9b1fe2-b6d4-4bf8-846c-1bfbd8ec7e07", + "name": "nest_96_wellplate_2ml_deep_D9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.2, + "y": 43.05, + "z": 3.0 + }, + "position3d": { + "x": 82.2, + "y": 43.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D9_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.2, + "y": 43.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_E9", + "uuid": "777a0292-636b-4fb8-b762-8313f6a5b1ab", + "name": "nest_96_wellplate_2ml_deep_E9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.2, + "y": 34.05, + "z": 3.0 + }, + "position3d": { + "x": 82.2, + "y": 34.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E9_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.2, + "y": 34.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_F9", + "uuid": "2bcd49c0-2803-429c-867a-654433c32dd5", + "name": "nest_96_wellplate_2ml_deep_F9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.2, + "y": 25.05, + "z": 3.0 + }, + "position3d": { + "x": 82.2, + "y": 25.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F9_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.2, + "y": 25.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_G9", + "uuid": "537a4918-10e5-45b7-997f-10e5c4df303a", + "name": "nest_96_wellplate_2ml_deep_G9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.2, + "y": 16.05, + "z": 3.0 + }, + "position3d": { + "x": 82.2, + "y": 16.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G9_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.2, + "y": 16.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_H9", + "uuid": "086bd0d7-f875-4c24-9ede-d9af469d17c1", + "name": "nest_96_wellplate_2ml_deep_H9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.2, + "y": 7.05, + "z": 3.0 + }, + "position3d": { + "x": 82.2, + "y": 7.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H9_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.2, + "y": 7.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_A10", + "uuid": "1e3184c5-e510-4e32-812f-f6a60810572e", + "name": "nest_96_wellplate_2ml_deep_A10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.2, + "y": 70.05, + "z": 3.0 + }, + "position3d": { + "x": 91.2, + "y": 70.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A10_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.2, + "y": 70.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_B10", + "uuid": "e0858659-346a-40d3-80fc-88bd09bbe21c", + "name": "nest_96_wellplate_2ml_deep_B10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.2, + "y": 61.05, + "z": 3.0 + }, + "position3d": { + "x": 91.2, + "y": 61.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B10_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.2, + "y": 61.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_C10", + "uuid": "697605ff-d7be-4ce5-8aa6-db38db34c5e0", + "name": "nest_96_wellplate_2ml_deep_C10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.2, + "y": 52.05, + "z": 3.0 + }, + "position3d": { + "x": 91.2, + "y": 52.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C10_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.2, + "y": 52.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_D10", + "uuid": "610ba5df-0b2f-4128-a1fe-bde4043b34f8", + "name": "nest_96_wellplate_2ml_deep_D10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.2, + "y": 43.05, + "z": 3.0 + }, + "position3d": { + "x": 91.2, + "y": 43.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D10_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.2, + "y": 43.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_E10", + "uuid": "afea97b6-76b5-4b28-ac50-f5894b8fa6e8", + "name": "nest_96_wellplate_2ml_deep_E10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.2, + "y": 34.05, + "z": 3.0 + }, + "position3d": { + "x": 91.2, + "y": 34.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E10_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.2, + "y": 34.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_F10", + "uuid": "5539ee67-8b00-4318-b05c-85cb8c9d2b65", + "name": "nest_96_wellplate_2ml_deep_F10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.2, + "y": 25.05, + "z": 3.0 + }, + "position3d": { + "x": 91.2, + "y": 25.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F10_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.2, + "y": 25.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_G10", + "uuid": "9f29872e-e8fe-4363-8159-9eb7fda98df2", + "name": "nest_96_wellplate_2ml_deep_G10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.2, + "y": 16.05, + "z": 3.0 + }, + "position3d": { + "x": 91.2, + "y": 16.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G10_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.2, + "y": 16.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_H10", + "uuid": "ba077d75-dfd4-42af-9271-df07fa457e38", + "name": "nest_96_wellplate_2ml_deep_H10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.2, + "y": 7.05, + "z": 3.0 + }, + "position3d": { + "x": 91.2, + "y": 7.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H10_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.2, + "y": 7.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_A11", + "uuid": "74a8635d-3f03-42aa-9ef5-4271c49695b3", + "name": "nest_96_wellplate_2ml_deep_A11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.2, + "y": 70.05, + "z": 3.0 + }, + "position3d": { + "x": 100.2, + "y": 70.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A11_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.2, + "y": 70.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_B11", + "uuid": "a5d3a368-8a77-4197-8bfe-3a7f4b594adb", + "name": "nest_96_wellplate_2ml_deep_B11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.2, + "y": 61.05, + "z": 3.0 + }, + "position3d": { + "x": 100.2, + "y": 61.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B11_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.2, + "y": 61.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_C11", + "uuid": "ef361d6e-97b4-4623-8e87-26ccd28fbc10", + "name": "nest_96_wellplate_2ml_deep_C11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.2, + "y": 52.05, + "z": 3.0 + }, + "position3d": { + "x": 100.2, + "y": 52.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C11_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.2, + "y": 52.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_D11", + "uuid": "bb6765dc-7b24-4b82-ae7e-a19d96dfb84e", + "name": "nest_96_wellplate_2ml_deep_D11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.2, + "y": 43.05, + "z": 3.0 + }, + "position3d": { + "x": 100.2, + "y": 43.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D11_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.2, + "y": 43.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_E11", + "uuid": "96d76854-fa1c-4091-a0de-c492914a9599", + "name": "nest_96_wellplate_2ml_deep_E11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.2, + "y": 34.05, + "z": 3.0 + }, + "position3d": { + "x": 100.2, + "y": 34.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E11_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.2, + "y": 34.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_F11", + "uuid": "40f9365e-3dff-432e-a616-05bbce257584", + "name": "nest_96_wellplate_2ml_deep_F11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.2, + "y": 25.05, + "z": 3.0 + }, + "position3d": { + "x": 100.2, + "y": 25.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F11_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.2, + "y": 25.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_G11", + "uuid": "a7417417-b59a-4312-937a-aafd7489c043", + "name": "nest_96_wellplate_2ml_deep_G11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.2, + "y": 16.05, + "z": 3.0 + }, + "position3d": { + "x": 100.2, + "y": 16.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G11_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.2, + "y": 16.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_H11", + "uuid": "b87836df-fbc5-494f-96c9-655d88457fab", + "name": "nest_96_wellplate_2ml_deep_H11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.2, + "y": 7.05, + "z": 3.0 + }, + "position3d": { + "x": 100.2, + "y": 7.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H11_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.2, + "y": 7.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_A12", + "uuid": "c2cf6d8d-66e9-4732-b008-4b50b38212c4", + "name": "nest_96_wellplate_2ml_deep_A12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.2, + "y": 70.05, + "z": 3.0 + }, + "position3d": { + "x": 109.2, + "y": 70.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A12_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.2, + "y": 70.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_B12", + "uuid": "e5121efd-787e-4837-8aa3-d60b0c95388e", + "name": "nest_96_wellplate_2ml_deep_B12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.2, + "y": 61.05, + "z": 3.0 + }, + "position3d": { + "x": 109.2, + "y": 61.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B12_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.2, + "y": 61.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_C12", + "uuid": "d0c4c226-3030-4e7d-8153-daa7e7588d29", + "name": "nest_96_wellplate_2ml_deep_C12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.2, + "y": 52.05, + "z": 3.0 + }, + "position3d": { + "x": 109.2, + "y": 52.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C12_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.2, + "y": 52.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_D12", + "uuid": "b5812e17-05de-48c6-aaa5-8298ccbc4a3d", + "name": "nest_96_wellplate_2ml_deep_D12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.2, + "y": 43.05, + "z": 3.0 + }, + "position3d": { + "x": 109.2, + "y": 43.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D12_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.2, + "y": 43.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_E12", + "uuid": "d6cd8ba8-57fe-4d58-aea4-968219c996a9", + "name": "nest_96_wellplate_2ml_deep_E12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.2, + "y": 34.05, + "z": 3.0 + }, + "position3d": { + "x": 109.2, + "y": 34.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E12_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.2, + "y": 34.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_F12", + "uuid": "edbe899c-bd2a-49c0-ba3d-959f030dc77c", + "name": "nest_96_wellplate_2ml_deep_F12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.2, + "y": 25.05, + "z": 3.0 + }, + "position3d": { + "x": 109.2, + "y": 25.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F12_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.2, + "y": 25.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_G12", + "uuid": "a635c6f8-ceaa-422d-b6ae-92b010c33e93", + "name": "nest_96_wellplate_2ml_deep_G12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.2, + "y": 16.05, + "z": 3.0 + }, + "position3d": { + "x": 109.2, + "y": 16.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G12_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.2, + "y": 16.05, + "z": 3.0 + } + }, + { + "id": "nest_96_wellplate_2ml_deep_H12", + "uuid": "3fd9e072-bc70-4bfe-ae5e-f471d0f4e0af", + "name": "nest_96_wellplate_2ml_deep_H12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "20a0fcfa-892f-4a8f-943d-f06d884b4a80", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 38.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.2, + "y": 7.05, + "z": 3.0 + }, + "position3d": { + "x": 109.2, + "y": 7.05, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 38, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H12_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.2, + "y": 7.05, + "z": 3.0 + } + } + ] + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul", + "category": [ + "plates" + ], + "class": { + "module": "pylabrobot.resources.opentrons.plates:thermoscientificnunc_96_wellplate_1300ul", + "type": "pylabrobot" + }, + "description": "Thermoscientific Nunc 96 wellplate 1300ul", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/opentrons/plates.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "thermoscientificnunc_96_wellplate_1300ul", + "uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "name": "thermoscientificnunc_96_wellplate_1300ul", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "plate", + "class": "", + "pose": { + "size": { + "depth": 31.6, + "width": 127.76, + "height": 85.47 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Plate", + "size_x": 127.76, + "size_y": 85.47, + "size_z": 31.6, + "category": "plate", + "model": "Thermo Scientific Nunc 96 Well Plate 1300 µL", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "thermoscientificnunc_96_wellplate_1300ul_A1", + "B1": "thermoscientificnunc_96_wellplate_1300ul_B1", + "C1": "thermoscientificnunc_96_wellplate_1300ul_C1", + "D1": "thermoscientificnunc_96_wellplate_1300ul_D1", + "E1": "thermoscientificnunc_96_wellplate_1300ul_E1", + "F1": "thermoscientificnunc_96_wellplate_1300ul_F1", + "G1": "thermoscientificnunc_96_wellplate_1300ul_G1", + "H1": "thermoscientificnunc_96_wellplate_1300ul_H1", + "A2": "thermoscientificnunc_96_wellplate_1300ul_A2", + "B2": "thermoscientificnunc_96_wellplate_1300ul_B2", + "C2": "thermoscientificnunc_96_wellplate_1300ul_C2", + "D2": "thermoscientificnunc_96_wellplate_1300ul_D2", + "E2": "thermoscientificnunc_96_wellplate_1300ul_E2", + "F2": "thermoscientificnunc_96_wellplate_1300ul_F2", + "G2": "thermoscientificnunc_96_wellplate_1300ul_G2", + "H2": "thermoscientificnunc_96_wellplate_1300ul_H2", + "A3": "thermoscientificnunc_96_wellplate_1300ul_A3", + "B3": "thermoscientificnunc_96_wellplate_1300ul_B3", + "C3": "thermoscientificnunc_96_wellplate_1300ul_C3", + "D3": "thermoscientificnunc_96_wellplate_1300ul_D3", + "E3": "thermoscientificnunc_96_wellplate_1300ul_E3", + "F3": "thermoscientificnunc_96_wellplate_1300ul_F3", + "G3": "thermoscientificnunc_96_wellplate_1300ul_G3", + "H3": "thermoscientificnunc_96_wellplate_1300ul_H3", + "A4": "thermoscientificnunc_96_wellplate_1300ul_A4", + "B4": "thermoscientificnunc_96_wellplate_1300ul_B4", + "C4": "thermoscientificnunc_96_wellplate_1300ul_C4", + "D4": "thermoscientificnunc_96_wellplate_1300ul_D4", + "E4": "thermoscientificnunc_96_wellplate_1300ul_E4", + "F4": "thermoscientificnunc_96_wellplate_1300ul_F4", + "G4": "thermoscientificnunc_96_wellplate_1300ul_G4", + "H4": "thermoscientificnunc_96_wellplate_1300ul_H4", + "A5": "thermoscientificnunc_96_wellplate_1300ul_A5", + "B5": "thermoscientificnunc_96_wellplate_1300ul_B5", + "C5": "thermoscientificnunc_96_wellplate_1300ul_C5", + "D5": "thermoscientificnunc_96_wellplate_1300ul_D5", + "E5": "thermoscientificnunc_96_wellplate_1300ul_E5", + "F5": "thermoscientificnunc_96_wellplate_1300ul_F5", + "G5": "thermoscientificnunc_96_wellplate_1300ul_G5", + "H5": "thermoscientificnunc_96_wellplate_1300ul_H5", + "A6": "thermoscientificnunc_96_wellplate_1300ul_A6", + "B6": "thermoscientificnunc_96_wellplate_1300ul_B6", + "C6": "thermoscientificnunc_96_wellplate_1300ul_C6", + "D6": "thermoscientificnunc_96_wellplate_1300ul_D6", + "E6": "thermoscientificnunc_96_wellplate_1300ul_E6", + "F6": "thermoscientificnunc_96_wellplate_1300ul_F6", + "G6": "thermoscientificnunc_96_wellplate_1300ul_G6", + "H6": "thermoscientificnunc_96_wellplate_1300ul_H6", + "A7": "thermoscientificnunc_96_wellplate_1300ul_A7", + "B7": "thermoscientificnunc_96_wellplate_1300ul_B7", + "C7": "thermoscientificnunc_96_wellplate_1300ul_C7", + "D7": "thermoscientificnunc_96_wellplate_1300ul_D7", + "E7": "thermoscientificnunc_96_wellplate_1300ul_E7", + "F7": "thermoscientificnunc_96_wellplate_1300ul_F7", + "G7": "thermoscientificnunc_96_wellplate_1300ul_G7", + "H7": "thermoscientificnunc_96_wellplate_1300ul_H7", + "A8": "thermoscientificnunc_96_wellplate_1300ul_A8", + "B8": "thermoscientificnunc_96_wellplate_1300ul_B8", + "C8": "thermoscientificnunc_96_wellplate_1300ul_C8", + "D8": "thermoscientificnunc_96_wellplate_1300ul_D8", + "E8": "thermoscientificnunc_96_wellplate_1300ul_E8", + "F8": "thermoscientificnunc_96_wellplate_1300ul_F8", + "G8": "thermoscientificnunc_96_wellplate_1300ul_G8", + "H8": "thermoscientificnunc_96_wellplate_1300ul_H8", + "A9": "thermoscientificnunc_96_wellplate_1300ul_A9", + "B9": "thermoscientificnunc_96_wellplate_1300ul_B9", + "C9": "thermoscientificnunc_96_wellplate_1300ul_C9", + "D9": "thermoscientificnunc_96_wellplate_1300ul_D9", + "E9": "thermoscientificnunc_96_wellplate_1300ul_E9", + "F9": "thermoscientificnunc_96_wellplate_1300ul_F9", + "G9": "thermoscientificnunc_96_wellplate_1300ul_G9", + "H9": "thermoscientificnunc_96_wellplate_1300ul_H9", + "A10": "thermoscientificnunc_96_wellplate_1300ul_A10", + "B10": "thermoscientificnunc_96_wellplate_1300ul_B10", + "C10": "thermoscientificnunc_96_wellplate_1300ul_C10", + "D10": "thermoscientificnunc_96_wellplate_1300ul_D10", + "E10": "thermoscientificnunc_96_wellplate_1300ul_E10", + "F10": "thermoscientificnunc_96_wellplate_1300ul_F10", + "G10": "thermoscientificnunc_96_wellplate_1300ul_G10", + "H10": "thermoscientificnunc_96_wellplate_1300ul_H10", + "A11": "thermoscientificnunc_96_wellplate_1300ul_A11", + "B11": "thermoscientificnunc_96_wellplate_1300ul_B11", + "C11": "thermoscientificnunc_96_wellplate_1300ul_C11", + "D11": "thermoscientificnunc_96_wellplate_1300ul_D11", + "E11": "thermoscientificnunc_96_wellplate_1300ul_E11", + "F11": "thermoscientificnunc_96_wellplate_1300ul_F11", + "G11": "thermoscientificnunc_96_wellplate_1300ul_G11", + "H11": "thermoscientificnunc_96_wellplate_1300ul_H11", + "A12": "thermoscientificnunc_96_wellplate_1300ul_A12", + "B12": "thermoscientificnunc_96_wellplate_1300ul_B12", + "C12": "thermoscientificnunc_96_wellplate_1300ul_C12", + "D12": "thermoscientificnunc_96_wellplate_1300ul_D12", + "E12": "thermoscientificnunc_96_wellplate_1300ul_E12", + "F12": "thermoscientificnunc_96_wellplate_1300ul_F12", + "G12": "thermoscientificnunc_96_wellplate_1300ul_G12", + "H12": "thermoscientificnunc_96_wellplate_1300ul_H12" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_A1", + "uuid": "c3775744-559f-4835-a251-49f571530042", + "name": "thermoscientificnunc_96_wellplate_1300ul_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.43, + "y": 71.3, + "z": 2.5 + }, + "position3d": { + "x": 11.43, + "y": 71.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A1_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.43, + "y": 71.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_B1", + "uuid": "380f9134-2179-4173-a45d-bf883abd282d", + "name": "thermoscientificnunc_96_wellplate_1300ul_B1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.43, + "y": 62.3, + "z": 2.5 + }, + "position3d": { + "x": 11.43, + "y": 62.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B1_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.43, + "y": 62.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_C1", + "uuid": "4d676360-b951-4acf-a157-8b0f42ebfd39", + "name": "thermoscientificnunc_96_wellplate_1300ul_C1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.43, + "y": 53.3, + "z": 2.5 + }, + "position3d": { + "x": 11.43, + "y": 53.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C1_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.43, + "y": 53.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_D1", + "uuid": "f8e2d37a-b6fb-4ba8-af3d-fd7543853d34", + "name": "thermoscientificnunc_96_wellplate_1300ul_D1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.43, + "y": 44.3, + "z": 2.5 + }, + "position3d": { + "x": 11.43, + "y": 44.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D1_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.43, + "y": 44.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_E1", + "uuid": "b9558481-3866-4f7e-a121-7614ca2e98be", + "name": "thermoscientificnunc_96_wellplate_1300ul_E1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.43, + "y": 35.3, + "z": 2.5 + }, + "position3d": { + "x": 11.43, + "y": 35.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E1_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.43, + "y": 35.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_F1", + "uuid": "4d49856f-36ea-49f3-a1dc-ddaa5e99f070", + "name": "thermoscientificnunc_96_wellplate_1300ul_F1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.43, + "y": 26.3, + "z": 2.5 + }, + "position3d": { + "x": 11.43, + "y": 26.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F1_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.43, + "y": 26.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_G1", + "uuid": "441a9be0-1b0e-4bd1-a552-2ea0abcced7f", + "name": "thermoscientificnunc_96_wellplate_1300ul_G1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.43, + "y": 17.3, + "z": 2.5 + }, + "position3d": { + "x": 11.43, + "y": 17.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G1_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.43, + "y": 17.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_H1", + "uuid": "64ced860-c74e-4ed2-93bf-3e583d90edfb", + "name": "thermoscientificnunc_96_wellplate_1300ul_H1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.43, + "y": 8.3, + "z": 2.5 + }, + "position3d": { + "x": 11.43, + "y": 8.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H1_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.43, + "y": 8.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_A2", + "uuid": "9ed05e2c-3337-4a9d-a1e1-ddf5ab9fb748", + "name": "thermoscientificnunc_96_wellplate_1300ul_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.43, + "y": 71.3, + "z": 2.5 + }, + "position3d": { + "x": 20.43, + "y": 71.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A2_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.43, + "y": 71.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_B2", + "uuid": "c2715b4f-99c0-4a32-8725-9f3a05d4b23d", + "name": "thermoscientificnunc_96_wellplate_1300ul_B2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.43, + "y": 62.3, + "z": 2.5 + }, + "position3d": { + "x": 20.43, + "y": 62.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B2_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.43, + "y": 62.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_C2", + "uuid": "0c44b5db-53dd-4959-9874-ebfb4bd2465e", + "name": "thermoscientificnunc_96_wellplate_1300ul_C2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.43, + "y": 53.3, + "z": 2.5 + }, + "position3d": { + "x": 20.43, + "y": 53.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C2_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.43, + "y": 53.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_D2", + "uuid": "24ef0f51-0be7-4882-81b8-3871a904e74c", + "name": "thermoscientificnunc_96_wellplate_1300ul_D2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.43, + "y": 44.3, + "z": 2.5 + }, + "position3d": { + "x": 20.43, + "y": 44.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D2_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.43, + "y": 44.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_E2", + "uuid": "645f78da-7686-4ee1-ba0d-b2dd3af637c2", + "name": "thermoscientificnunc_96_wellplate_1300ul_E2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.43, + "y": 35.3, + "z": 2.5 + }, + "position3d": { + "x": 20.43, + "y": 35.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E2_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.43, + "y": 35.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_F2", + "uuid": "3bc19a9f-7147-4c36-94b1-8b5281b4a1c3", + "name": "thermoscientificnunc_96_wellplate_1300ul_F2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.43, + "y": 26.3, + "z": 2.5 + }, + "position3d": { + "x": 20.43, + "y": 26.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F2_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.43, + "y": 26.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_G2", + "uuid": "d031bffa-5be9-45c5-bf48-b1ddaa369dc7", + "name": "thermoscientificnunc_96_wellplate_1300ul_G2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.43, + "y": 17.3, + "z": 2.5 + }, + "position3d": { + "x": 20.43, + "y": 17.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G2_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.43, + "y": 17.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_H2", + "uuid": "43a502a4-4b8b-41a8-8b16-64a2522bdf27", + "name": "thermoscientificnunc_96_wellplate_1300ul_H2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.43, + "y": 8.3, + "z": 2.5 + }, + "position3d": { + "x": 20.43, + "y": 8.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H2_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.43, + "y": 8.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_A3", + "uuid": "f58e142a-49f2-44bf-a3de-9d6285ecf8b9", + "name": "thermoscientificnunc_96_wellplate_1300ul_A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.43, + "y": 71.3, + "z": 2.5 + }, + "position3d": { + "x": 29.43, + "y": 71.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A3_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.43, + "y": 71.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_B3", + "uuid": "5be20bc8-163b-44ee-b9da-c3f8f5ca83e4", + "name": "thermoscientificnunc_96_wellplate_1300ul_B3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.43, + "y": 62.3, + "z": 2.5 + }, + "position3d": { + "x": 29.43, + "y": 62.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B3_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.43, + "y": 62.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_C3", + "uuid": "b52c50d7-1b0d-4e2d-9743-ca3186ef6dc8", + "name": "thermoscientificnunc_96_wellplate_1300ul_C3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.43, + "y": 53.3, + "z": 2.5 + }, + "position3d": { + "x": 29.43, + "y": 53.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C3_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.43, + "y": 53.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_D3", + "uuid": "e925b177-f219-4ece-b555-eaa279a7895d", + "name": "thermoscientificnunc_96_wellplate_1300ul_D3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.43, + "y": 44.3, + "z": 2.5 + }, + "position3d": { + "x": 29.43, + "y": 44.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D3_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.43, + "y": 44.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_E3", + "uuid": "e6a05aaf-5015-4d3e-87e8-b65a1b5aeeae", + "name": "thermoscientificnunc_96_wellplate_1300ul_E3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.43, + "y": 35.3, + "z": 2.5 + }, + "position3d": { + "x": 29.43, + "y": 35.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E3_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.43, + "y": 35.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_F3", + "uuid": "56005516-976d-45d8-b045-f3a5e3ec0ec2", + "name": "thermoscientificnunc_96_wellplate_1300ul_F3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.43, + "y": 26.3, + "z": 2.5 + }, + "position3d": { + "x": 29.43, + "y": 26.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F3_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.43, + "y": 26.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_G3", + "uuid": "ee35b5e9-7c80-4aa1-bbd6-dfe5b11ed2d4", + "name": "thermoscientificnunc_96_wellplate_1300ul_G3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.43, + "y": 17.3, + "z": 2.5 + }, + "position3d": { + "x": 29.43, + "y": 17.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G3_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.43, + "y": 17.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_H3", + "uuid": "071b0483-0a9e-4826-b18c-ea0e5b0705a0", + "name": "thermoscientificnunc_96_wellplate_1300ul_H3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.43, + "y": 8.3, + "z": 2.5 + }, + "position3d": { + "x": 29.43, + "y": 8.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H3_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.43, + "y": 8.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_A4", + "uuid": "5c472c83-3948-48af-a723-7c743116c73c", + "name": "thermoscientificnunc_96_wellplate_1300ul_A4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.43, + "y": 71.3, + "z": 2.5 + }, + "position3d": { + "x": 38.43, + "y": 71.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A4_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.43, + "y": 71.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_B4", + "uuid": "d952331c-dadb-4397-9184-9e27eaf97c4d", + "name": "thermoscientificnunc_96_wellplate_1300ul_B4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.43, + "y": 62.3, + "z": 2.5 + }, + "position3d": { + "x": 38.43, + "y": 62.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B4_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.43, + "y": 62.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_C4", + "uuid": "1d78d4ea-9ef3-4539-ac39-e23871f6d8c9", + "name": "thermoscientificnunc_96_wellplate_1300ul_C4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.43, + "y": 53.3, + "z": 2.5 + }, + "position3d": { + "x": 38.43, + "y": 53.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C4_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.43, + "y": 53.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_D4", + "uuid": "d09f771f-ba8b-4fdb-85c7-c63e2f6cfbb8", + "name": "thermoscientificnunc_96_wellplate_1300ul_D4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.43, + "y": 44.3, + "z": 2.5 + }, + "position3d": { + "x": 38.43, + "y": 44.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D4_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.43, + "y": 44.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_E4", + "uuid": "ca095e8f-b760-4175-92fe-62cd8b571091", + "name": "thermoscientificnunc_96_wellplate_1300ul_E4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.43, + "y": 35.3, + "z": 2.5 + }, + "position3d": { + "x": 38.43, + "y": 35.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E4_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.43, + "y": 35.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_F4", + "uuid": "e20b5317-f096-4220-94c5-c5824f42cb11", + "name": "thermoscientificnunc_96_wellplate_1300ul_F4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.43, + "y": 26.3, + "z": 2.5 + }, + "position3d": { + "x": 38.43, + "y": 26.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F4_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.43, + "y": 26.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_G4", + "uuid": "824e123d-11ce-4974-a5bc-6c30bdab5fb0", + "name": "thermoscientificnunc_96_wellplate_1300ul_G4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.43, + "y": 17.3, + "z": 2.5 + }, + "position3d": { + "x": 38.43, + "y": 17.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G4_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.43, + "y": 17.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_H4", + "uuid": "98b71d96-bb61-43d0-91eb-3a804ac6828f", + "name": "thermoscientificnunc_96_wellplate_1300ul_H4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.43, + "y": 8.3, + "z": 2.5 + }, + "position3d": { + "x": 38.43, + "y": 8.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H4_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.43, + "y": 8.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_A5", + "uuid": "ca6f339d-1168-47fa-8ce2-a208281e8205", + "name": "thermoscientificnunc_96_wellplate_1300ul_A5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.43, + "y": 71.3, + "z": 2.5 + }, + "position3d": { + "x": 47.43, + "y": 71.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A5_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.43, + "y": 71.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_B5", + "uuid": "a932d330-e393-4e4f-89eb-bd3f13f6bbf7", + "name": "thermoscientificnunc_96_wellplate_1300ul_B5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.43, + "y": 62.3, + "z": 2.5 + }, + "position3d": { + "x": 47.43, + "y": 62.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B5_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.43, + "y": 62.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_C5", + "uuid": "2f6b1587-2abc-4b8b-9e59-d83e0e582981", + "name": "thermoscientificnunc_96_wellplate_1300ul_C5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.43, + "y": 53.3, + "z": 2.5 + }, + "position3d": { + "x": 47.43, + "y": 53.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C5_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.43, + "y": 53.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_D5", + "uuid": "7d8ccf8b-58fb-4c97-b750-815f1d46d0c1", + "name": "thermoscientificnunc_96_wellplate_1300ul_D5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.43, + "y": 44.3, + "z": 2.5 + }, + "position3d": { + "x": 47.43, + "y": 44.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D5_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.43, + "y": 44.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_E5", + "uuid": "d763ac3a-67b2-43a5-a12d-a8ab1df3b5ef", + "name": "thermoscientificnunc_96_wellplate_1300ul_E5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.43, + "y": 35.3, + "z": 2.5 + }, + "position3d": { + "x": 47.43, + "y": 35.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E5_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.43, + "y": 35.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_F5", + "uuid": "8720aa5d-9f37-4373-8b56-c70372060117", + "name": "thermoscientificnunc_96_wellplate_1300ul_F5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.43, + "y": 26.3, + "z": 2.5 + }, + "position3d": { + "x": 47.43, + "y": 26.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F5_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.43, + "y": 26.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_G5", + "uuid": "b1fec0fa-12a7-40bd-8b2c-57c0f6f27d18", + "name": "thermoscientificnunc_96_wellplate_1300ul_G5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.43, + "y": 17.3, + "z": 2.5 + }, + "position3d": { + "x": 47.43, + "y": 17.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G5_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.43, + "y": 17.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_H5", + "uuid": "701286b3-32fa-4d2e-9dfc-1a1cac25a9e6", + "name": "thermoscientificnunc_96_wellplate_1300ul_H5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.43, + "y": 8.3, + "z": 2.5 + }, + "position3d": { + "x": 47.43, + "y": 8.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H5_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.43, + "y": 8.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_A6", + "uuid": "61cf5ab7-c32b-49a7-8c8a-f94a02a8a729", + "name": "thermoscientificnunc_96_wellplate_1300ul_A6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.43, + "y": 71.3, + "z": 2.5 + }, + "position3d": { + "x": 56.43, + "y": 71.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A6_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.43, + "y": 71.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_B6", + "uuid": "bbf2133d-48e5-4761-a15a-d0c1c801bb64", + "name": "thermoscientificnunc_96_wellplate_1300ul_B6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.43, + "y": 62.3, + "z": 2.5 + }, + "position3d": { + "x": 56.43, + "y": 62.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B6_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.43, + "y": 62.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_C6", + "uuid": "2f3116c2-1bba-4e3d-b8de-7d1db20e1710", + "name": "thermoscientificnunc_96_wellplate_1300ul_C6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.43, + "y": 53.3, + "z": 2.5 + }, + "position3d": { + "x": 56.43, + "y": 53.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C6_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.43, + "y": 53.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_D6", + "uuid": "7867de69-ac79-4327-aab6-e500a32ef66e", + "name": "thermoscientificnunc_96_wellplate_1300ul_D6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.43, + "y": 44.3, + "z": 2.5 + }, + "position3d": { + "x": 56.43, + "y": 44.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D6_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.43, + "y": 44.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_E6", + "uuid": "79ec56a2-e764-4eac-ad85-94fe0ff9d7d5", + "name": "thermoscientificnunc_96_wellplate_1300ul_E6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.43, + "y": 35.3, + "z": 2.5 + }, + "position3d": { + "x": 56.43, + "y": 35.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E6_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.43, + "y": 35.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_F6", + "uuid": "56442b48-a974-43a1-9b07-a326ac4cb2c7", + "name": "thermoscientificnunc_96_wellplate_1300ul_F6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.43, + "y": 26.3, + "z": 2.5 + }, + "position3d": { + "x": 56.43, + "y": 26.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F6_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.43, + "y": 26.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_G6", + "uuid": "61ec5961-2e1d-4450-88fe-c45e60212554", + "name": "thermoscientificnunc_96_wellplate_1300ul_G6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.43, + "y": 17.3, + "z": 2.5 + }, + "position3d": { + "x": 56.43, + "y": 17.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G6_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.43, + "y": 17.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_H6", + "uuid": "0458582b-d944-4d12-af3d-baf2d87b0124", + "name": "thermoscientificnunc_96_wellplate_1300ul_H6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.43, + "y": 8.3, + "z": 2.5 + }, + "position3d": { + "x": 56.43, + "y": 8.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H6_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.43, + "y": 8.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_A7", + "uuid": "498229ee-772d-4ad7-891f-0439e4f3b0ee", + "name": "thermoscientificnunc_96_wellplate_1300ul_A7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.43, + "y": 71.3, + "z": 2.5 + }, + "position3d": { + "x": 65.43, + "y": 71.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A7_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.43, + "y": 71.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_B7", + "uuid": "6fd46b12-369c-4538-8d42-3adf43b09c78", + "name": "thermoscientificnunc_96_wellplate_1300ul_B7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.43, + "y": 62.3, + "z": 2.5 + }, + "position3d": { + "x": 65.43, + "y": 62.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B7_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.43, + "y": 62.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_C7", + "uuid": "9de3d3e0-45e6-4e93-8477-53bc5cc151a3", + "name": "thermoscientificnunc_96_wellplate_1300ul_C7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.43, + "y": 53.3, + "z": 2.5 + }, + "position3d": { + "x": 65.43, + "y": 53.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C7_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.43, + "y": 53.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_D7", + "uuid": "d263c09d-66f9-492a-9830-4bfb5fcc5434", + "name": "thermoscientificnunc_96_wellplate_1300ul_D7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.43, + "y": 44.3, + "z": 2.5 + }, + "position3d": { + "x": 65.43, + "y": 44.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D7_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.43, + "y": 44.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_E7", + "uuid": "f5261948-04c0-4466-b943-27454380bd06", + "name": "thermoscientificnunc_96_wellplate_1300ul_E7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.43, + "y": 35.3, + "z": 2.5 + }, + "position3d": { + "x": 65.43, + "y": 35.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E7_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.43, + "y": 35.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_F7", + "uuid": "a991714d-cacf-47f5-81e9-bded58ad2d9d", + "name": "thermoscientificnunc_96_wellplate_1300ul_F7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.43, + "y": 26.3, + "z": 2.5 + }, + "position3d": { + "x": 65.43, + "y": 26.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F7_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.43, + "y": 26.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_G7", + "uuid": "da0bc620-b1b2-478d-ae0f-b4c49aa4b2c0", + "name": "thermoscientificnunc_96_wellplate_1300ul_G7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.43, + "y": 17.3, + "z": 2.5 + }, + "position3d": { + "x": 65.43, + "y": 17.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G7_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.43, + "y": 17.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_H7", + "uuid": "65339b9a-1521-4130-9053-a66b43636b09", + "name": "thermoscientificnunc_96_wellplate_1300ul_H7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.43, + "y": 8.3, + "z": 2.5 + }, + "position3d": { + "x": 65.43, + "y": 8.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H7_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.43, + "y": 8.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_A8", + "uuid": "bcae74ff-f738-42bf-aba7-e1d590b9ce3e", + "name": "thermoscientificnunc_96_wellplate_1300ul_A8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.43, + "y": 71.3, + "z": 2.5 + }, + "position3d": { + "x": 74.43, + "y": 71.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A8_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.43, + "y": 71.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_B8", + "uuid": "25494293-be31-4be0-a656-2cf07ec1b994", + "name": "thermoscientificnunc_96_wellplate_1300ul_B8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.43, + "y": 62.3, + "z": 2.5 + }, + "position3d": { + "x": 74.43, + "y": 62.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B8_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.43, + "y": 62.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_C8", + "uuid": "8b82884e-c752-4aa0-b2d3-00ccc1d45090", + "name": "thermoscientificnunc_96_wellplate_1300ul_C8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.43, + "y": 53.3, + "z": 2.5 + }, + "position3d": { + "x": 74.43, + "y": 53.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C8_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.43, + "y": 53.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_D8", + "uuid": "f9c88178-e649-4bea-a278-748c4525f37d", + "name": "thermoscientificnunc_96_wellplate_1300ul_D8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.43, + "y": 44.3, + "z": 2.5 + }, + "position3d": { + "x": 74.43, + "y": 44.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D8_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.43, + "y": 44.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_E8", + "uuid": "6cf1e23c-6320-4e2c-95bc-ebd6dfbb47de", + "name": "thermoscientificnunc_96_wellplate_1300ul_E8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.43, + "y": 35.3, + "z": 2.5 + }, + "position3d": { + "x": 74.43, + "y": 35.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E8_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.43, + "y": 35.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_F8", + "uuid": "74c5234c-e45d-40eb-991a-817865903f6f", + "name": "thermoscientificnunc_96_wellplate_1300ul_F8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.43, + "y": 26.3, + "z": 2.5 + }, + "position3d": { + "x": 74.43, + "y": 26.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F8_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.43, + "y": 26.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_G8", + "uuid": "93f8d9db-9f0a-4e8a-8c98-05f074d2fd35", + "name": "thermoscientificnunc_96_wellplate_1300ul_G8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.43, + "y": 17.3, + "z": 2.5 + }, + "position3d": { + "x": 74.43, + "y": 17.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G8_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.43, + "y": 17.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_H8", + "uuid": "af0fafaf-ef47-43e2-a437-9bd8f9d3070b", + "name": "thermoscientificnunc_96_wellplate_1300ul_H8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.43, + "y": 8.3, + "z": 2.5 + }, + "position3d": { + "x": 74.43, + "y": 8.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H8_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.43, + "y": 8.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_A9", + "uuid": "6815d17d-57e7-4799-8cf7-007436efb528", + "name": "thermoscientificnunc_96_wellplate_1300ul_A9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.43, + "y": 71.3, + "z": 2.5 + }, + "position3d": { + "x": 83.43, + "y": 71.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A9_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.43, + "y": 71.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_B9", + "uuid": "dd029989-adc7-4339-8e34-50f488bed21b", + "name": "thermoscientificnunc_96_wellplate_1300ul_B9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.43, + "y": 62.3, + "z": 2.5 + }, + "position3d": { + "x": 83.43, + "y": 62.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B9_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.43, + "y": 62.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_C9", + "uuid": "5f1de151-f79e-4cd3-9e2b-cfdda777e5e8", + "name": "thermoscientificnunc_96_wellplate_1300ul_C9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.43, + "y": 53.3, + "z": 2.5 + }, + "position3d": { + "x": 83.43, + "y": 53.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C9_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.43, + "y": 53.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_D9", + "uuid": "f2662e2d-9acc-4652-8098-80cfbda7700d", + "name": "thermoscientificnunc_96_wellplate_1300ul_D9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.43, + "y": 44.3, + "z": 2.5 + }, + "position3d": { + "x": 83.43, + "y": 44.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D9_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.43, + "y": 44.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_E9", + "uuid": "7f575011-f49a-4672-aa84-beeb4b63acec", + "name": "thermoscientificnunc_96_wellplate_1300ul_E9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.43, + "y": 35.3, + "z": 2.5 + }, + "position3d": { + "x": 83.43, + "y": 35.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E9_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.43, + "y": 35.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_F9", + "uuid": "b4358dff-ca47-42bb-97af-44b86b6d6401", + "name": "thermoscientificnunc_96_wellplate_1300ul_F9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.43, + "y": 26.3, + "z": 2.5 + }, + "position3d": { + "x": 83.43, + "y": 26.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F9_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.43, + "y": 26.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_G9", + "uuid": "bdcbdcab-b962-49ef-954b-48c8e3d2b157", + "name": "thermoscientificnunc_96_wellplate_1300ul_G9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.43, + "y": 17.3, + "z": 2.5 + }, + "position3d": { + "x": 83.43, + "y": 17.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G9_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.43, + "y": 17.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_H9", + "uuid": "9407b155-8586-48cc-9c0a-7781cb963246", + "name": "thermoscientificnunc_96_wellplate_1300ul_H9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.43, + "y": 8.3, + "z": 2.5 + }, + "position3d": { + "x": 83.43, + "y": 8.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H9_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.43, + "y": 8.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_A10", + "uuid": "561170c9-95bd-43fc-b682-dd8ae7a7e886", + "name": "thermoscientificnunc_96_wellplate_1300ul_A10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.43, + "y": 71.3, + "z": 2.5 + }, + "position3d": { + "x": 92.43, + "y": 71.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A10_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.43, + "y": 71.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_B10", + "uuid": "04d5eddd-0c5a-413a-81e7-9a3c24267f15", + "name": "thermoscientificnunc_96_wellplate_1300ul_B10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.43, + "y": 62.3, + "z": 2.5 + }, + "position3d": { + "x": 92.43, + "y": 62.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B10_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.43, + "y": 62.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_C10", + "uuid": "dadd511e-e4d5-4a95-b702-cdad301240a3", + "name": "thermoscientificnunc_96_wellplate_1300ul_C10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.43, + "y": 53.3, + "z": 2.5 + }, + "position3d": { + "x": 92.43, + "y": 53.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C10_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.43, + "y": 53.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_D10", + "uuid": "cd6f5fa8-5178-4dae-8d8c-95a6c4dbf67c", + "name": "thermoscientificnunc_96_wellplate_1300ul_D10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.43, + "y": 44.3, + "z": 2.5 + }, + "position3d": { + "x": 92.43, + "y": 44.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D10_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.43, + "y": 44.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_E10", + "uuid": "603d94a8-47d5-4db6-8b14-0c20120e1a5b", + "name": "thermoscientificnunc_96_wellplate_1300ul_E10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.43, + "y": 35.3, + "z": 2.5 + }, + "position3d": { + "x": 92.43, + "y": 35.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E10_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.43, + "y": 35.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_F10", + "uuid": "8f3a84a3-696d-4b39-8a8b-5f2f8fef0bf5", + "name": "thermoscientificnunc_96_wellplate_1300ul_F10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.43, + "y": 26.3, + "z": 2.5 + }, + "position3d": { + "x": 92.43, + "y": 26.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F10_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.43, + "y": 26.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_G10", + "uuid": "143c8a00-5f9e-4603-9ebf-31a63a4e0239", + "name": "thermoscientificnunc_96_wellplate_1300ul_G10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.43, + "y": 17.3, + "z": 2.5 + }, + "position3d": { + "x": 92.43, + "y": 17.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G10_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.43, + "y": 17.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_H10", + "uuid": "e0e45a57-7b4d-4954-aff2-a52c91a43c46", + "name": "thermoscientificnunc_96_wellplate_1300ul_H10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.43, + "y": 8.3, + "z": 2.5 + }, + "position3d": { + "x": 92.43, + "y": 8.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H10_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.43, + "y": 8.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_A11", + "uuid": "6adc181e-43a9-4741-afa7-f4db0a3c27da", + "name": "thermoscientificnunc_96_wellplate_1300ul_A11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.43, + "y": 71.3, + "z": 2.5 + }, + "position3d": { + "x": 101.43, + "y": 71.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A11_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.43, + "y": 71.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_B11", + "uuid": "028d3f1b-d7d2-4144-b5fd-7dc21efa073b", + "name": "thermoscientificnunc_96_wellplate_1300ul_B11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.43, + "y": 62.3, + "z": 2.5 + }, + "position3d": { + "x": 101.43, + "y": 62.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B11_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.43, + "y": 62.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_C11", + "uuid": "cc27b0f6-ba38-4873-bd08-871f27987b3f", + "name": "thermoscientificnunc_96_wellplate_1300ul_C11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.43, + "y": 53.3, + "z": 2.5 + }, + "position3d": { + "x": 101.43, + "y": 53.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C11_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.43, + "y": 53.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_D11", + "uuid": "8b4fd769-9e57-47f0-bcb9-56e52477b151", + "name": "thermoscientificnunc_96_wellplate_1300ul_D11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.43, + "y": 44.3, + "z": 2.5 + }, + "position3d": { + "x": 101.43, + "y": 44.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D11_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.43, + "y": 44.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_E11", + "uuid": "d14d1e1f-d97a-4692-aa77-f2676f302c68", + "name": "thermoscientificnunc_96_wellplate_1300ul_E11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.43, + "y": 35.3, + "z": 2.5 + }, + "position3d": { + "x": 101.43, + "y": 35.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E11_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.43, + "y": 35.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_F11", + "uuid": "1d54dede-020d-448f-a9e6-9c4e6d8fe301", + "name": "thermoscientificnunc_96_wellplate_1300ul_F11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.43, + "y": 26.3, + "z": 2.5 + }, + "position3d": { + "x": 101.43, + "y": 26.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F11_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.43, + "y": 26.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_G11", + "uuid": "95520aa7-7c8d-40b7-b8ea-2edb545fd074", + "name": "thermoscientificnunc_96_wellplate_1300ul_G11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.43, + "y": 17.3, + "z": 2.5 + }, + "position3d": { + "x": 101.43, + "y": 17.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G11_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.43, + "y": 17.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_H11", + "uuid": "9956cf66-c4a6-4e88-be6e-466021fad549", + "name": "thermoscientificnunc_96_wellplate_1300ul_H11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.43, + "y": 8.3, + "z": 2.5 + }, + "position3d": { + "x": 101.43, + "y": 8.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H11_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.43, + "y": 8.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_A12", + "uuid": "716f4d06-cb75-4d64-92fd-bab0df083177", + "name": "thermoscientificnunc_96_wellplate_1300ul_A12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.43, + "y": 71.3, + "z": 2.5 + }, + "position3d": { + "x": 110.43, + "y": 71.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A12_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.43, + "y": 71.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_B12", + "uuid": "1a71d4cf-2dad-4ed6-8c01-5c0d03ab7236", + "name": "thermoscientificnunc_96_wellplate_1300ul_B12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.43, + "y": 62.3, + "z": 2.5 + }, + "position3d": { + "x": 110.43, + "y": 62.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B12_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.43, + "y": 62.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_C12", + "uuid": "5636500c-be96-4e6c-9b3d-0818b29d1e9a", + "name": "thermoscientificnunc_96_wellplate_1300ul_C12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.43, + "y": 53.3, + "z": 2.5 + }, + "position3d": { + "x": 110.43, + "y": 53.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C12_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.43, + "y": 53.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_D12", + "uuid": "be037392-b700-4490-8b5f-abac5978118d", + "name": "thermoscientificnunc_96_wellplate_1300ul_D12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.43, + "y": 44.3, + "z": 2.5 + }, + "position3d": { + "x": 110.43, + "y": 44.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D12_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.43, + "y": 44.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_E12", + "uuid": "61e630a8-f4c4-4b96-bd5e-9938de737975", + "name": "thermoscientificnunc_96_wellplate_1300ul_E12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.43, + "y": 35.3, + "z": 2.5 + }, + "position3d": { + "x": 110.43, + "y": 35.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E12_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.43, + "y": 35.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_F12", + "uuid": "dadfefcd-feb3-4bc5-8d2f-ab975aadcf37", + "name": "thermoscientificnunc_96_wellplate_1300ul_F12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.43, + "y": 26.3, + "z": 2.5 + }, + "position3d": { + "x": 110.43, + "y": 26.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F12_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.43, + "y": 26.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_G12", + "uuid": "ef5490dc-8d66-451b-875f-3f5a020c125d", + "name": "thermoscientificnunc_96_wellplate_1300ul_G12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.43, + "y": 17.3, + "z": 2.5 + }, + "position3d": { + "x": 110.43, + "y": 17.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G12_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.43, + "y": 17.3, + "z": 2.5 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_1300ul_H12", + "uuid": "48eac1f7-fd8a-4678-886b-cc48aa496ffe", + "name": "thermoscientificnunc_96_wellplate_1300ul_H12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b090156b-32eb-43df-84df-c23cf143755c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 29.1, + "width": 5.94, + "height": 5.94 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.43, + "y": 8.3, + "z": 2.5 + }, + "position3d": { + "x": 110.43, + "y": 8.3, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 5.94, + "size_y": 5.94, + "size_z": 29.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1300, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H12_volume_tracker", + "max_volume": 1300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.43, + "y": 8.3, + "z": 2.5 + } + } + ] + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul", + "category": [ + "plates" + ], + "class": { + "module": "pylabrobot.resources.opentrons.plates:thermoscientificnunc_96_wellplate_2000ul", + "type": "pylabrobot" + }, + "description": "Thermoscientific Nunc 96 wellplate 2000ul", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/opentrons/plates.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "thermoscientificnunc_96_wellplate_2000ul", + "uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "name": "thermoscientificnunc_96_wellplate_2000ul", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "plate", + "class": "", + "pose": { + "size": { + "depth": 43.6, + "width": 127.8, + "height": 85.5 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Plate", + "size_x": 127.8, + "size_y": 85.5, + "size_z": 43.6, + "category": "plate", + "model": "Thermo Scientific Nunc 96 Well Plate 2000 µL", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "thermoscientificnunc_96_wellplate_2000ul_A1", + "B1": "thermoscientificnunc_96_wellplate_2000ul_B1", + "C1": "thermoscientificnunc_96_wellplate_2000ul_C1", + "D1": "thermoscientificnunc_96_wellplate_2000ul_D1", + "E1": "thermoscientificnunc_96_wellplate_2000ul_E1", + "F1": "thermoscientificnunc_96_wellplate_2000ul_F1", + "G1": "thermoscientificnunc_96_wellplate_2000ul_G1", + "H1": "thermoscientificnunc_96_wellplate_2000ul_H1", + "A2": "thermoscientificnunc_96_wellplate_2000ul_A2", + "B2": "thermoscientificnunc_96_wellplate_2000ul_B2", + "C2": "thermoscientificnunc_96_wellplate_2000ul_C2", + "D2": "thermoscientificnunc_96_wellplate_2000ul_D2", + "E2": "thermoscientificnunc_96_wellplate_2000ul_E2", + "F2": "thermoscientificnunc_96_wellplate_2000ul_F2", + "G2": "thermoscientificnunc_96_wellplate_2000ul_G2", + "H2": "thermoscientificnunc_96_wellplate_2000ul_H2", + "A3": "thermoscientificnunc_96_wellplate_2000ul_A3", + "B3": "thermoscientificnunc_96_wellplate_2000ul_B3", + "C3": "thermoscientificnunc_96_wellplate_2000ul_C3", + "D3": "thermoscientificnunc_96_wellplate_2000ul_D3", + "E3": "thermoscientificnunc_96_wellplate_2000ul_E3", + "F3": "thermoscientificnunc_96_wellplate_2000ul_F3", + "G3": "thermoscientificnunc_96_wellplate_2000ul_G3", + "H3": "thermoscientificnunc_96_wellplate_2000ul_H3", + "A4": "thermoscientificnunc_96_wellplate_2000ul_A4", + "B4": "thermoscientificnunc_96_wellplate_2000ul_B4", + "C4": "thermoscientificnunc_96_wellplate_2000ul_C4", + "D4": "thermoscientificnunc_96_wellplate_2000ul_D4", + "E4": "thermoscientificnunc_96_wellplate_2000ul_E4", + "F4": "thermoscientificnunc_96_wellplate_2000ul_F4", + "G4": "thermoscientificnunc_96_wellplate_2000ul_G4", + "H4": "thermoscientificnunc_96_wellplate_2000ul_H4", + "A5": "thermoscientificnunc_96_wellplate_2000ul_A5", + "B5": "thermoscientificnunc_96_wellplate_2000ul_B5", + "C5": "thermoscientificnunc_96_wellplate_2000ul_C5", + "D5": "thermoscientificnunc_96_wellplate_2000ul_D5", + "E5": "thermoscientificnunc_96_wellplate_2000ul_E5", + "F5": "thermoscientificnunc_96_wellplate_2000ul_F5", + "G5": "thermoscientificnunc_96_wellplate_2000ul_G5", + "H5": "thermoscientificnunc_96_wellplate_2000ul_H5", + "A6": "thermoscientificnunc_96_wellplate_2000ul_A6", + "B6": "thermoscientificnunc_96_wellplate_2000ul_B6", + "C6": "thermoscientificnunc_96_wellplate_2000ul_C6", + "D6": "thermoscientificnunc_96_wellplate_2000ul_D6", + "E6": "thermoscientificnunc_96_wellplate_2000ul_E6", + "F6": "thermoscientificnunc_96_wellplate_2000ul_F6", + "G6": "thermoscientificnunc_96_wellplate_2000ul_G6", + "H6": "thermoscientificnunc_96_wellplate_2000ul_H6", + "A7": "thermoscientificnunc_96_wellplate_2000ul_A7", + "B7": "thermoscientificnunc_96_wellplate_2000ul_B7", + "C7": "thermoscientificnunc_96_wellplate_2000ul_C7", + "D7": "thermoscientificnunc_96_wellplate_2000ul_D7", + "E7": "thermoscientificnunc_96_wellplate_2000ul_E7", + "F7": "thermoscientificnunc_96_wellplate_2000ul_F7", + "G7": "thermoscientificnunc_96_wellplate_2000ul_G7", + "H7": "thermoscientificnunc_96_wellplate_2000ul_H7", + "A8": "thermoscientificnunc_96_wellplate_2000ul_A8", + "B8": "thermoscientificnunc_96_wellplate_2000ul_B8", + "C8": "thermoscientificnunc_96_wellplate_2000ul_C8", + "D8": "thermoscientificnunc_96_wellplate_2000ul_D8", + "E8": "thermoscientificnunc_96_wellplate_2000ul_E8", + "F8": "thermoscientificnunc_96_wellplate_2000ul_F8", + "G8": "thermoscientificnunc_96_wellplate_2000ul_G8", + "H8": "thermoscientificnunc_96_wellplate_2000ul_H8", + "A9": "thermoscientificnunc_96_wellplate_2000ul_A9", + "B9": "thermoscientificnunc_96_wellplate_2000ul_B9", + "C9": "thermoscientificnunc_96_wellplate_2000ul_C9", + "D9": "thermoscientificnunc_96_wellplate_2000ul_D9", + "E9": "thermoscientificnunc_96_wellplate_2000ul_E9", + "F9": "thermoscientificnunc_96_wellplate_2000ul_F9", + "G9": "thermoscientificnunc_96_wellplate_2000ul_G9", + "H9": "thermoscientificnunc_96_wellplate_2000ul_H9", + "A10": "thermoscientificnunc_96_wellplate_2000ul_A10", + "B10": "thermoscientificnunc_96_wellplate_2000ul_B10", + "C10": "thermoscientificnunc_96_wellplate_2000ul_C10", + "D10": "thermoscientificnunc_96_wellplate_2000ul_D10", + "E10": "thermoscientificnunc_96_wellplate_2000ul_E10", + "F10": "thermoscientificnunc_96_wellplate_2000ul_F10", + "G10": "thermoscientificnunc_96_wellplate_2000ul_G10", + "H10": "thermoscientificnunc_96_wellplate_2000ul_H10", + "A11": "thermoscientificnunc_96_wellplate_2000ul_A11", + "B11": "thermoscientificnunc_96_wellplate_2000ul_B11", + "C11": "thermoscientificnunc_96_wellplate_2000ul_C11", + "D11": "thermoscientificnunc_96_wellplate_2000ul_D11", + "E11": "thermoscientificnunc_96_wellplate_2000ul_E11", + "F11": "thermoscientificnunc_96_wellplate_2000ul_F11", + "G11": "thermoscientificnunc_96_wellplate_2000ul_G11", + "H11": "thermoscientificnunc_96_wellplate_2000ul_H11", + "A12": "thermoscientificnunc_96_wellplate_2000ul_A12", + "B12": "thermoscientificnunc_96_wellplate_2000ul_B12", + "C12": "thermoscientificnunc_96_wellplate_2000ul_C12", + "D12": "thermoscientificnunc_96_wellplate_2000ul_D12", + "E12": "thermoscientificnunc_96_wellplate_2000ul_E12", + "F12": "thermoscientificnunc_96_wellplate_2000ul_F12", + "G12": "thermoscientificnunc_96_wellplate_2000ul_G12", + "H12": "thermoscientificnunc_96_wellplate_2000ul_H12" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_A1", + "uuid": "0367a2e8-1a1c-44e3-9dd2-13f5e3eab585", + "name": "thermoscientificnunc_96_wellplate_2000ul_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.295, + "y": 71.195, + "z": 2.1 + }, + "position3d": { + "x": 11.295, + "y": 71.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A1_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.295, + "y": 71.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_B1", + "uuid": "4613cf18-0c19-498d-bf14-c30c32eacce7", + "name": "thermoscientificnunc_96_wellplate_2000ul_B1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.295, + "y": 62.195, + "z": 2.1 + }, + "position3d": { + "x": 11.295, + "y": 62.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B1_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.295, + "y": 62.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_C1", + "uuid": "f7f7f239-22d5-40fa-b2af-cbfad275ffd8", + "name": "thermoscientificnunc_96_wellplate_2000ul_C1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.295, + "y": 53.195, + "z": 2.1 + }, + "position3d": { + "x": 11.295, + "y": 53.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C1_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.295, + "y": 53.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_D1", + "uuid": "07751763-0716-4227-87b8-2892b32d2e15", + "name": "thermoscientificnunc_96_wellplate_2000ul_D1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.295, + "y": 44.195, + "z": 2.1 + }, + "position3d": { + "x": 11.295, + "y": 44.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D1_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.295, + "y": 44.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_E1", + "uuid": "46a55c6b-d4e5-4760-8f8e-bcbada99b235", + "name": "thermoscientificnunc_96_wellplate_2000ul_E1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.295, + "y": 35.195, + "z": 2.1 + }, + "position3d": { + "x": 11.295, + "y": 35.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E1_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.295, + "y": 35.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_F1", + "uuid": "22f33bb0-e563-4d42-9305-983fad32d702", + "name": "thermoscientificnunc_96_wellplate_2000ul_F1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.295, + "y": 26.195, + "z": 2.1 + }, + "position3d": { + "x": 11.295, + "y": 26.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F1_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.295, + "y": 26.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_G1", + "uuid": "16b8c5ec-cbf4-4e03-ab97-12c72c10376f", + "name": "thermoscientificnunc_96_wellplate_2000ul_G1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.295, + "y": 17.195, + "z": 2.1 + }, + "position3d": { + "x": 11.295, + "y": 17.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G1_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.295, + "y": 17.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_H1", + "uuid": "a15b23ff-ca6c-4af7-ba53-0b1abcbce3bf", + "name": "thermoscientificnunc_96_wellplate_2000ul_H1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.295, + "y": 8.195, + "z": 2.1 + }, + "position3d": { + "x": 11.295, + "y": 8.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H1_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.295, + "y": 8.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_A2", + "uuid": "8ebd4fae-d1ea-4e40-81a9-1c37e6e5f7d5", + "name": "thermoscientificnunc_96_wellplate_2000ul_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.295, + "y": 71.195, + "z": 2.1 + }, + "position3d": { + "x": 20.295, + "y": 71.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A2_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.295, + "y": 71.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_B2", + "uuid": "be27d6ab-73b5-4a67-b0df-dd07a67d03ee", + "name": "thermoscientificnunc_96_wellplate_2000ul_B2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.295, + "y": 62.195, + "z": 2.1 + }, + "position3d": { + "x": 20.295, + "y": 62.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B2_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.295, + "y": 62.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_C2", + "uuid": "5132e68f-7cfa-4114-8c8c-fe8c893c59f0", + "name": "thermoscientificnunc_96_wellplate_2000ul_C2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.295, + "y": 53.195, + "z": 2.1 + }, + "position3d": { + "x": 20.295, + "y": 53.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C2_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.295, + "y": 53.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_D2", + "uuid": "e910f3c0-c41f-4b56-bd3d-934afa070f70", + "name": "thermoscientificnunc_96_wellplate_2000ul_D2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.295, + "y": 44.195, + "z": 2.1 + }, + "position3d": { + "x": 20.295, + "y": 44.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D2_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.295, + "y": 44.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_E2", + "uuid": "9da616ce-2013-412f-b27d-987ec35c060d", + "name": "thermoscientificnunc_96_wellplate_2000ul_E2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.295, + "y": 35.195, + "z": 2.1 + }, + "position3d": { + "x": 20.295, + "y": 35.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E2_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.295, + "y": 35.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_F2", + "uuid": "9f9acc36-f2bc-4fce-b5b1-7afc33a3d391", + "name": "thermoscientificnunc_96_wellplate_2000ul_F2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.295, + "y": 26.195, + "z": 2.1 + }, + "position3d": { + "x": 20.295, + "y": 26.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F2_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.295, + "y": 26.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_G2", + "uuid": "30afeb43-9e54-4563-8e9c-aa4f82f26261", + "name": "thermoscientificnunc_96_wellplate_2000ul_G2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.295, + "y": 17.195, + "z": 2.1 + }, + "position3d": { + "x": 20.295, + "y": 17.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G2_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.295, + "y": 17.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_H2", + "uuid": "03903ad6-e0d7-439c-8f53-e0fdc2cbd6ae", + "name": "thermoscientificnunc_96_wellplate_2000ul_H2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.295, + "y": 8.195, + "z": 2.1 + }, + "position3d": { + "x": 20.295, + "y": 8.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H2_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.295, + "y": 8.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_A3", + "uuid": "f435c1f6-c5dc-446a-8aee-d626edc05741", + "name": "thermoscientificnunc_96_wellplate_2000ul_A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.295, + "y": 71.195, + "z": 2.1 + }, + "position3d": { + "x": 29.295, + "y": 71.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A3_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.295, + "y": 71.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_B3", + "uuid": "ee3fd513-16c1-4578-a750-d61f82e01ecd", + "name": "thermoscientificnunc_96_wellplate_2000ul_B3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.295, + "y": 62.195, + "z": 2.1 + }, + "position3d": { + "x": 29.295, + "y": 62.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B3_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.295, + "y": 62.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_C3", + "uuid": "e2cb8d40-f258-4731-a89c-e94d46c5ca67", + "name": "thermoscientificnunc_96_wellplate_2000ul_C3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.295, + "y": 53.195, + "z": 2.1 + }, + "position3d": { + "x": 29.295, + "y": 53.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C3_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.295, + "y": 53.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_D3", + "uuid": "db436904-846f-4ac2-ad83-6c6ec832742d", + "name": "thermoscientificnunc_96_wellplate_2000ul_D3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.295, + "y": 44.195, + "z": 2.1 + }, + "position3d": { + "x": 29.295, + "y": 44.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D3_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.295, + "y": 44.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_E3", + "uuid": "57a815cc-df7c-4ff0-b231-b30f6ad54e7b", + "name": "thermoscientificnunc_96_wellplate_2000ul_E3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.295, + "y": 35.195, + "z": 2.1 + }, + "position3d": { + "x": 29.295, + "y": 35.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E3_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.295, + "y": 35.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_F3", + "uuid": "b26aa6dd-dee8-436b-8100-ece5e63629a5", + "name": "thermoscientificnunc_96_wellplate_2000ul_F3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.295, + "y": 26.195, + "z": 2.1 + }, + "position3d": { + "x": 29.295, + "y": 26.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F3_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.295, + "y": 26.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_G3", + "uuid": "7316836d-873a-466d-8b01-68fc7cc925be", + "name": "thermoscientificnunc_96_wellplate_2000ul_G3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.295, + "y": 17.195, + "z": 2.1 + }, + "position3d": { + "x": 29.295, + "y": 17.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G3_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.295, + "y": 17.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_H3", + "uuid": "2760c9a4-08bd-46e8-8c37-acf17f3cbce7", + "name": "thermoscientificnunc_96_wellplate_2000ul_H3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.295, + "y": 8.195, + "z": 2.1 + }, + "position3d": { + "x": 29.295, + "y": 8.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H3_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.295, + "y": 8.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_A4", + "uuid": "2dbd4a66-a509-4ed7-a7dd-caa592f23bbd", + "name": "thermoscientificnunc_96_wellplate_2000ul_A4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.295, + "y": 71.195, + "z": 2.1 + }, + "position3d": { + "x": 38.295, + "y": 71.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A4_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.295, + "y": 71.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_B4", + "uuid": "547430c1-fc22-409a-bc08-9ef222117b8e", + "name": "thermoscientificnunc_96_wellplate_2000ul_B4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.295, + "y": 62.195, + "z": 2.1 + }, + "position3d": { + "x": 38.295, + "y": 62.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B4_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.295, + "y": 62.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_C4", + "uuid": "9d95e834-138b-41d0-ae9d-26fa000fa43f", + "name": "thermoscientificnunc_96_wellplate_2000ul_C4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.295, + "y": 53.195, + "z": 2.1 + }, + "position3d": { + "x": 38.295, + "y": 53.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C4_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.295, + "y": 53.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_D4", + "uuid": "1d43f71e-eb93-48b8-b9d3-268ea8e566ee", + "name": "thermoscientificnunc_96_wellplate_2000ul_D4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.295, + "y": 44.195, + "z": 2.1 + }, + "position3d": { + "x": 38.295, + "y": 44.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D4_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.295, + "y": 44.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_E4", + "uuid": "463d31cc-4927-499a-b470-0275295e314e", + "name": "thermoscientificnunc_96_wellplate_2000ul_E4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.295, + "y": 35.195, + "z": 2.1 + }, + "position3d": { + "x": 38.295, + "y": 35.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E4_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.295, + "y": 35.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_F4", + "uuid": "e03a808c-72e1-4319-bc79-d7258009eabf", + "name": "thermoscientificnunc_96_wellplate_2000ul_F4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.295, + "y": 26.195, + "z": 2.1 + }, + "position3d": { + "x": 38.295, + "y": 26.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F4_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.295, + "y": 26.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_G4", + "uuid": "2319a451-0772-41c0-9d81-1f3bc0b6083a", + "name": "thermoscientificnunc_96_wellplate_2000ul_G4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.295, + "y": 17.195, + "z": 2.1 + }, + "position3d": { + "x": 38.295, + "y": 17.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G4_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.295, + "y": 17.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_H4", + "uuid": "87f59178-56f3-4cb9-bb49-b2a3ceefc8f1", + "name": "thermoscientificnunc_96_wellplate_2000ul_H4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.295, + "y": 8.195, + "z": 2.1 + }, + "position3d": { + "x": 38.295, + "y": 8.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H4_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.295, + "y": 8.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_A5", + "uuid": "16d893c3-b536-45f3-94d2-f92868c9f16a", + "name": "thermoscientificnunc_96_wellplate_2000ul_A5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.295, + "y": 71.195, + "z": 2.1 + }, + "position3d": { + "x": 47.295, + "y": 71.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A5_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.295, + "y": 71.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_B5", + "uuid": "60c19543-f491-41ff-a6fa-2c757310e825", + "name": "thermoscientificnunc_96_wellplate_2000ul_B5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.295, + "y": 62.195, + "z": 2.1 + }, + "position3d": { + "x": 47.295, + "y": 62.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B5_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.295, + "y": 62.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_C5", + "uuid": "6d46128b-7fe9-44ab-82de-221846efb439", + "name": "thermoscientificnunc_96_wellplate_2000ul_C5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.295, + "y": 53.195, + "z": 2.1 + }, + "position3d": { + "x": 47.295, + "y": 53.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C5_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.295, + "y": 53.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_D5", + "uuid": "472f3e25-5439-47c6-a5f9-16caad90783b", + "name": "thermoscientificnunc_96_wellplate_2000ul_D5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.295, + "y": 44.195, + "z": 2.1 + }, + "position3d": { + "x": 47.295, + "y": 44.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D5_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.295, + "y": 44.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_E5", + "uuid": "baf84e12-8608-4df7-bfe1-69d7872d790b", + "name": "thermoscientificnunc_96_wellplate_2000ul_E5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.295, + "y": 35.195, + "z": 2.1 + }, + "position3d": { + "x": 47.295, + "y": 35.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E5_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.295, + "y": 35.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_F5", + "uuid": "54f96b00-5395-4251-9893-f73b8ea84ef5", + "name": "thermoscientificnunc_96_wellplate_2000ul_F5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.295, + "y": 26.195, + "z": 2.1 + }, + "position3d": { + "x": 47.295, + "y": 26.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F5_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.295, + "y": 26.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_G5", + "uuid": "7273b34e-3661-4b35-b212-f9e0ffdcda66", + "name": "thermoscientificnunc_96_wellplate_2000ul_G5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.295, + "y": 17.195, + "z": 2.1 + }, + "position3d": { + "x": 47.295, + "y": 17.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G5_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.295, + "y": 17.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_H5", + "uuid": "0966940d-24d4-42b3-ba94-4fb9229bd958", + "name": "thermoscientificnunc_96_wellplate_2000ul_H5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.295, + "y": 8.195, + "z": 2.1 + }, + "position3d": { + "x": 47.295, + "y": 8.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H5_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.295, + "y": 8.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_A6", + "uuid": "d4b090e8-bc5f-488e-968a-d14ef238c883", + "name": "thermoscientificnunc_96_wellplate_2000ul_A6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.295, + "y": 71.195, + "z": 2.1 + }, + "position3d": { + "x": 56.295, + "y": 71.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A6_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.295, + "y": 71.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_B6", + "uuid": "1ef6dafb-4a76-4f2d-a64a-6132362f97b3", + "name": "thermoscientificnunc_96_wellplate_2000ul_B6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.295, + "y": 62.195, + "z": 2.1 + }, + "position3d": { + "x": 56.295, + "y": 62.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B6_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.295, + "y": 62.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_C6", + "uuid": "40275766-68c4-4ca0-9866-13ab439c9ce3", + "name": "thermoscientificnunc_96_wellplate_2000ul_C6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.295, + "y": 53.195, + "z": 2.1 + }, + "position3d": { + "x": 56.295, + "y": 53.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C6_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.295, + "y": 53.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_D6", + "uuid": "e390ec86-c60f-4fcf-b21d-995138a14f5b", + "name": "thermoscientificnunc_96_wellplate_2000ul_D6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.295, + "y": 44.195, + "z": 2.1 + }, + "position3d": { + "x": 56.295, + "y": 44.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D6_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.295, + "y": 44.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_E6", + "uuid": "978475a0-e12f-48d5-8a97-2a3be3464971", + "name": "thermoscientificnunc_96_wellplate_2000ul_E6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.295, + "y": 35.195, + "z": 2.1 + }, + "position3d": { + "x": 56.295, + "y": 35.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E6_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.295, + "y": 35.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_F6", + "uuid": "c3fa3ffc-8a88-420c-9d59-96d9e367eb1f", + "name": "thermoscientificnunc_96_wellplate_2000ul_F6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.295, + "y": 26.195, + "z": 2.1 + }, + "position3d": { + "x": 56.295, + "y": 26.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F6_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.295, + "y": 26.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_G6", + "uuid": "5bfc2f58-eaaa-42e3-a214-5e03dd555c19", + "name": "thermoscientificnunc_96_wellplate_2000ul_G6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.295, + "y": 17.195, + "z": 2.1 + }, + "position3d": { + "x": 56.295, + "y": 17.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G6_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.295, + "y": 17.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_H6", + "uuid": "a3d6ddba-cf3e-4cad-ae04-cb15eb75e143", + "name": "thermoscientificnunc_96_wellplate_2000ul_H6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.295, + "y": 8.195, + "z": 2.1 + }, + "position3d": { + "x": 56.295, + "y": 8.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H6_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.295, + "y": 8.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_A7", + "uuid": "e7da5957-b620-4a02-b1af-73fe19cf6703", + "name": "thermoscientificnunc_96_wellplate_2000ul_A7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.295, + "y": 71.195, + "z": 2.1 + }, + "position3d": { + "x": 65.295, + "y": 71.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A7_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.295, + "y": 71.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_B7", + "uuid": "889177ae-2055-4253-9b06-d0a537739f61", + "name": "thermoscientificnunc_96_wellplate_2000ul_B7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.295, + "y": 62.195, + "z": 2.1 + }, + "position3d": { + "x": 65.295, + "y": 62.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B7_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.295, + "y": 62.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_C7", + "uuid": "87babe2f-3e47-4c55-a0a8-f7ab65105e12", + "name": "thermoscientificnunc_96_wellplate_2000ul_C7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.295, + "y": 53.195, + "z": 2.1 + }, + "position3d": { + "x": 65.295, + "y": 53.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C7_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.295, + "y": 53.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_D7", + "uuid": "806ab475-1800-41ce-8053-ba583a7baf4c", + "name": "thermoscientificnunc_96_wellplate_2000ul_D7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.295, + "y": 44.195, + "z": 2.1 + }, + "position3d": { + "x": 65.295, + "y": 44.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D7_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.295, + "y": 44.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_E7", + "uuid": "74437396-7475-4ceb-8060-2d8294dbe8e4", + "name": "thermoscientificnunc_96_wellplate_2000ul_E7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.295, + "y": 35.195, + "z": 2.1 + }, + "position3d": { + "x": 65.295, + "y": 35.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E7_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.295, + "y": 35.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_F7", + "uuid": "c0b04496-b634-48db-abc2-a58b1ffcb994", + "name": "thermoscientificnunc_96_wellplate_2000ul_F7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.295, + "y": 26.195, + "z": 2.1 + }, + "position3d": { + "x": 65.295, + "y": 26.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F7_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.295, + "y": 26.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_G7", + "uuid": "6f94d5e8-d6a3-40d6-ba3a-d325151276cd", + "name": "thermoscientificnunc_96_wellplate_2000ul_G7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.295, + "y": 17.195, + "z": 2.1 + }, + "position3d": { + "x": 65.295, + "y": 17.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G7_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.295, + "y": 17.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_H7", + "uuid": "b2bd6210-d3bd-4ea4-b3c2-7731783ea727", + "name": "thermoscientificnunc_96_wellplate_2000ul_H7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.295, + "y": 8.195, + "z": 2.1 + }, + "position3d": { + "x": 65.295, + "y": 8.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H7_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.295, + "y": 8.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_A8", + "uuid": "23d175ae-7ed1-450c-9128-f7e745ee098f", + "name": "thermoscientificnunc_96_wellplate_2000ul_A8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.295, + "y": 71.195, + "z": 2.1 + }, + "position3d": { + "x": 74.295, + "y": 71.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A8_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.295, + "y": 71.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_B8", + "uuid": "0227edd1-0db2-443c-8d08-399d0a1af34c", + "name": "thermoscientificnunc_96_wellplate_2000ul_B8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.295, + "y": 62.195, + "z": 2.1 + }, + "position3d": { + "x": 74.295, + "y": 62.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B8_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.295, + "y": 62.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_C8", + "uuid": "09c7ac75-d986-4218-a872-600f8e422438", + "name": "thermoscientificnunc_96_wellplate_2000ul_C8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.295, + "y": 53.195, + "z": 2.1 + }, + "position3d": { + "x": 74.295, + "y": 53.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C8_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.295, + "y": 53.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_D8", + "uuid": "f58d9654-2f4a-4b32-9c42-946bdec285ee", + "name": "thermoscientificnunc_96_wellplate_2000ul_D8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.295, + "y": 44.195, + "z": 2.1 + }, + "position3d": { + "x": 74.295, + "y": 44.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D8_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.295, + "y": 44.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_E8", + "uuid": "91d30182-64f9-477a-b4b2-95277093c27f", + "name": "thermoscientificnunc_96_wellplate_2000ul_E8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.295, + "y": 35.195, + "z": 2.1 + }, + "position3d": { + "x": 74.295, + "y": 35.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E8_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.295, + "y": 35.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_F8", + "uuid": "3521bfd3-8629-4c37-b11c-1ba99d2ea74b", + "name": "thermoscientificnunc_96_wellplate_2000ul_F8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.295, + "y": 26.195, + "z": 2.1 + }, + "position3d": { + "x": 74.295, + "y": 26.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F8_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.295, + "y": 26.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_G8", + "uuid": "f8effd3c-7982-4376-a100-97c3c404b0b4", + "name": "thermoscientificnunc_96_wellplate_2000ul_G8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.295, + "y": 17.195, + "z": 2.1 + }, + "position3d": { + "x": 74.295, + "y": 17.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G8_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.295, + "y": 17.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_H8", + "uuid": "7351cbda-5f67-4636-9050-7c6c068521a7", + "name": "thermoscientificnunc_96_wellplate_2000ul_H8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.295, + "y": 8.195, + "z": 2.1 + }, + "position3d": { + "x": 74.295, + "y": 8.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H8_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.295, + "y": 8.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_A9", + "uuid": "ea8a800c-a88a-4af2-a43d-bce5ac39f5a4", + "name": "thermoscientificnunc_96_wellplate_2000ul_A9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.295, + "y": 71.195, + "z": 2.1 + }, + "position3d": { + "x": 83.295, + "y": 71.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A9_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.295, + "y": 71.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_B9", + "uuid": "9b19b40a-a1ae-404b-9764-6f3bc1b7204b", + "name": "thermoscientificnunc_96_wellplate_2000ul_B9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.295, + "y": 62.195, + "z": 2.1 + }, + "position3d": { + "x": 83.295, + "y": 62.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B9_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.295, + "y": 62.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_C9", + "uuid": "839ac5ce-4425-41b5-bb5c-5753147cabef", + "name": "thermoscientificnunc_96_wellplate_2000ul_C9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.295, + "y": 53.195, + "z": 2.1 + }, + "position3d": { + "x": 83.295, + "y": 53.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C9_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.295, + "y": 53.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_D9", + "uuid": "923f74ef-e57a-4922-83f9-16c1e704a1c1", + "name": "thermoscientificnunc_96_wellplate_2000ul_D9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.295, + "y": 44.195, + "z": 2.1 + }, + "position3d": { + "x": 83.295, + "y": 44.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D9_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.295, + "y": 44.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_E9", + "uuid": "b4ea95df-649d-4f9e-bc88-c119878668e1", + "name": "thermoscientificnunc_96_wellplate_2000ul_E9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.295, + "y": 35.195, + "z": 2.1 + }, + "position3d": { + "x": 83.295, + "y": 35.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E9_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.295, + "y": 35.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_F9", + "uuid": "a90a6354-de34-43b2-8566-44efec13a59f", + "name": "thermoscientificnunc_96_wellplate_2000ul_F9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.295, + "y": 26.195, + "z": 2.1 + }, + "position3d": { + "x": 83.295, + "y": 26.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F9_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.295, + "y": 26.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_G9", + "uuid": "1162f4cf-8deb-492f-9c4c-387e703b2505", + "name": "thermoscientificnunc_96_wellplate_2000ul_G9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.295, + "y": 17.195, + "z": 2.1 + }, + "position3d": { + "x": 83.295, + "y": 17.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G9_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.295, + "y": 17.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_H9", + "uuid": "95835f10-1396-4a69-a186-2d1a799a755c", + "name": "thermoscientificnunc_96_wellplate_2000ul_H9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.295, + "y": 8.195, + "z": 2.1 + }, + "position3d": { + "x": 83.295, + "y": 8.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H9_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.295, + "y": 8.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_A10", + "uuid": "3d3b0a35-34b8-4563-b6f0-a8487f928507", + "name": "thermoscientificnunc_96_wellplate_2000ul_A10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.295, + "y": 71.195, + "z": 2.1 + }, + "position3d": { + "x": 92.295, + "y": 71.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A10_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.295, + "y": 71.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_B10", + "uuid": "48f39a83-f4ef-4a95-8bc2-a1697c684a4d", + "name": "thermoscientificnunc_96_wellplate_2000ul_B10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.295, + "y": 62.195, + "z": 2.1 + }, + "position3d": { + "x": 92.295, + "y": 62.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B10_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.295, + "y": 62.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_C10", + "uuid": "f577687c-3824-43c2-a2c1-288762774789", + "name": "thermoscientificnunc_96_wellplate_2000ul_C10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.295, + "y": 53.195, + "z": 2.1 + }, + "position3d": { + "x": 92.295, + "y": 53.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C10_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.295, + "y": 53.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_D10", + "uuid": "461441d1-0ce5-42dd-b08b-949e921fca8d", + "name": "thermoscientificnunc_96_wellplate_2000ul_D10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.295, + "y": 44.195, + "z": 2.1 + }, + "position3d": { + "x": 92.295, + "y": 44.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D10_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.295, + "y": 44.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_E10", + "uuid": "a31920c3-c75c-4cf9-a59e-d25fdf4f9588", + "name": "thermoscientificnunc_96_wellplate_2000ul_E10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.295, + "y": 35.195, + "z": 2.1 + }, + "position3d": { + "x": 92.295, + "y": 35.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E10_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.295, + "y": 35.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_F10", + "uuid": "baeef209-f972-4c60-9791-7fb1910d3b56", + "name": "thermoscientificnunc_96_wellplate_2000ul_F10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.295, + "y": 26.195, + "z": 2.1 + }, + "position3d": { + "x": 92.295, + "y": 26.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F10_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.295, + "y": 26.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_G10", + "uuid": "d94a37b8-0b0c-4bca-b367-653a5634731e", + "name": "thermoscientificnunc_96_wellplate_2000ul_G10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.295, + "y": 17.195, + "z": 2.1 + }, + "position3d": { + "x": 92.295, + "y": 17.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G10_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.295, + "y": 17.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_H10", + "uuid": "f5ec7866-fd2d-4d0f-9069-542247db8315", + "name": "thermoscientificnunc_96_wellplate_2000ul_H10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.295, + "y": 8.195, + "z": 2.1 + }, + "position3d": { + "x": 92.295, + "y": 8.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H10_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.295, + "y": 8.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_A11", + "uuid": "4d68f51c-35c7-4548-ab77-3ae62fd9c79b", + "name": "thermoscientificnunc_96_wellplate_2000ul_A11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.295, + "y": 71.195, + "z": 2.1 + }, + "position3d": { + "x": 101.295, + "y": 71.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A11_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.295, + "y": 71.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_B11", + "uuid": "73e6a22b-1e18-423e-a101-43c2ff15cd50", + "name": "thermoscientificnunc_96_wellplate_2000ul_B11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.295, + "y": 62.195, + "z": 2.1 + }, + "position3d": { + "x": 101.295, + "y": 62.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B11_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.295, + "y": 62.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_C11", + "uuid": "a71e633d-6b8a-48ab-8526-1c49e032a3dd", + "name": "thermoscientificnunc_96_wellplate_2000ul_C11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.295, + "y": 53.195, + "z": 2.1 + }, + "position3d": { + "x": 101.295, + "y": 53.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C11_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.295, + "y": 53.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_D11", + "uuid": "2e08d285-0a42-4727-91e6-ccc16557ec84", + "name": "thermoscientificnunc_96_wellplate_2000ul_D11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.295, + "y": 44.195, + "z": 2.1 + }, + "position3d": { + "x": 101.295, + "y": 44.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D11_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.295, + "y": 44.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_E11", + "uuid": "7b86d4d5-4d26-480a-8eb2-e1a4f1f75eac", + "name": "thermoscientificnunc_96_wellplate_2000ul_E11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.295, + "y": 35.195, + "z": 2.1 + }, + "position3d": { + "x": 101.295, + "y": 35.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E11_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.295, + "y": 35.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_F11", + "uuid": "6af65322-c1fc-416a-b147-2db29a4eb790", + "name": "thermoscientificnunc_96_wellplate_2000ul_F11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.295, + "y": 26.195, + "z": 2.1 + }, + "position3d": { + "x": 101.295, + "y": 26.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F11_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.295, + "y": 26.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_G11", + "uuid": "59edd514-cbc8-455f-8f29-ad75f8c133d7", + "name": "thermoscientificnunc_96_wellplate_2000ul_G11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.295, + "y": 17.195, + "z": 2.1 + }, + "position3d": { + "x": 101.295, + "y": 17.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G11_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.295, + "y": 17.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_H11", + "uuid": "30a01191-59ce-431b-8137-d2bcf5afc105", + "name": "thermoscientificnunc_96_wellplate_2000ul_H11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.295, + "y": 8.195, + "z": 2.1 + }, + "position3d": { + "x": 101.295, + "y": 8.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H11_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.295, + "y": 8.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_A12", + "uuid": "d59386a4-104a-42a7-ac56-24955b1e0d90", + "name": "thermoscientificnunc_96_wellplate_2000ul_A12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.295, + "y": 71.195, + "z": 2.1 + }, + "position3d": { + "x": 110.295, + "y": 71.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A12_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.295, + "y": 71.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_B12", + "uuid": "b8d1827b-01c3-4ef7-b23d-77a00b26b65b", + "name": "thermoscientificnunc_96_wellplate_2000ul_B12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.295, + "y": 62.195, + "z": 2.1 + }, + "position3d": { + "x": 110.295, + "y": 62.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B12_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.295, + "y": 62.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_C12", + "uuid": "8030bc33-d83f-4c36-bbe7-b21769b1e702", + "name": "thermoscientificnunc_96_wellplate_2000ul_C12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.295, + "y": 53.195, + "z": 2.1 + }, + "position3d": { + "x": 110.295, + "y": 53.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C12_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.295, + "y": 53.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_D12", + "uuid": "ea8affe7-e305-432a-8244-52a04e83d793", + "name": "thermoscientificnunc_96_wellplate_2000ul_D12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.295, + "y": 44.195, + "z": 2.1 + }, + "position3d": { + "x": 110.295, + "y": 44.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D12_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.295, + "y": 44.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_E12", + "uuid": "f0021996-3ee8-4d9f-91ac-f5ea15528647", + "name": "thermoscientificnunc_96_wellplate_2000ul_E12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.295, + "y": 35.195, + "z": 2.1 + }, + "position3d": { + "x": 110.295, + "y": 35.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E12_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.295, + "y": 35.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_F12", + "uuid": "a223ff8d-e301-4a49-8a76-4f95d853ed29", + "name": "thermoscientificnunc_96_wellplate_2000ul_F12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.295, + "y": 26.195, + "z": 2.1 + }, + "position3d": { + "x": 110.295, + "y": 26.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F12_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.295, + "y": 26.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_G12", + "uuid": "0d8ecab7-11c5-4f8d-92f7-209129481d9a", + "name": "thermoscientificnunc_96_wellplate_2000ul_G12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.295, + "y": 17.195, + "z": 2.1 + }, + "position3d": { + "x": 110.295, + "y": 17.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G12_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.295, + "y": 17.195, + "z": 2.1 + } + }, + { + "id": "thermoscientificnunc_96_wellplate_2000ul_H12", + "uuid": "a3d54592-d93f-4279-952a-a614d7f3a960", + "name": "thermoscientificnunc_96_wellplate_2000ul_H12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fb15169b-166c-4a55-ba13-0246fff26981", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.5, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.295, + "y": 8.195, + "z": 2.1 + }, + "position3d": { + "x": 110.295, + "y": 8.195, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 41.5, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H12_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.295, + "y": 8.195, + "z": 2.1 + } + } + ] + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep", + "category": [ + "plates" + ], + "class": { + "module": "pylabrobot.resources.opentrons.plates:usascientific_96_wellplate_2point4ml_deep", + "type": "pylabrobot" + }, + "description": "USAScientific 96 wellplate 2.4ml deep", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/opentrons/plates.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "usascientific_96_wellplate_2point4ml_deep", + "uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "name": "usascientific_96_wellplate_2point4ml_deep", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "plate", + "class": "", + "pose": { + "size": { + "depth": 44.1, + "width": 127.8, + "height": 85.5 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Plate", + "size_x": 127.8, + "size_y": 85.5, + "size_z": 44.1, + "category": "plate", + "model": "USA Scientific 96 Deep Well Plate 2.4 mL", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "usascientific_96_wellplate_2point4ml_deep_A1", + "B1": "usascientific_96_wellplate_2point4ml_deep_B1", + "C1": "usascientific_96_wellplate_2point4ml_deep_C1", + "D1": "usascientific_96_wellplate_2point4ml_deep_D1", + "E1": "usascientific_96_wellplate_2point4ml_deep_E1", + "F1": "usascientific_96_wellplate_2point4ml_deep_F1", + "G1": "usascientific_96_wellplate_2point4ml_deep_G1", + "H1": "usascientific_96_wellplate_2point4ml_deep_H1", + "A2": "usascientific_96_wellplate_2point4ml_deep_A2", + "B2": "usascientific_96_wellplate_2point4ml_deep_B2", + "C2": "usascientific_96_wellplate_2point4ml_deep_C2", + "D2": "usascientific_96_wellplate_2point4ml_deep_D2", + "E2": "usascientific_96_wellplate_2point4ml_deep_E2", + "F2": "usascientific_96_wellplate_2point4ml_deep_F2", + "G2": "usascientific_96_wellplate_2point4ml_deep_G2", + "H2": "usascientific_96_wellplate_2point4ml_deep_H2", + "A3": "usascientific_96_wellplate_2point4ml_deep_A3", + "B3": "usascientific_96_wellplate_2point4ml_deep_B3", + "C3": "usascientific_96_wellplate_2point4ml_deep_C3", + "D3": "usascientific_96_wellplate_2point4ml_deep_D3", + "E3": "usascientific_96_wellplate_2point4ml_deep_E3", + "F3": "usascientific_96_wellplate_2point4ml_deep_F3", + "G3": "usascientific_96_wellplate_2point4ml_deep_G3", + "H3": "usascientific_96_wellplate_2point4ml_deep_H3", + "A4": "usascientific_96_wellplate_2point4ml_deep_A4", + "B4": "usascientific_96_wellplate_2point4ml_deep_B4", + "C4": "usascientific_96_wellplate_2point4ml_deep_C4", + "D4": "usascientific_96_wellplate_2point4ml_deep_D4", + "E4": "usascientific_96_wellplate_2point4ml_deep_E4", + "F4": "usascientific_96_wellplate_2point4ml_deep_F4", + "G4": "usascientific_96_wellplate_2point4ml_deep_G4", + "H4": "usascientific_96_wellplate_2point4ml_deep_H4", + "A5": "usascientific_96_wellplate_2point4ml_deep_A5", + "B5": "usascientific_96_wellplate_2point4ml_deep_B5", + "C5": "usascientific_96_wellplate_2point4ml_deep_C5", + "D5": "usascientific_96_wellplate_2point4ml_deep_D5", + "E5": "usascientific_96_wellplate_2point4ml_deep_E5", + "F5": "usascientific_96_wellplate_2point4ml_deep_F5", + "G5": "usascientific_96_wellplate_2point4ml_deep_G5", + "H5": "usascientific_96_wellplate_2point4ml_deep_H5", + "A6": "usascientific_96_wellplate_2point4ml_deep_A6", + "B6": "usascientific_96_wellplate_2point4ml_deep_B6", + "C6": "usascientific_96_wellplate_2point4ml_deep_C6", + "D6": "usascientific_96_wellplate_2point4ml_deep_D6", + "E6": "usascientific_96_wellplate_2point4ml_deep_E6", + "F6": "usascientific_96_wellplate_2point4ml_deep_F6", + "G6": "usascientific_96_wellplate_2point4ml_deep_G6", + "H6": "usascientific_96_wellplate_2point4ml_deep_H6", + "A7": "usascientific_96_wellplate_2point4ml_deep_A7", + "B7": "usascientific_96_wellplate_2point4ml_deep_B7", + "C7": "usascientific_96_wellplate_2point4ml_deep_C7", + "D7": "usascientific_96_wellplate_2point4ml_deep_D7", + "E7": "usascientific_96_wellplate_2point4ml_deep_E7", + "F7": "usascientific_96_wellplate_2point4ml_deep_F7", + "G7": "usascientific_96_wellplate_2point4ml_deep_G7", + "H7": "usascientific_96_wellplate_2point4ml_deep_H7", + "A8": "usascientific_96_wellplate_2point4ml_deep_A8", + "B8": "usascientific_96_wellplate_2point4ml_deep_B8", + "C8": "usascientific_96_wellplate_2point4ml_deep_C8", + "D8": "usascientific_96_wellplate_2point4ml_deep_D8", + "E8": "usascientific_96_wellplate_2point4ml_deep_E8", + "F8": "usascientific_96_wellplate_2point4ml_deep_F8", + "G8": "usascientific_96_wellplate_2point4ml_deep_G8", + "H8": "usascientific_96_wellplate_2point4ml_deep_H8", + "A9": "usascientific_96_wellplate_2point4ml_deep_A9", + "B9": "usascientific_96_wellplate_2point4ml_deep_B9", + "C9": "usascientific_96_wellplate_2point4ml_deep_C9", + "D9": "usascientific_96_wellplate_2point4ml_deep_D9", + "E9": "usascientific_96_wellplate_2point4ml_deep_E9", + "F9": "usascientific_96_wellplate_2point4ml_deep_F9", + "G9": "usascientific_96_wellplate_2point4ml_deep_G9", + "H9": "usascientific_96_wellplate_2point4ml_deep_H9", + "A10": "usascientific_96_wellplate_2point4ml_deep_A10", + "B10": "usascientific_96_wellplate_2point4ml_deep_B10", + "C10": "usascientific_96_wellplate_2point4ml_deep_C10", + "D10": "usascientific_96_wellplate_2point4ml_deep_D10", + "E10": "usascientific_96_wellplate_2point4ml_deep_E10", + "F10": "usascientific_96_wellplate_2point4ml_deep_F10", + "G10": "usascientific_96_wellplate_2point4ml_deep_G10", + "H10": "usascientific_96_wellplate_2point4ml_deep_H10", + "A11": "usascientific_96_wellplate_2point4ml_deep_A11", + "B11": "usascientific_96_wellplate_2point4ml_deep_B11", + "C11": "usascientific_96_wellplate_2point4ml_deep_C11", + "D11": "usascientific_96_wellplate_2point4ml_deep_D11", + "E11": "usascientific_96_wellplate_2point4ml_deep_E11", + "F11": "usascientific_96_wellplate_2point4ml_deep_F11", + "G11": "usascientific_96_wellplate_2point4ml_deep_G11", + "H11": "usascientific_96_wellplate_2point4ml_deep_H11", + "A12": "usascientific_96_wellplate_2point4ml_deep_A12", + "B12": "usascientific_96_wellplate_2point4ml_deep_B12", + "C12": "usascientific_96_wellplate_2point4ml_deep_C12", + "D12": "usascientific_96_wellplate_2point4ml_deep_D12", + "E12": "usascientific_96_wellplate_2point4ml_deep_E12", + "F12": "usascientific_96_wellplate_2point4ml_deep_F12", + "G12": "usascientific_96_wellplate_2point4ml_deep_G12", + "H12": "usascientific_96_wellplate_2point4ml_deep_H12" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_A1", + "uuid": "635bac34-80a9-42f6-a574-ffd8b87f196e", + "name": "usascientific_96_wellplate_2point4ml_deep_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.3, + "y": 70.1, + "z": 2.8 + }, + "position3d": { + "x": 10.3, + "y": 70.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A1_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.3, + "y": 70.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_B1", + "uuid": "ba3102cf-55e1-4f7f-8783-9c92fb6d396a", + "name": "usascientific_96_wellplate_2point4ml_deep_B1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.3, + "y": 61.1, + "z": 2.8 + }, + "position3d": { + "x": 10.3, + "y": 61.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B1_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.3, + "y": 61.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_C1", + "uuid": "43c5452a-55b4-4411-852e-7fbf72a53e38", + "name": "usascientific_96_wellplate_2point4ml_deep_C1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.3, + "y": 52.1, + "z": 2.8 + }, + "position3d": { + "x": 10.3, + "y": 52.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C1_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.3, + "y": 52.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_D1", + "uuid": "004581f3-f3ef-49ac-a82a-3ab4cca31aa5", + "name": "usascientific_96_wellplate_2point4ml_deep_D1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.3, + "y": 43.1, + "z": 2.8 + }, + "position3d": { + "x": 10.3, + "y": 43.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D1_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.3, + "y": 43.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_E1", + "uuid": "031cdffa-07bc-40cf-8844-22dac01178e8", + "name": "usascientific_96_wellplate_2point4ml_deep_E1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.3, + "y": 34.1, + "z": 2.8 + }, + "position3d": { + "x": 10.3, + "y": 34.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E1_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.3, + "y": 34.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_F1", + "uuid": "4d124a07-2efc-4db8-afb6-c65a2f32fd5e", + "name": "usascientific_96_wellplate_2point4ml_deep_F1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.3, + "y": 25.1, + "z": 2.8 + }, + "position3d": { + "x": 10.3, + "y": 25.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F1_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.3, + "y": 25.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_G1", + "uuid": "142813a8-3342-448f-a45f-c7314145ae73", + "name": "usascientific_96_wellplate_2point4ml_deep_G1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.3, + "y": 16.1, + "z": 2.8 + }, + "position3d": { + "x": 10.3, + "y": 16.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G1_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.3, + "y": 16.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_H1", + "uuid": "fb292716-bebc-4e8f-bd53-697c676cf5bd", + "name": "usascientific_96_wellplate_2point4ml_deep_H1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.3, + "y": 7.1, + "z": 2.8 + }, + "position3d": { + "x": 10.3, + "y": 7.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H1_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.3, + "y": 7.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_A2", + "uuid": "27247951-4a20-481f-9308-c6d33bb3f139", + "name": "usascientific_96_wellplate_2point4ml_deep_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 19.3, + "y": 70.1, + "z": 2.8 + }, + "position3d": { + "x": 19.3, + "y": 70.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A2_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 19.3, + "y": 70.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_B2", + "uuid": "a95db0d8-cf44-48ef-bbfb-9ccdaf69db68", + "name": "usascientific_96_wellplate_2point4ml_deep_B2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 19.3, + "y": 61.1, + "z": 2.8 + }, + "position3d": { + "x": 19.3, + "y": 61.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B2_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 19.3, + "y": 61.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_C2", + "uuid": "f5cd77b5-c972-4987-bc0e-4797efc33350", + "name": "usascientific_96_wellplate_2point4ml_deep_C2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 19.3, + "y": 52.1, + "z": 2.8 + }, + "position3d": { + "x": 19.3, + "y": 52.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C2_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 19.3, + "y": 52.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_D2", + "uuid": "f270de44-c97e-4169-95f4-90e84fa769c1", + "name": "usascientific_96_wellplate_2point4ml_deep_D2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 19.3, + "y": 43.1, + "z": 2.8 + }, + "position3d": { + "x": 19.3, + "y": 43.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D2_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 19.3, + "y": 43.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_E2", + "uuid": "b575e7f6-8776-42b6-80bb-adab1a9303ff", + "name": "usascientific_96_wellplate_2point4ml_deep_E2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 19.3, + "y": 34.1, + "z": 2.8 + }, + "position3d": { + "x": 19.3, + "y": 34.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E2_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 19.3, + "y": 34.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_F2", + "uuid": "836e5ff6-0963-4928-9c0c-82cd7cb571a2", + "name": "usascientific_96_wellplate_2point4ml_deep_F2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 19.3, + "y": 25.1, + "z": 2.8 + }, + "position3d": { + "x": 19.3, + "y": 25.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F2_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 19.3, + "y": 25.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_G2", + "uuid": "431ba3c8-ba94-41d7-a1f7-312e4e497ee6", + "name": "usascientific_96_wellplate_2point4ml_deep_G2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 19.3, + "y": 16.1, + "z": 2.8 + }, + "position3d": { + "x": 19.3, + "y": 16.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G2_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 19.3, + "y": 16.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_H2", + "uuid": "80084afd-0185-4291-8729-01ee610e70d5", + "name": "usascientific_96_wellplate_2point4ml_deep_H2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 19.3, + "y": 7.1, + "z": 2.8 + }, + "position3d": { + "x": 19.3, + "y": 7.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H2_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 19.3, + "y": 7.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_A3", + "uuid": "98309b09-8987-4b30-9d9b-f2d3d78b2375", + "name": "usascientific_96_wellplate_2point4ml_deep_A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.3, + "y": 70.1, + "z": 2.8 + }, + "position3d": { + "x": 28.3, + "y": 70.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A3_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.3, + "y": 70.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_B3", + "uuid": "c139adb0-4b7a-4f5f-82ec-173efc00495c", + "name": "usascientific_96_wellplate_2point4ml_deep_B3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.3, + "y": 61.1, + "z": 2.8 + }, + "position3d": { + "x": 28.3, + "y": 61.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B3_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.3, + "y": 61.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_C3", + "uuid": "add00f2e-c776-4f09-a60f-aa929c9557e1", + "name": "usascientific_96_wellplate_2point4ml_deep_C3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.3, + "y": 52.1, + "z": 2.8 + }, + "position3d": { + "x": 28.3, + "y": 52.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C3_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.3, + "y": 52.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_D3", + "uuid": "b9c09d2a-321e-4ade-8d7c-d3adf3e349fa", + "name": "usascientific_96_wellplate_2point4ml_deep_D3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.3, + "y": 43.1, + "z": 2.8 + }, + "position3d": { + "x": 28.3, + "y": 43.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D3_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.3, + "y": 43.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_E3", + "uuid": "3afbee8b-0a99-4394-bcaf-8fc4138ed558", + "name": "usascientific_96_wellplate_2point4ml_deep_E3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.3, + "y": 34.1, + "z": 2.8 + }, + "position3d": { + "x": 28.3, + "y": 34.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E3_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.3, + "y": 34.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_F3", + "uuid": "25663806-d925-416f-ac2f-e2a5e5748350", + "name": "usascientific_96_wellplate_2point4ml_deep_F3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.3, + "y": 25.1, + "z": 2.8 + }, + "position3d": { + "x": 28.3, + "y": 25.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F3_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.3, + "y": 25.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_G3", + "uuid": "3133dc2e-cec0-4366-811a-59c245e58a48", + "name": "usascientific_96_wellplate_2point4ml_deep_G3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.3, + "y": 16.1, + "z": 2.8 + }, + "position3d": { + "x": 28.3, + "y": 16.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G3_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.3, + "y": 16.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_H3", + "uuid": "6481326b-0a31-424e-bdda-b1a94d4c9038", + "name": "usascientific_96_wellplate_2point4ml_deep_H3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.3, + "y": 7.1, + "z": 2.8 + }, + "position3d": { + "x": 28.3, + "y": 7.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H3_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.3, + "y": 7.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_A4", + "uuid": "a81ef0b0-dd5b-4d09-b661-2c84c0820a84", + "name": "usascientific_96_wellplate_2point4ml_deep_A4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.3, + "y": 70.1, + "z": 2.8 + }, + "position3d": { + "x": 37.3, + "y": 70.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A4_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.3, + "y": 70.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_B4", + "uuid": "af246736-f7b1-4235-971e-b8012ef67dab", + "name": "usascientific_96_wellplate_2point4ml_deep_B4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.3, + "y": 61.1, + "z": 2.8 + }, + "position3d": { + "x": 37.3, + "y": 61.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B4_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.3, + "y": 61.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_C4", + "uuid": "4ad0cb5d-c693-4959-a8ac-afc239982a36", + "name": "usascientific_96_wellplate_2point4ml_deep_C4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.3, + "y": 52.1, + "z": 2.8 + }, + "position3d": { + "x": 37.3, + "y": 52.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C4_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.3, + "y": 52.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_D4", + "uuid": "c988589b-c710-4b55-8091-cabf680ed616", + "name": "usascientific_96_wellplate_2point4ml_deep_D4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.3, + "y": 43.1, + "z": 2.8 + }, + "position3d": { + "x": 37.3, + "y": 43.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D4_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.3, + "y": 43.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_E4", + "uuid": "e1fac5ec-014e-4c88-be84-6e92b707a195", + "name": "usascientific_96_wellplate_2point4ml_deep_E4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.3, + "y": 34.1, + "z": 2.8 + }, + "position3d": { + "x": 37.3, + "y": 34.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E4_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.3, + "y": 34.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_F4", + "uuid": "b4c9abfe-5c35-4d67-9ae4-5d9e217b9377", + "name": "usascientific_96_wellplate_2point4ml_deep_F4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.3, + "y": 25.1, + "z": 2.8 + }, + "position3d": { + "x": 37.3, + "y": 25.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F4_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.3, + "y": 25.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_G4", + "uuid": "1f1888a9-4108-4570-9249-977f1c2991d3", + "name": "usascientific_96_wellplate_2point4ml_deep_G4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.3, + "y": 16.1, + "z": 2.8 + }, + "position3d": { + "x": 37.3, + "y": 16.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G4_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.3, + "y": 16.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_H4", + "uuid": "ff333185-d633-4075-a6e4-12273b0a8531", + "name": "usascientific_96_wellplate_2point4ml_deep_H4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.3, + "y": 7.1, + "z": 2.8 + }, + "position3d": { + "x": 37.3, + "y": 7.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H4_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.3, + "y": 7.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_A5", + "uuid": "71dbbbfa-8452-4521-9db4-434ec3905ab2", + "name": "usascientific_96_wellplate_2point4ml_deep_A5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.3, + "y": 70.1, + "z": 2.8 + }, + "position3d": { + "x": 46.3, + "y": 70.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A5_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.3, + "y": 70.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_B5", + "uuid": "113d3bed-f0a4-462f-86ca-734064f0a2d1", + "name": "usascientific_96_wellplate_2point4ml_deep_B5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.3, + "y": 61.1, + "z": 2.8 + }, + "position3d": { + "x": 46.3, + "y": 61.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B5_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.3, + "y": 61.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_C5", + "uuid": "e1c06a40-c6c7-46c5-9560-822247386ed0", + "name": "usascientific_96_wellplate_2point4ml_deep_C5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.3, + "y": 52.1, + "z": 2.8 + }, + "position3d": { + "x": 46.3, + "y": 52.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C5_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.3, + "y": 52.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_D5", + "uuid": "8b83fce5-76b0-4676-be65-2ee74dfcc8dd", + "name": "usascientific_96_wellplate_2point4ml_deep_D5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.3, + "y": 43.1, + "z": 2.8 + }, + "position3d": { + "x": 46.3, + "y": 43.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D5_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.3, + "y": 43.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_E5", + "uuid": "d2f6d22f-3224-44f7-82c6-08820c991dff", + "name": "usascientific_96_wellplate_2point4ml_deep_E5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.3, + "y": 34.1, + "z": 2.8 + }, + "position3d": { + "x": 46.3, + "y": 34.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E5_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.3, + "y": 34.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_F5", + "uuid": "b87a1f6d-979d-4943-a822-27fdc80a9f29", + "name": "usascientific_96_wellplate_2point4ml_deep_F5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.3, + "y": 25.1, + "z": 2.8 + }, + "position3d": { + "x": 46.3, + "y": 25.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F5_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.3, + "y": 25.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_G5", + "uuid": "e476d726-2369-4e4c-bf55-2b4f4fb87c25", + "name": "usascientific_96_wellplate_2point4ml_deep_G5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.3, + "y": 16.1, + "z": 2.8 + }, + "position3d": { + "x": 46.3, + "y": 16.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G5_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.3, + "y": 16.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_H5", + "uuid": "db76dc60-41de-4ea9-b619-9043824be8fe", + "name": "usascientific_96_wellplate_2point4ml_deep_H5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.3, + "y": 7.1, + "z": 2.8 + }, + "position3d": { + "x": 46.3, + "y": 7.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H5_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.3, + "y": 7.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_A6", + "uuid": "b6f5c107-cecb-4da6-906d-a379551fa605", + "name": "usascientific_96_wellplate_2point4ml_deep_A6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.3, + "y": 70.1, + "z": 2.8 + }, + "position3d": { + "x": 55.3, + "y": 70.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A6_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.3, + "y": 70.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_B6", + "uuid": "8c43186f-fc25-4d10-be17-a4aa08f869ba", + "name": "usascientific_96_wellplate_2point4ml_deep_B6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.3, + "y": 61.1, + "z": 2.8 + }, + "position3d": { + "x": 55.3, + "y": 61.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B6_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.3, + "y": 61.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_C6", + "uuid": "e5048f9c-4468-45bf-8487-102b54b5f360", + "name": "usascientific_96_wellplate_2point4ml_deep_C6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.3, + "y": 52.1, + "z": 2.8 + }, + "position3d": { + "x": 55.3, + "y": 52.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C6_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.3, + "y": 52.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_D6", + "uuid": "76826f0d-d120-4a24-896f-55eab28ac297", + "name": "usascientific_96_wellplate_2point4ml_deep_D6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.3, + "y": 43.1, + "z": 2.8 + }, + "position3d": { + "x": 55.3, + "y": 43.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D6_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.3, + "y": 43.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_E6", + "uuid": "fa8b0b23-e8bd-4fdf-ba26-67832929b8d6", + "name": "usascientific_96_wellplate_2point4ml_deep_E6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.3, + "y": 34.1, + "z": 2.8 + }, + "position3d": { + "x": 55.3, + "y": 34.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E6_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.3, + "y": 34.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_F6", + "uuid": "48ac44f1-0623-47dc-a536-bdfe03c808ca", + "name": "usascientific_96_wellplate_2point4ml_deep_F6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.3, + "y": 25.1, + "z": 2.8 + }, + "position3d": { + "x": 55.3, + "y": 25.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F6_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.3, + "y": 25.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_G6", + "uuid": "7d5c209e-aeaf-4892-9af7-1efa45db8915", + "name": "usascientific_96_wellplate_2point4ml_deep_G6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.3, + "y": 16.1, + "z": 2.8 + }, + "position3d": { + "x": 55.3, + "y": 16.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G6_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.3, + "y": 16.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_H6", + "uuid": "42a2909d-7ab1-4a1d-9f9b-417dd85744e7", + "name": "usascientific_96_wellplate_2point4ml_deep_H6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.3, + "y": 7.1, + "z": 2.8 + }, + "position3d": { + "x": 55.3, + "y": 7.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H6_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.3, + "y": 7.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_A7", + "uuid": "cf2aeb46-842a-453e-9297-f1740ca1ba68", + "name": "usascientific_96_wellplate_2point4ml_deep_A7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.3, + "y": 70.1, + "z": 2.8 + }, + "position3d": { + "x": 64.3, + "y": 70.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A7_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.3, + "y": 70.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_B7", + "uuid": "06499c24-438f-4332-8e1a-306800520eb1", + "name": "usascientific_96_wellplate_2point4ml_deep_B7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.3, + "y": 61.1, + "z": 2.8 + }, + "position3d": { + "x": 64.3, + "y": 61.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B7_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.3, + "y": 61.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_C7", + "uuid": "ac18d7fd-9423-4072-8c24-4369d129975f", + "name": "usascientific_96_wellplate_2point4ml_deep_C7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.3, + "y": 52.1, + "z": 2.8 + }, + "position3d": { + "x": 64.3, + "y": 52.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C7_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.3, + "y": 52.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_D7", + "uuid": "eb32a470-89d8-4f18-85b8-fc72e7e2abcd", + "name": "usascientific_96_wellplate_2point4ml_deep_D7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.3, + "y": 43.1, + "z": 2.8 + }, + "position3d": { + "x": 64.3, + "y": 43.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D7_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.3, + "y": 43.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_E7", + "uuid": "c03eee1b-75f0-49ca-99c5-b2a7ee4f63b3", + "name": "usascientific_96_wellplate_2point4ml_deep_E7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.3, + "y": 34.1, + "z": 2.8 + }, + "position3d": { + "x": 64.3, + "y": 34.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E7_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.3, + "y": 34.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_F7", + "uuid": "b76a860a-6102-4a40-b0c8-5a474d0dac2d", + "name": "usascientific_96_wellplate_2point4ml_deep_F7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.3, + "y": 25.1, + "z": 2.8 + }, + "position3d": { + "x": 64.3, + "y": 25.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F7_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.3, + "y": 25.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_G7", + "uuid": "a8ed9613-f000-4358-8cbc-26a72e54f177", + "name": "usascientific_96_wellplate_2point4ml_deep_G7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.3, + "y": 16.1, + "z": 2.8 + }, + "position3d": { + "x": 64.3, + "y": 16.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G7_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.3, + "y": 16.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_H7", + "uuid": "fa0f7f30-6cbe-4d2f-a01c-9007d866c806", + "name": "usascientific_96_wellplate_2point4ml_deep_H7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.3, + "y": 7.1, + "z": 2.8 + }, + "position3d": { + "x": 64.3, + "y": 7.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H7_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.3, + "y": 7.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_A8", + "uuid": "1ce5d964-2b47-47bd-a0d4-925575044680", + "name": "usascientific_96_wellplate_2point4ml_deep_A8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.3, + "y": 70.1, + "z": 2.8 + }, + "position3d": { + "x": 73.3, + "y": 70.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A8_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.3, + "y": 70.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_B8", + "uuid": "d0072002-d345-42a9-8ad4-c5f17be1b133", + "name": "usascientific_96_wellplate_2point4ml_deep_B8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.3, + "y": 61.1, + "z": 2.8 + }, + "position3d": { + "x": 73.3, + "y": 61.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B8_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.3, + "y": 61.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_C8", + "uuid": "d0bf7bd1-1989-4e12-99fc-6ed85297b1bf", + "name": "usascientific_96_wellplate_2point4ml_deep_C8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.3, + "y": 52.1, + "z": 2.8 + }, + "position3d": { + "x": 73.3, + "y": 52.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C8_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.3, + "y": 52.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_D8", + "uuid": "f7550201-5dc0-4219-96df-f10d4302eb91", + "name": "usascientific_96_wellplate_2point4ml_deep_D8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.3, + "y": 43.1, + "z": 2.8 + }, + "position3d": { + "x": 73.3, + "y": 43.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D8_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.3, + "y": 43.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_E8", + "uuid": "4dfa235f-5de9-4390-9656-3b40ebf933e7", + "name": "usascientific_96_wellplate_2point4ml_deep_E8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.3, + "y": 34.1, + "z": 2.8 + }, + "position3d": { + "x": 73.3, + "y": 34.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E8_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.3, + "y": 34.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_F8", + "uuid": "f79ff9c2-e130-4aae-b870-7a43ed010c81", + "name": "usascientific_96_wellplate_2point4ml_deep_F8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.3, + "y": 25.1, + "z": 2.8 + }, + "position3d": { + "x": 73.3, + "y": 25.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F8_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.3, + "y": 25.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_G8", + "uuid": "cc167215-4202-4130-b359-a3a60110e1d3", + "name": "usascientific_96_wellplate_2point4ml_deep_G8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.3, + "y": 16.1, + "z": 2.8 + }, + "position3d": { + "x": 73.3, + "y": 16.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G8_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.3, + "y": 16.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_H8", + "uuid": "0e87290c-3761-41cf-badc-7eefbe81826a", + "name": "usascientific_96_wellplate_2point4ml_deep_H8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.3, + "y": 7.1, + "z": 2.8 + }, + "position3d": { + "x": 73.3, + "y": 7.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H8_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.3, + "y": 7.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_A9", + "uuid": "379f9a02-b9b9-455c-a0db-9f0dd2f8fe21", + "name": "usascientific_96_wellplate_2point4ml_deep_A9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.3, + "y": 70.1, + "z": 2.8 + }, + "position3d": { + "x": 82.3, + "y": 70.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A9_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.3, + "y": 70.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_B9", + "uuid": "710d5082-3fdf-4575-9f53-7d04b0e6a3d7", + "name": "usascientific_96_wellplate_2point4ml_deep_B9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.3, + "y": 61.1, + "z": 2.8 + }, + "position3d": { + "x": 82.3, + "y": 61.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B9_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.3, + "y": 61.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_C9", + "uuid": "c200c886-5245-4b56-9b6b-f0203da4f773", + "name": "usascientific_96_wellplate_2point4ml_deep_C9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.3, + "y": 52.1, + "z": 2.8 + }, + "position3d": { + "x": 82.3, + "y": 52.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C9_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.3, + "y": 52.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_D9", + "uuid": "db350607-e46f-4bcc-9eab-e7a64114e3e2", + "name": "usascientific_96_wellplate_2point4ml_deep_D9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.3, + "y": 43.1, + "z": 2.8 + }, + "position3d": { + "x": 82.3, + "y": 43.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D9_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.3, + "y": 43.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_E9", + "uuid": "13e8f4be-5a7c-4533-990d-a836f2a1d9f6", + "name": "usascientific_96_wellplate_2point4ml_deep_E9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.3, + "y": 34.1, + "z": 2.8 + }, + "position3d": { + "x": 82.3, + "y": 34.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E9_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.3, + "y": 34.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_F9", + "uuid": "50e979cd-cb29-4fa0-a6df-020dc03e6cfb", + "name": "usascientific_96_wellplate_2point4ml_deep_F9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.3, + "y": 25.1, + "z": 2.8 + }, + "position3d": { + "x": 82.3, + "y": 25.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F9_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.3, + "y": 25.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_G9", + "uuid": "2a4b82a2-6cbc-41be-8c31-99c4c5433c23", + "name": "usascientific_96_wellplate_2point4ml_deep_G9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.3, + "y": 16.1, + "z": 2.8 + }, + "position3d": { + "x": 82.3, + "y": 16.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G9_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.3, + "y": 16.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_H9", + "uuid": "adc5d265-bc91-404c-b93c-b8b2bfe7caab", + "name": "usascientific_96_wellplate_2point4ml_deep_H9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.3, + "y": 7.1, + "z": 2.8 + }, + "position3d": { + "x": 82.3, + "y": 7.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H9_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.3, + "y": 7.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_A10", + "uuid": "a1e1cb73-bed7-48b8-8fb8-59f9ada9667f", + "name": "usascientific_96_wellplate_2point4ml_deep_A10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.3, + "y": 70.1, + "z": 2.8 + }, + "position3d": { + "x": 91.3, + "y": 70.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A10_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.3, + "y": 70.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_B10", + "uuid": "7704b648-7589-4f3c-965b-3b9623e02001", + "name": "usascientific_96_wellplate_2point4ml_deep_B10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.3, + "y": 61.1, + "z": 2.8 + }, + "position3d": { + "x": 91.3, + "y": 61.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B10_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.3, + "y": 61.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_C10", + "uuid": "565d4169-c9d3-4c6c-83fd-859a5e04183f", + "name": "usascientific_96_wellplate_2point4ml_deep_C10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.3, + "y": 52.1, + "z": 2.8 + }, + "position3d": { + "x": 91.3, + "y": 52.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C10_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.3, + "y": 52.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_D10", + "uuid": "73cac587-974e-4c1a-b7b3-907e5e1df250", + "name": "usascientific_96_wellplate_2point4ml_deep_D10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.3, + "y": 43.1, + "z": 2.8 + }, + "position3d": { + "x": 91.3, + "y": 43.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D10_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.3, + "y": 43.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_E10", + "uuid": "0c94d058-f4c4-496f-a15f-0ddb30dc3e2a", + "name": "usascientific_96_wellplate_2point4ml_deep_E10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.3, + "y": 34.1, + "z": 2.8 + }, + "position3d": { + "x": 91.3, + "y": 34.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E10_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.3, + "y": 34.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_F10", + "uuid": "5d034717-1a31-4100-8f68-40cebd1718e5", + "name": "usascientific_96_wellplate_2point4ml_deep_F10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.3, + "y": 25.1, + "z": 2.8 + }, + "position3d": { + "x": 91.3, + "y": 25.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F10_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.3, + "y": 25.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_G10", + "uuid": "1dca0734-3307-42ea-a8d0-65a2f29ed72e", + "name": "usascientific_96_wellplate_2point4ml_deep_G10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.3, + "y": 16.1, + "z": 2.8 + }, + "position3d": { + "x": 91.3, + "y": 16.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G10_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.3, + "y": 16.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_H10", + "uuid": "75431372-5049-4362-ae76-672c506873dd", + "name": "usascientific_96_wellplate_2point4ml_deep_H10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.3, + "y": 7.1, + "z": 2.8 + }, + "position3d": { + "x": 91.3, + "y": 7.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H10_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.3, + "y": 7.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_A11", + "uuid": "9eaaf096-ba8b-4748-80f9-d28ccd474b93", + "name": "usascientific_96_wellplate_2point4ml_deep_A11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.3, + "y": 70.1, + "z": 2.8 + }, + "position3d": { + "x": 100.3, + "y": 70.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A11_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.3, + "y": 70.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_B11", + "uuid": "dc2d000a-dd6e-445d-a5a9-e425d73a8fb1", + "name": "usascientific_96_wellplate_2point4ml_deep_B11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.3, + "y": 61.1, + "z": 2.8 + }, + "position3d": { + "x": 100.3, + "y": 61.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B11_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.3, + "y": 61.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_C11", + "uuid": "15933b9e-bc1d-420a-9bfd-96c6dd128f63", + "name": "usascientific_96_wellplate_2point4ml_deep_C11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.3, + "y": 52.1, + "z": 2.8 + }, + "position3d": { + "x": 100.3, + "y": 52.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C11_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.3, + "y": 52.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_D11", + "uuid": "be41b052-3c89-4f6c-93a2-72b64a220736", + "name": "usascientific_96_wellplate_2point4ml_deep_D11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.3, + "y": 43.1, + "z": 2.8 + }, + "position3d": { + "x": 100.3, + "y": 43.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D11_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.3, + "y": 43.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_E11", + "uuid": "2af2e067-e15d-4dfd-9011-28de11ecde56", + "name": "usascientific_96_wellplate_2point4ml_deep_E11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.3, + "y": 34.1, + "z": 2.8 + }, + "position3d": { + "x": 100.3, + "y": 34.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E11_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.3, + "y": 34.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_F11", + "uuid": "6644dedb-630a-42ec-9a0f-d9c6987d2cf6", + "name": "usascientific_96_wellplate_2point4ml_deep_F11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.3, + "y": 25.1, + "z": 2.8 + }, + "position3d": { + "x": 100.3, + "y": 25.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F11_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.3, + "y": 25.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_G11", + "uuid": "a58ff518-9a78-4cd7-8666-25489ec38e79", + "name": "usascientific_96_wellplate_2point4ml_deep_G11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.3, + "y": 16.1, + "z": 2.8 + }, + "position3d": { + "x": 100.3, + "y": 16.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G11_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.3, + "y": 16.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_H11", + "uuid": "0ac1d586-1feb-4ebe-8dbf-bb7932e3ebe9", + "name": "usascientific_96_wellplate_2point4ml_deep_H11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.3, + "y": 7.1, + "z": 2.8 + }, + "position3d": { + "x": 100.3, + "y": 7.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H11_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.3, + "y": 7.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_A12", + "uuid": "b26f49e5-0957-488c-8ace-f56edbd0ee27", + "name": "usascientific_96_wellplate_2point4ml_deep_A12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.3, + "y": 70.1, + "z": 2.8 + }, + "position3d": { + "x": 109.3, + "y": 70.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A12_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.3, + "y": 70.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_B12", + "uuid": "cae66768-9f6d-40f6-bcab-b7e18c2208c5", + "name": "usascientific_96_wellplate_2point4ml_deep_B12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.3, + "y": 61.1, + "z": 2.8 + }, + "position3d": { + "x": 109.3, + "y": 61.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B12_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.3, + "y": 61.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_C12", + "uuid": "8f0ac9fe-b37f-4316-832f-b0ccafe3ab9a", + "name": "usascientific_96_wellplate_2point4ml_deep_C12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.3, + "y": 52.1, + "z": 2.8 + }, + "position3d": { + "x": 109.3, + "y": 52.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C12_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.3, + "y": 52.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_D12", + "uuid": "8f0feb74-51e5-4b47-bfbb-45bf733dd86b", + "name": "usascientific_96_wellplate_2point4ml_deep_D12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.3, + "y": 43.1, + "z": 2.8 + }, + "position3d": { + "x": 109.3, + "y": 43.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D12_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.3, + "y": 43.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_E12", + "uuid": "3df92150-565a-4279-86f2-d7715831af6a", + "name": "usascientific_96_wellplate_2point4ml_deep_E12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.3, + "y": 34.1, + "z": 2.8 + }, + "position3d": { + "x": 109.3, + "y": 34.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "E12_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.3, + "y": 34.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_F12", + "uuid": "2b1243d2-98cf-46e0-be5f-15049a916c68", + "name": "usascientific_96_wellplate_2point4ml_deep_F12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.3, + "y": 25.1, + "z": 2.8 + }, + "position3d": { + "x": 109.3, + "y": 25.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "F12_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.3, + "y": 25.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_G12", + "uuid": "d05dc455-9d52-44f8-b5bc-62280e05bca5", + "name": "usascientific_96_wellplate_2point4ml_deep_G12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.3, + "y": 16.1, + "z": 2.8 + }, + "position3d": { + "x": 109.3, + "y": 16.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "G12_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.3, + "y": 16.1, + "z": 2.8 + } + }, + { + "id": "usascientific_96_wellplate_2point4ml_deep_H12", + "uuid": "fee827fd-f7b7-459b-a3e0-43e9d80a511d", + "name": "usascientific_96_wellplate_2point4ml_deep_H12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3f2ba38f-6d46-45f8-88d4-12b6fad1c59f", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 41.3, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.3, + "y": 7.1, + "z": 2.8 + }, + "position3d": { + "x": 109.3, + "y": 7.1, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 41.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2400, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "H12_volume_tracker", + "max_volume": 2400, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.3, + "y": 7.1, + "z": 2.8 + } + } + ] + }, + { + "id": "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical", + "category": [ + "tube_racks" + ], + "class": { + "module": "pylabrobot.resources.opentrons.tube_racks:opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical", + "type": "pylabrobot" + }, + "description": "Opentrons 10 tuberack falcon 4x50ml 6x15ml conical", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/opentrons/tube_racks.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical", + "uuid": "a666b66a-b1dd-4144-8f75-5e86a52ad293", + "name": "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "", + "class": "", + "pose": { + "size": { + "depth": 124.35, + "width": 127.75, + "height": 85.5 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TubeRack", + "size_x": 127.75, + "size_y": 85.5, + "size_z": 124.35, + "category": null, + "model": "Opentrons 10 Tube Rack with Falcon 4x50 mL, 6x15 mL Conical", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_A1", + "B1": "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_B1", + "C1": "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_C1", + "A2": "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_A2", + "B2": "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_B2", + "C2": "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_C2", + "A3": "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_A3", + "B3": "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_B3", + "A4": "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_A4", + "B4": "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_B4" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_A1", + "uuid": "f7233d73-3515-4fba-bb51-34b81517b45c", + "name": "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a666b66a-b1dd-4144-8f75-5e86a52ad293", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 117.5, + "width": 10.536, + "height": 10.536 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 8.612, + "y": 62.482, + "z": 6.85 + }, + "position3d": { + "x": 8.612, + "y": 62.482, + "z": 6.85 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 10.536, + "size_y": 10.536, + "size_z": 117.5, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 8.612, + "y": 62.482, + "z": 6.85 + } + }, + { + "id": "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_B1", + "uuid": "5eed6d85-4be2-49b5-96c1-0d303627ba06", + "name": "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_B1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a666b66a-b1dd-4144-8f75-5e86a52ad293", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 117.5, + "width": 10.536, + "height": 10.536 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 8.612, + "y": 37.482, + "z": 6.85 + }, + "position3d": { + "x": 8.612, + "y": 37.482, + "z": 6.85 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 10.536, + "size_y": 10.536, + "size_z": 117.5, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 8.612, + "y": 37.482, + "z": 6.85 + } + }, + { + "id": "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_C1", + "uuid": "064cacf7-c282-4009-9f8c-6ac9e7738dbc", + "name": "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_C1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a666b66a-b1dd-4144-8f75-5e86a52ad293", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 117.5, + "width": 10.536, + "height": 10.536 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 8.612, + "y": 12.482, + "z": 6.85 + }, + "position3d": { + "x": 8.612, + "y": 12.482, + "z": 6.85 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 10.536, + "size_y": 10.536, + "size_z": 117.5, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 8.612, + "y": 12.482, + "z": 6.85 + } + }, + { + "id": "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_A2", + "uuid": "74ed0aba-e2d3-4cfa-9aae-6de807c687a5", + "name": "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a666b66a-b1dd-4144-8f75-5e86a52ad293", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 117.5, + "width": 10.536, + "height": 10.536 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 33.612, + "y": 62.482, + "z": 6.85 + }, + "position3d": { + "x": 33.612, + "y": 62.482, + "z": 6.85 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 10.536, + "size_y": 10.536, + "size_z": 117.5, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 33.612, + "y": 62.482, + "z": 6.85 + } + }, + { + "id": "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_B2", + "uuid": "76834df8-958e-4fae-8409-1bcee9c0134e", + "name": "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_B2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a666b66a-b1dd-4144-8f75-5e86a52ad293", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 117.5, + "width": 10.536, + "height": 10.536 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 33.612, + "y": 37.482, + "z": 6.85 + }, + "position3d": { + "x": 33.612, + "y": 37.482, + "z": 6.85 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 10.536, + "size_y": 10.536, + "size_z": 117.5, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 33.612, + "y": 37.482, + "z": 6.85 + } + }, + { + "id": "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_C2", + "uuid": "a45b9d8b-6f8d-40b8-a1ca-72d5b2eb8981", + "name": "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_C2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a666b66a-b1dd-4144-8f75-5e86a52ad293", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 117.5, + "width": 10.536, + "height": 10.536 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 33.612, + "y": 12.482, + "z": 6.85 + }, + "position3d": { + "x": 33.612, + "y": 12.482, + "z": 6.85 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 10.536, + "size_y": 10.536, + "size_z": 117.5, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 33.612, + "y": 12.482, + "z": 6.85 + } + }, + { + "id": "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_A3", + "uuid": "cf5fbd84-c410-475e-92d6-18fa87402162", + "name": "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a666b66a-b1dd-4144-8f75-5e86a52ad293", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 113.0, + "width": 19.665, + "height": 19.665 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 61.5475, + "y": 50.4175, + "z": 7.3 + }, + "position3d": { + "x": 61.5475, + "y": 50.4175, + "z": 7.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 19.665, + "size_y": 19.665, + "size_z": 113, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 61.5475, + "y": 50.4175, + "z": 7.3 + } + }, + { + "id": "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_B3", + "uuid": "e24a2683-ff3b-4fd7-b389-fb3441eb9d4e", + "name": "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_B3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a666b66a-b1dd-4144-8f75-5e86a52ad293", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 113.0, + "width": 19.665, + "height": 19.665 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 61.5475, + "y": 15.4175, + "z": 7.3 + }, + "position3d": { + "x": 61.5475, + "y": 15.4175, + "z": 7.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 19.665, + "size_y": 19.665, + "size_z": 113, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 61.5475, + "y": 15.4175, + "z": 7.3 + } + }, + { + "id": "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_A4", + "uuid": "fd96f9a3-2048-4bda-82ca-4d8185833cc7", + "name": "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_A4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a666b66a-b1dd-4144-8f75-5e86a52ad293", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 113.0, + "width": 19.665, + "height": 19.665 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 96.5475, + "y": 50.4175, + "z": 7.3 + }, + "position3d": { + "x": 96.5475, + "y": 50.4175, + "z": 7.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 19.665, + "size_y": 19.665, + "size_z": 113, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 96.5475, + "y": 50.4175, + "z": 7.3 + } + }, + { + "id": "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_B4", + "uuid": "bdd3eb03-1837-42bf-874c-11db5420cbbd", + "name": "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_B4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a666b66a-b1dd-4144-8f75-5e86a52ad293", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 113.0, + "width": 19.665, + "height": 19.665 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 96.5475, + "y": 15.4175, + "z": 7.3 + }, + "position3d": { + "x": 96.5475, + "y": 15.4175, + "z": 7.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 19.665, + "size_y": 19.665, + "size_z": 113, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 96.5475, + "y": 15.4175, + "z": 7.3 + } + } + ] + }, + { + "id": "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_acrylic", + "category": [ + "tube_racks" + ], + "class": { + "module": "pylabrobot.resources.opentrons.tube_racks:opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_acrylic", + "type": "pylabrobot" + }, + "description": "Opentrons 10 tuberack falcon 4x50ml 6x15ml conical acrylic", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/opentrons/tube_racks.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_acrylic", + "uuid": "1fe0a065-e2fb-4c01-b0ab-98eef20e7459", + "name": "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_acrylic", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "", + "class": "", + "pose": { + "size": { + "depth": 123.76, + "width": 127.75, + "height": 85.5 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TubeRack", + "size_x": 127.75, + "size_y": 85.5, + "size_z": 123.76, + "category": null, + "model": "Opentrons 10 Tube Rack (Acrylic) with Falcon 4x50 mL, 6x15 mL Conical", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_acrylic_A1", + "B1": "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_acrylic_B1", + "C1": "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_acrylic_C1", + "A2": "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_acrylic_A2", + "B2": "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_acrylic_B2", + "C2": "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_acrylic_C2", + "A3": "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_acrylic_A3", + "B3": "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_acrylic_B3", + "A4": "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_acrylic_A4", + "B4": "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_acrylic_B4" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_acrylic_A1", + "uuid": "dff5aea0-0ee9-459c-9c7a-8dfb9c705aa0", + "name": "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_acrylic_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1fe0a065-e2fb-4c01-b0ab-98eef20e7459", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 117.98, + "width": 10.536, + "height": 10.536 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 13.732, + "y": 68.732, + "z": 5.78 + }, + "position3d": { + "x": 13.732, + "y": 68.732, + "z": 5.78 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 10.536, + "size_y": 10.536, + "size_z": 117.98, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 15000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A1_volume_tracker", + "max_volume": 15000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 13.732, + "y": 68.732, + "z": 5.78 + } + }, + { + "id": "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_acrylic_B1", + "uuid": "9dc84468-e5df-466e-9f37-0e0897ace1d3", + "name": "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_acrylic_B1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1fe0a065-e2fb-4c01-b0ab-98eef20e7459", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 117.98, + "width": 10.536, + "height": 10.536 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 13.732, + "y": 37.232, + "z": 5.78 + }, + "position3d": { + "x": 13.732, + "y": 37.232, + "z": 5.78 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 10.536, + "size_y": 10.536, + "size_z": 117.98, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 15000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B1_volume_tracker", + "max_volume": 15000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 13.732, + "y": 37.232, + "z": 5.78 + } + }, + { + "id": "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_acrylic_C1", + "uuid": "a2381c66-1077-4939-88e6-164181b799a0", + "name": "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_acrylic_C1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1fe0a065-e2fb-4c01-b0ab-98eef20e7459", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 117.98, + "width": 10.536, + "height": 10.536 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 13.732, + "y": 5.732, + "z": 5.78 + }, + "position3d": { + "x": 13.732, + "y": 5.732, + "z": 5.78 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 10.536, + "size_y": 10.536, + "size_z": 117.98, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 15000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C1_volume_tracker", + "max_volume": 15000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 13.732, + "y": 5.732, + "z": 5.78 + } + }, + { + "id": "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_acrylic_A2", + "uuid": "35c115c7-eb4a-4474-8181-0df50eaad11f", + "name": "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_acrylic_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1fe0a065-e2fb-4c01-b0ab-98eef20e7459", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 117.98, + "width": 10.536, + "height": 10.536 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 36.732, + "y": 68.732, + "z": 5.78 + }, + "position3d": { + "x": 36.732, + "y": 68.732, + "z": 5.78 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 10.536, + "size_y": 10.536, + "size_z": 117.98, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 15000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A2_volume_tracker", + "max_volume": 15000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 36.732, + "y": 68.732, + "z": 5.78 + } + }, + { + "id": "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_acrylic_B2", + "uuid": "c712f69a-b5db-4eed-abda-4b0b5cc6d996", + "name": "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_acrylic_B2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1fe0a065-e2fb-4c01-b0ab-98eef20e7459", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 117.98, + "width": 10.536, + "height": 10.536 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 36.732, + "y": 37.232, + "z": 5.78 + }, + "position3d": { + "x": 36.732, + "y": 37.232, + "z": 5.78 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 10.536, + "size_y": 10.536, + "size_z": 117.98, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 15000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B2_volume_tracker", + "max_volume": 15000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 36.732, + "y": 37.232, + "z": 5.78 + } + }, + { + "id": "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_acrylic_C2", + "uuid": "ae1c0928-b0bb-4b1d-abf4-29e82495a0f4", + "name": "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_acrylic_C2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1fe0a065-e2fb-4c01-b0ab-98eef20e7459", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 117.98, + "width": 10.536, + "height": 10.536 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 36.732, + "y": 5.732, + "z": 5.78 + }, + "position3d": { + "x": 36.732, + "y": 5.732, + "z": 5.78 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 10.536, + "size_y": 10.536, + "size_z": 117.98, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 15000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C2_volume_tracker", + "max_volume": 15000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 36.732, + "y": 5.732, + "z": 5.78 + } + }, + { + "id": "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_acrylic_A3", + "uuid": "a11b4438-ac71-4a1e-8e27-99e7a54e3ae0", + "name": "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_acrylic_A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1fe0a065-e2fb-4c01-b0ab-98eef20e7459", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 113.85, + "width": 19.665, + "height": 19.665 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 60.3675, + "y": 52.3675, + "z": 5.95 + }, + "position3d": { + "x": 60.3675, + "y": 52.3675, + "z": 5.95 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 19.665, + "size_y": 19.665, + "size_z": 113.85, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A3_volume_tracker", + "max_volume": 50000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 60.3675, + "y": 52.3675, + "z": 5.95 + } + }, + { + "id": "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_acrylic_B3", + "uuid": "daa582e4-4bc9-4fa9-9f8b-d03de781846c", + "name": "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_acrylic_B3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1fe0a065-e2fb-4c01-b0ab-98eef20e7459", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 113.85, + "width": 19.665, + "height": 19.665 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 60.3675, + "y": 6.9675, + "z": 5.95 + }, + "position3d": { + "x": 60.3675, + "y": 6.9675, + "z": 5.95 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 19.665, + "size_y": 19.665, + "size_z": 113.85, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B3_volume_tracker", + "max_volume": 50000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 60.3675, + "y": 6.9675, + "z": 5.95 + } + }, + { + "id": "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_acrylic_A4", + "uuid": "783025bd-cd75-4192-8acf-416aed3a87b7", + "name": "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_acrylic_A4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1fe0a065-e2fb-4c01-b0ab-98eef20e7459", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 113.85, + "width": 19.665, + "height": 19.665 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 96.2675, + "y": 52.3675, + "z": 5.95 + }, + "position3d": { + "x": 96.2675, + "y": 52.3675, + "z": 5.95 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 19.665, + "size_y": 19.665, + "size_z": 113.85, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A4_volume_tracker", + "max_volume": 50000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 96.2675, + "y": 52.3675, + "z": 5.95 + } + }, + { + "id": "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_acrylic_B4", + "uuid": "baa357e3-f0ef-4f51-a045-8e2e1f6ea0bb", + "name": "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_acrylic_B4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1fe0a065-e2fb-4c01-b0ab-98eef20e7459", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 113.85, + "width": 19.665, + "height": 19.665 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 96.2675, + "y": 6.9675, + "z": 5.95 + }, + "position3d": { + "x": 96.2675, + "y": 6.9675, + "z": 5.95 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 19.665, + "size_y": 19.665, + "size_z": 113.85, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B4_volume_tracker", + "max_volume": 50000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 96.2675, + "y": 6.9675, + "z": 5.95 + } + } + ] + }, + { + "id": "opentrons_10_tuberack_nest_4x50ml_6x15ml_conical", + "category": [ + "tube_racks" + ], + "class": { + "module": "pylabrobot.resources.opentrons.tube_racks:opentrons_10_tuberack_nest_4x50ml_6x15ml_conical", + "type": "pylabrobot" + }, + "description": "Opentrons 10 tuberack nest 4x50ml 6x15ml conical", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/opentrons/tube_racks.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "opentrons_10_tuberack_nest_4x50ml_6x15ml_conical", + "uuid": "8c685cc4-9894-4fe5-9017-c6c440c9b53b", + "name": "opentrons_10_tuberack_nest_4x50ml_6x15ml_conical", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "", + "class": "", + "pose": { + "size": { + "depth": 124.65, + "width": 127.76, + "height": 85.48 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TubeRack", + "size_x": 127.76, + "size_y": 85.48, + "size_z": 124.65, + "category": null, + "model": "Opentrons 10 Tube Rack with NEST 4x50 mL, 6x15 mL Conical", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "opentrons_10_tuberack_nest_4x50ml_6x15ml_conical_A1", + "B1": "opentrons_10_tuberack_nest_4x50ml_6x15ml_conical_B1", + "C1": "opentrons_10_tuberack_nest_4x50ml_6x15ml_conical_C1", + "A2": "opentrons_10_tuberack_nest_4x50ml_6x15ml_conical_A2", + "B2": "opentrons_10_tuberack_nest_4x50ml_6x15ml_conical_B2", + "C2": "opentrons_10_tuberack_nest_4x50ml_6x15ml_conical_C2", + "A3": "opentrons_10_tuberack_nest_4x50ml_6x15ml_conical_A3", + "B3": "opentrons_10_tuberack_nest_4x50ml_6x15ml_conical_B3", + "A4": "opentrons_10_tuberack_nest_4x50ml_6x15ml_conical_A4", + "B4": "opentrons_10_tuberack_nest_4x50ml_6x15ml_conical_B4" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "opentrons_10_tuberack_nest_4x50ml_6x15ml_conical_A1", + "uuid": "887a19f9-f414-43f4-9c0e-d7b0ad98ef0e", + "name": "opentrons_10_tuberack_nest_4x50ml_6x15ml_conical_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8c685cc4-9894-4fe5-9017-c6c440c9b53b", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 117.8, + "width": 10.96, + "height": 10.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 8.4, + "y": 62.27, + "z": 6.85 + }, + "position3d": { + "x": 8.4, + "y": 62.27, + "z": 6.85 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 10.96, + "size_y": 10.96, + "size_z": 117.8, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 8.4, + "y": 62.27, + "z": 6.85 + } + }, + { + "id": "opentrons_10_tuberack_nest_4x50ml_6x15ml_conical_B1", + "uuid": "264989a8-e678-427e-b9fe-bd3acec9559e", + "name": "opentrons_10_tuberack_nest_4x50ml_6x15ml_conical_B1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8c685cc4-9894-4fe5-9017-c6c440c9b53b", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 117.8, + "width": 10.96, + "height": 10.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 8.4, + "y": 37.27, + "z": 6.85 + }, + "position3d": { + "x": 8.4, + "y": 37.27, + "z": 6.85 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 10.96, + "size_y": 10.96, + "size_z": 117.8, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 8.4, + "y": 37.27, + "z": 6.85 + } + }, + { + "id": "opentrons_10_tuberack_nest_4x50ml_6x15ml_conical_C1", + "uuid": "fec725eb-7c44-4f58-8f13-37865645753b", + "name": "opentrons_10_tuberack_nest_4x50ml_6x15ml_conical_C1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8c685cc4-9894-4fe5-9017-c6c440c9b53b", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 117.8, + "width": 10.96, + "height": 10.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 8.4, + "y": 12.27, + "z": 6.85 + }, + "position3d": { + "x": 8.4, + "y": 12.27, + "z": 6.85 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 10.96, + "size_y": 10.96, + "size_z": 117.8, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 8.4, + "y": 12.27, + "z": 6.85 + } + }, + { + "id": "opentrons_10_tuberack_nest_4x50ml_6x15ml_conical_A2", + "uuid": "49af2294-7ad0-4fba-80f9-529236f9b84f", + "name": "opentrons_10_tuberack_nest_4x50ml_6x15ml_conical_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8c685cc4-9894-4fe5-9017-c6c440c9b53b", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 117.8, + "width": 10.96, + "height": 10.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 33.4, + "y": 62.27, + "z": 6.85 + }, + "position3d": { + "x": 33.4, + "y": 62.27, + "z": 6.85 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 10.96, + "size_y": 10.96, + "size_z": 117.8, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 33.4, + "y": 62.27, + "z": 6.85 + } + }, + { + "id": "opentrons_10_tuberack_nest_4x50ml_6x15ml_conical_B2", + "uuid": "59dbdd0e-34ff-4d2d-b48d-6efd2a0a6d25", + "name": "opentrons_10_tuberack_nest_4x50ml_6x15ml_conical_B2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8c685cc4-9894-4fe5-9017-c6c440c9b53b", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 117.8, + "width": 10.96, + "height": 10.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 33.4, + "y": 37.27, + "z": 6.85 + }, + "position3d": { + "x": 33.4, + "y": 37.27, + "z": 6.85 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 10.96, + "size_y": 10.96, + "size_z": 117.8, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 33.4, + "y": 37.27, + "z": 6.85 + } + }, + { + "id": "opentrons_10_tuberack_nest_4x50ml_6x15ml_conical_C2", + "uuid": "161e68c4-97d2-4231-a22e-aae15473e89b", + "name": "opentrons_10_tuberack_nest_4x50ml_6x15ml_conical_C2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8c685cc4-9894-4fe5-9017-c6c440c9b53b", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 117.8, + "width": 10.96, + "height": 10.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 33.4, + "y": 12.27, + "z": 6.85 + }, + "position3d": { + "x": 33.4, + "y": 12.27, + "z": 6.85 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 10.96, + "size_y": 10.96, + "size_z": 117.8, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 33.4, + "y": 12.27, + "z": 6.85 + } + }, + { + "id": "opentrons_10_tuberack_nest_4x50ml_6x15ml_conical_A3", + "uuid": "b6ccdc1f-c280-44ac-ac05-c58f05ada986", + "name": "opentrons_10_tuberack_nest_4x50ml_6x15ml_conical_A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8c685cc4-9894-4fe5-9017-c6c440c9b53b", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 113.05, + "width": 19.764, + "height": 19.764 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 61.498, + "y": 50.368, + "z": 7.3 + }, + "position3d": { + "x": 61.498, + "y": 50.368, + "z": 7.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 19.764, + "size_y": 19.764, + "size_z": 113.05, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 61.498, + "y": 50.368, + "z": 7.3 + } + }, + { + "id": "opentrons_10_tuberack_nest_4x50ml_6x15ml_conical_B3", + "uuid": "e813d015-fd6a-4e0e-9c05-4b5e56972e9c", + "name": "opentrons_10_tuberack_nest_4x50ml_6x15ml_conical_B3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8c685cc4-9894-4fe5-9017-c6c440c9b53b", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 113.05, + "width": 19.764, + "height": 19.764 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 61.498, + "y": 15.368, + "z": 7.3 + }, + "position3d": { + "x": 61.498, + "y": 15.368, + "z": 7.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 19.764, + "size_y": 19.764, + "size_z": 113.05, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 61.498, + "y": 15.368, + "z": 7.3 + } + }, + { + "id": "opentrons_10_tuberack_nest_4x50ml_6x15ml_conical_A4", + "uuid": "e9afdc4e-0f4c-4b51-9e22-868bbf8742af", + "name": "opentrons_10_tuberack_nest_4x50ml_6x15ml_conical_A4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8c685cc4-9894-4fe5-9017-c6c440c9b53b", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 113.05, + "width": 19.764, + "height": 19.764 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 96.498, + "y": 50.368, + "z": 7.3 + }, + "position3d": { + "x": 96.498, + "y": 50.368, + "z": 7.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 19.764, + "size_y": 19.764, + "size_z": 113.05, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 96.498, + "y": 50.368, + "z": 7.3 + } + }, + { + "id": "opentrons_10_tuberack_nest_4x50ml_6x15ml_conical_B4", + "uuid": "c4628b5d-6d61-4246-b3d9-f43d6aa8e07d", + "name": "opentrons_10_tuberack_nest_4x50ml_6x15ml_conical_B4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8c685cc4-9894-4fe5-9017-c6c440c9b53b", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 113.05, + "width": 19.764, + "height": 19.764 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 96.498, + "y": 15.368, + "z": 7.3 + }, + "position3d": { + "x": 96.498, + "y": 15.368, + "z": 7.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 19.764, + "size_y": 19.764, + "size_z": 113.05, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 96.498, + "y": 15.368, + "z": 7.3 + } + } + ] + }, + { + "id": "opentrons_15_tuberack_falcon_15ml_conical", + "category": [ + "tube_racks" + ], + "class": { + "module": "pylabrobot.resources.opentrons.tube_racks:opentrons_15_tuberack_falcon_15ml_conical", + "type": "pylabrobot" + }, + "description": "Opentrons 15 tuberack falcon 15ml conical", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/opentrons/tube_racks.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "opentrons_15_tuberack_falcon_15ml_conical", + "uuid": "eaa9f5a6-781e-4d7b-8b31-ab56c0dc22f8", + "name": "opentrons_15_tuberack_falcon_15ml_conical", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "", + "class": "", + "pose": { + "size": { + "depth": 124.35, + "width": 127.76, + "height": 85.48 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TubeRack", + "size_x": 127.76, + "size_y": 85.48, + "size_z": 124.35, + "category": null, + "model": "Opentrons 15 Tube Rack with Falcon 15 mL Conical", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "opentrons_15_tuberack_falcon_15ml_conical_A1", + "B1": "opentrons_15_tuberack_falcon_15ml_conical_B1", + "C1": "opentrons_15_tuberack_falcon_15ml_conical_C1", + "A2": "opentrons_15_tuberack_falcon_15ml_conical_A2", + "B2": "opentrons_15_tuberack_falcon_15ml_conical_B2", + "C2": "opentrons_15_tuberack_falcon_15ml_conical_C2", + "A3": "opentrons_15_tuberack_falcon_15ml_conical_A3", + "B3": "opentrons_15_tuberack_falcon_15ml_conical_B3", + "C3": "opentrons_15_tuberack_falcon_15ml_conical_C3", + "A4": "opentrons_15_tuberack_falcon_15ml_conical_A4", + "B4": "opentrons_15_tuberack_falcon_15ml_conical_B4", + "C4": "opentrons_15_tuberack_falcon_15ml_conical_C4", + "A5": "opentrons_15_tuberack_falcon_15ml_conical_A5", + "B5": "opentrons_15_tuberack_falcon_15ml_conical_B5", + "C5": "opentrons_15_tuberack_falcon_15ml_conical_C5" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "opentrons_15_tuberack_falcon_15ml_conical_A1", + "uuid": "c11a022b-ba59-4518-a578-b2ffabf81599", + "name": "opentrons_15_tuberack_falcon_15ml_conical_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "eaa9f5a6-781e-4d7b-8b31-ab56c0dc22f8", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 117.5, + "width": 10.536, + "height": 10.536 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 8.612, + "y": 62.472, + "z": 6.85 + }, + "position3d": { + "x": 8.612, + "y": 62.472, + "z": 6.85 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 10.536, + "size_y": 10.536, + "size_z": 117.5, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 8.612, + "y": 62.472, + "z": 6.85 + } + }, + { + "id": "opentrons_15_tuberack_falcon_15ml_conical_B1", + "uuid": "55446c4d-5872-433e-9253-2b7b9a33627b", + "name": "opentrons_15_tuberack_falcon_15ml_conical_B1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "eaa9f5a6-781e-4d7b-8b31-ab56c0dc22f8", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 117.5, + "width": 10.536, + "height": 10.536 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 8.612, + "y": 37.472, + "z": 6.85 + }, + "position3d": { + "x": 8.612, + "y": 37.472, + "z": 6.85 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 10.536, + "size_y": 10.536, + "size_z": 117.5, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 8.612, + "y": 37.472, + "z": 6.85 + } + }, + { + "id": "opentrons_15_tuberack_falcon_15ml_conical_C1", + "uuid": "39d3b535-c952-4476-9219-2e64ed6d27c8", + "name": "opentrons_15_tuberack_falcon_15ml_conical_C1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "eaa9f5a6-781e-4d7b-8b31-ab56c0dc22f8", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 117.5, + "width": 10.536, + "height": 10.536 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 8.612, + "y": 12.472, + "z": 6.85 + }, + "position3d": { + "x": 8.612, + "y": 12.472, + "z": 6.85 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 10.536, + "size_y": 10.536, + "size_z": 117.5, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 8.612, + "y": 12.472, + "z": 6.85 + } + }, + { + "id": "opentrons_15_tuberack_falcon_15ml_conical_A2", + "uuid": "60877344-fa12-4317-850a-0b5354bcc503", + "name": "opentrons_15_tuberack_falcon_15ml_conical_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "eaa9f5a6-781e-4d7b-8b31-ab56c0dc22f8", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 117.5, + "width": 10.536, + "height": 10.536 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 33.612, + "y": 62.472, + "z": 6.85 + }, + "position3d": { + "x": 33.612, + "y": 62.472, + "z": 6.85 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 10.536, + "size_y": 10.536, + "size_z": 117.5, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 33.612, + "y": 62.472, + "z": 6.85 + } + }, + { + "id": "opentrons_15_tuberack_falcon_15ml_conical_B2", + "uuid": "478ad79a-77b5-4266-8ed1-1b8527d0db44", + "name": "opentrons_15_tuberack_falcon_15ml_conical_B2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "eaa9f5a6-781e-4d7b-8b31-ab56c0dc22f8", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 117.5, + "width": 10.536, + "height": 10.536 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 33.612, + "y": 37.472, + "z": 6.85 + }, + "position3d": { + "x": 33.612, + "y": 37.472, + "z": 6.85 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 10.536, + "size_y": 10.536, + "size_z": 117.5, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 33.612, + "y": 37.472, + "z": 6.85 + } + }, + { + "id": "opentrons_15_tuberack_falcon_15ml_conical_C2", + "uuid": "ba5b9a2b-9c3c-43a4-b55d-a4a4af920656", + "name": "opentrons_15_tuberack_falcon_15ml_conical_C2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "eaa9f5a6-781e-4d7b-8b31-ab56c0dc22f8", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 117.5, + "width": 10.536, + "height": 10.536 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 33.612, + "y": 12.472, + "z": 6.85 + }, + "position3d": { + "x": 33.612, + "y": 12.472, + "z": 6.85 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 10.536, + "size_y": 10.536, + "size_z": 117.5, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 33.612, + "y": 12.472, + "z": 6.85 + } + }, + { + "id": "opentrons_15_tuberack_falcon_15ml_conical_A3", + "uuid": "d1136476-b203-4be7-88c8-afd18c0b32cf", + "name": "opentrons_15_tuberack_falcon_15ml_conical_A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "eaa9f5a6-781e-4d7b-8b31-ab56c0dc22f8", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 117.5, + "width": 10.536, + "height": 10.536 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 58.612, + "y": 62.472, + "z": 6.85 + }, + "position3d": { + "x": 58.612, + "y": 62.472, + "z": 6.85 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 10.536, + "size_y": 10.536, + "size_z": 117.5, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 58.612, + "y": 62.472, + "z": 6.85 + } + }, + { + "id": "opentrons_15_tuberack_falcon_15ml_conical_B3", + "uuid": "e731e135-2f9d-4894-82f4-7cb99a57e655", + "name": "opentrons_15_tuberack_falcon_15ml_conical_B3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "eaa9f5a6-781e-4d7b-8b31-ab56c0dc22f8", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 117.5, + "width": 10.536, + "height": 10.536 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 58.612, + "y": 37.472, + "z": 6.85 + }, + "position3d": { + "x": 58.612, + "y": 37.472, + "z": 6.85 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 10.536, + "size_y": 10.536, + "size_z": 117.5, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 58.612, + "y": 37.472, + "z": 6.85 + } + }, + { + "id": "opentrons_15_tuberack_falcon_15ml_conical_C3", + "uuid": "ed05bf49-0959-4454-bcf7-889f35a4ce6f", + "name": "opentrons_15_tuberack_falcon_15ml_conical_C3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "eaa9f5a6-781e-4d7b-8b31-ab56c0dc22f8", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 117.5, + "width": 10.536, + "height": 10.536 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 58.612, + "y": 12.472, + "z": 6.85 + }, + "position3d": { + "x": 58.612, + "y": 12.472, + "z": 6.85 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 10.536, + "size_y": 10.536, + "size_z": 117.5, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 58.612, + "y": 12.472, + "z": 6.85 + } + }, + { + "id": "opentrons_15_tuberack_falcon_15ml_conical_A4", + "uuid": "3dc4f132-1cd0-4e4f-8cad-e3308485cf26", + "name": "opentrons_15_tuberack_falcon_15ml_conical_A4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "eaa9f5a6-781e-4d7b-8b31-ab56c0dc22f8", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 117.5, + "width": 10.536, + "height": 10.536 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.612, + "y": 62.472, + "z": 6.85 + }, + "position3d": { + "x": 83.612, + "y": 62.472, + "z": 6.85 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 10.536, + "size_y": 10.536, + "size_z": 117.5, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.612, + "y": 62.472, + "z": 6.85 + } + }, + { + "id": "opentrons_15_tuberack_falcon_15ml_conical_B4", + "uuid": "2e0a1846-f239-440d-8967-644db8942ae0", + "name": "opentrons_15_tuberack_falcon_15ml_conical_B4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "eaa9f5a6-781e-4d7b-8b31-ab56c0dc22f8", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 117.5, + "width": 10.536, + "height": 10.536 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.612, + "y": 37.472, + "z": 6.85 + }, + "position3d": { + "x": 83.612, + "y": 37.472, + "z": 6.85 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 10.536, + "size_y": 10.536, + "size_z": 117.5, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.612, + "y": 37.472, + "z": 6.85 + } + }, + { + "id": "opentrons_15_tuberack_falcon_15ml_conical_C4", + "uuid": "b5a6cd7d-5247-4519-9f1b-c9b08cc43cf1", + "name": "opentrons_15_tuberack_falcon_15ml_conical_C4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "eaa9f5a6-781e-4d7b-8b31-ab56c0dc22f8", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 117.5, + "width": 10.536, + "height": 10.536 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.612, + "y": 12.472, + "z": 6.85 + }, + "position3d": { + "x": 83.612, + "y": 12.472, + "z": 6.85 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 10.536, + "size_y": 10.536, + "size_z": 117.5, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.612, + "y": 12.472, + "z": 6.85 + } + }, + { + "id": "opentrons_15_tuberack_falcon_15ml_conical_A5", + "uuid": "e0ab0856-7bbc-437d-8b64-e178db0d6d60", + "name": "opentrons_15_tuberack_falcon_15ml_conical_A5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "eaa9f5a6-781e-4d7b-8b31-ab56c0dc22f8", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 117.5, + "width": 10.536, + "height": 10.536 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 108.612, + "y": 62.472, + "z": 6.85 + }, + "position3d": { + "x": 108.612, + "y": 62.472, + "z": 6.85 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 10.536, + "size_y": 10.536, + "size_z": 117.5, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 108.612, + "y": 62.472, + "z": 6.85 + } + }, + { + "id": "opentrons_15_tuberack_falcon_15ml_conical_B5", + "uuid": "a4fd6069-9a32-4579-8db5-faae01df1ccf", + "name": "opentrons_15_tuberack_falcon_15ml_conical_B5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "eaa9f5a6-781e-4d7b-8b31-ab56c0dc22f8", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 117.5, + "width": 10.536, + "height": 10.536 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 108.612, + "y": 37.472, + "z": 6.85 + }, + "position3d": { + "x": 108.612, + "y": 37.472, + "z": 6.85 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 10.536, + "size_y": 10.536, + "size_z": 117.5, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 108.612, + "y": 37.472, + "z": 6.85 + } + }, + { + "id": "opentrons_15_tuberack_falcon_15ml_conical_C5", + "uuid": "f7a55161-4210-45e4-819f-b4a91e144212", + "name": "opentrons_15_tuberack_falcon_15ml_conical_C5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "eaa9f5a6-781e-4d7b-8b31-ab56c0dc22f8", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 117.5, + "width": 10.536, + "height": 10.536 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 108.612, + "y": 12.472, + "z": 6.85 + }, + "position3d": { + "x": 108.612, + "y": 12.472, + "z": 6.85 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 10.536, + "size_y": 10.536, + "size_z": 117.5, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 108.612, + "y": 12.472, + "z": 6.85 + } + } + ] + }, + { + "id": "opentrons_15_tuberack_nest_15ml_conical", + "category": [ + "tube_racks" + ], + "class": { + "module": "pylabrobot.resources.opentrons.tube_racks:opentrons_15_tuberack_nest_15ml_conical", + "type": "pylabrobot" + }, + "description": "Opentrons 15 tuberack nest 15ml conical", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/opentrons/tube_racks.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "opentrons_15_tuberack_nest_15ml_conical", + "uuid": "06932bbc-b817-4221-a270-4ebc8cebbd78", + "name": "opentrons_15_tuberack_nest_15ml_conical", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "", + "class": "", + "pose": { + "size": { + "depth": 124.65, + "width": 127.76, + "height": 85.48 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TubeRack", + "size_x": 127.76, + "size_y": 85.48, + "size_z": 124.65, + "category": null, + "model": "Opentrons 15 Tube Rack with NEST 15 mL Conical", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "opentrons_15_tuberack_nest_15ml_conical_A1", + "B1": "opentrons_15_tuberack_nest_15ml_conical_B1", + "C1": "opentrons_15_tuberack_nest_15ml_conical_C1", + "A2": "opentrons_15_tuberack_nest_15ml_conical_A2", + "B2": "opentrons_15_tuberack_nest_15ml_conical_B2", + "C2": "opentrons_15_tuberack_nest_15ml_conical_C2", + "A3": "opentrons_15_tuberack_nest_15ml_conical_A3", + "B3": "opentrons_15_tuberack_nest_15ml_conical_B3", + "C3": "opentrons_15_tuberack_nest_15ml_conical_C3", + "A4": "opentrons_15_tuberack_nest_15ml_conical_A4", + "B4": "opentrons_15_tuberack_nest_15ml_conical_B4", + "C4": "opentrons_15_tuberack_nest_15ml_conical_C4", + "A5": "opentrons_15_tuberack_nest_15ml_conical_A5", + "B5": "opentrons_15_tuberack_nest_15ml_conical_B5", + "C5": "opentrons_15_tuberack_nest_15ml_conical_C5" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "opentrons_15_tuberack_nest_15ml_conical_A1", + "uuid": "5b1e8931-b2b4-4f3b-91c5-c9f5432b18aa", + "name": "opentrons_15_tuberack_nest_15ml_conical_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "06932bbc-b817-4221-a270-4ebc8cebbd78", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 117.8, + "width": 10.96, + "height": 10.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 8.4, + "y": 62.26, + "z": 6.85 + }, + "position3d": { + "x": 8.4, + "y": 62.26, + "z": 6.85 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 10.96, + "size_y": 10.96, + "size_z": 117.8, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 8.4, + "y": 62.26, + "z": 6.85 + } + }, + { + "id": "opentrons_15_tuberack_nest_15ml_conical_B1", + "uuid": "442dd1ae-60cd-40d8-8d9b-45df6677c5db", + "name": "opentrons_15_tuberack_nest_15ml_conical_B1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "06932bbc-b817-4221-a270-4ebc8cebbd78", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 117.8, + "width": 10.96, + "height": 10.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 8.4, + "y": 37.26, + "z": 6.85 + }, + "position3d": { + "x": 8.4, + "y": 37.26, + "z": 6.85 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 10.96, + "size_y": 10.96, + "size_z": 117.8, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 8.4, + "y": 37.26, + "z": 6.85 + } + }, + { + "id": "opentrons_15_tuberack_nest_15ml_conical_C1", + "uuid": "d3d0fea6-98b7-4b4d-af62-046e620601b6", + "name": "opentrons_15_tuberack_nest_15ml_conical_C1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "06932bbc-b817-4221-a270-4ebc8cebbd78", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 117.8, + "width": 10.96, + "height": 10.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 8.4, + "y": 12.26, + "z": 6.85 + }, + "position3d": { + "x": 8.4, + "y": 12.26, + "z": 6.85 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 10.96, + "size_y": 10.96, + "size_z": 117.8, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 8.4, + "y": 12.26, + "z": 6.85 + } + }, + { + "id": "opentrons_15_tuberack_nest_15ml_conical_A2", + "uuid": "ca180a21-b4c6-44c3-ad2f-d3434173f88d", + "name": "opentrons_15_tuberack_nest_15ml_conical_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "06932bbc-b817-4221-a270-4ebc8cebbd78", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 117.8, + "width": 10.96, + "height": 10.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 33.4, + "y": 62.26, + "z": 6.85 + }, + "position3d": { + "x": 33.4, + "y": 62.26, + "z": 6.85 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 10.96, + "size_y": 10.96, + "size_z": 117.8, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 33.4, + "y": 62.26, + "z": 6.85 + } + }, + { + "id": "opentrons_15_tuberack_nest_15ml_conical_B2", + "uuid": "f5299438-686c-47ae-aa6b-4fb99be93f13", + "name": "opentrons_15_tuberack_nest_15ml_conical_B2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "06932bbc-b817-4221-a270-4ebc8cebbd78", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 117.8, + "width": 10.96, + "height": 10.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 33.4, + "y": 37.26, + "z": 6.85 + }, + "position3d": { + "x": 33.4, + "y": 37.26, + "z": 6.85 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 10.96, + "size_y": 10.96, + "size_z": 117.8, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 33.4, + "y": 37.26, + "z": 6.85 + } + }, + { + "id": "opentrons_15_tuberack_nest_15ml_conical_C2", + "uuid": "96fa592c-7e9d-41ad-a28e-f3075ff4f5d8", + "name": "opentrons_15_tuberack_nest_15ml_conical_C2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "06932bbc-b817-4221-a270-4ebc8cebbd78", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 117.8, + "width": 10.96, + "height": 10.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 33.4, + "y": 12.26, + "z": 6.85 + }, + "position3d": { + "x": 33.4, + "y": 12.26, + "z": 6.85 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 10.96, + "size_y": 10.96, + "size_z": 117.8, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 33.4, + "y": 12.26, + "z": 6.85 + } + }, + { + "id": "opentrons_15_tuberack_nest_15ml_conical_A3", + "uuid": "d256e103-ae41-48c1-bf73-7d420f2df007", + "name": "opentrons_15_tuberack_nest_15ml_conical_A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "06932bbc-b817-4221-a270-4ebc8cebbd78", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 117.8, + "width": 10.96, + "height": 10.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 58.4, + "y": 62.26, + "z": 6.85 + }, + "position3d": { + "x": 58.4, + "y": 62.26, + "z": 6.85 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 10.96, + "size_y": 10.96, + "size_z": 117.8, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 58.4, + "y": 62.26, + "z": 6.85 + } + }, + { + "id": "opentrons_15_tuberack_nest_15ml_conical_B3", + "uuid": "cdd273b1-4aa1-47f0-bfca-346a29bd0cd9", + "name": "opentrons_15_tuberack_nest_15ml_conical_B3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "06932bbc-b817-4221-a270-4ebc8cebbd78", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 117.8, + "width": 10.96, + "height": 10.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 58.4, + "y": 37.26, + "z": 6.85 + }, + "position3d": { + "x": 58.4, + "y": 37.26, + "z": 6.85 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 10.96, + "size_y": 10.96, + "size_z": 117.8, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 58.4, + "y": 37.26, + "z": 6.85 + } + }, + { + "id": "opentrons_15_tuberack_nest_15ml_conical_C3", + "uuid": "bb8ab100-0d13-41e6-9f6f-20eefb569505", + "name": "opentrons_15_tuberack_nest_15ml_conical_C3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "06932bbc-b817-4221-a270-4ebc8cebbd78", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 117.8, + "width": 10.96, + "height": 10.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 58.4, + "y": 12.26, + "z": 6.85 + }, + "position3d": { + "x": 58.4, + "y": 12.26, + "z": 6.85 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 10.96, + "size_y": 10.96, + "size_z": 117.8, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 58.4, + "y": 12.26, + "z": 6.85 + } + }, + { + "id": "opentrons_15_tuberack_nest_15ml_conical_A4", + "uuid": "6a5e666f-e913-4562-a9ca-e91e01112de3", + "name": "opentrons_15_tuberack_nest_15ml_conical_A4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "06932bbc-b817-4221-a270-4ebc8cebbd78", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 117.8, + "width": 10.96, + "height": 10.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.4, + "y": 62.26, + "z": 6.85 + }, + "position3d": { + "x": 83.4, + "y": 62.26, + "z": 6.85 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 10.96, + "size_y": 10.96, + "size_z": 117.8, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.4, + "y": 62.26, + "z": 6.85 + } + }, + { + "id": "opentrons_15_tuberack_nest_15ml_conical_B4", + "uuid": "32ca374c-31b1-4f34-9f35-e906de906471", + "name": "opentrons_15_tuberack_nest_15ml_conical_B4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "06932bbc-b817-4221-a270-4ebc8cebbd78", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 117.8, + "width": 10.96, + "height": 10.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.4, + "y": 37.26, + "z": 6.85 + }, + "position3d": { + "x": 83.4, + "y": 37.26, + "z": 6.85 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 10.96, + "size_y": 10.96, + "size_z": 117.8, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.4, + "y": 37.26, + "z": 6.85 + } + }, + { + "id": "opentrons_15_tuberack_nest_15ml_conical_C4", + "uuid": "75fa701a-db3f-4885-abe6-05b0561bfb22", + "name": "opentrons_15_tuberack_nest_15ml_conical_C4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "06932bbc-b817-4221-a270-4ebc8cebbd78", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 117.8, + "width": 10.96, + "height": 10.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.4, + "y": 12.26, + "z": 6.85 + }, + "position3d": { + "x": 83.4, + "y": 12.26, + "z": 6.85 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 10.96, + "size_y": 10.96, + "size_z": 117.8, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.4, + "y": 12.26, + "z": 6.85 + } + }, + { + "id": "opentrons_15_tuberack_nest_15ml_conical_A5", + "uuid": "137cc366-0ca5-4dcb-b5ae-5931df9f7d43", + "name": "opentrons_15_tuberack_nest_15ml_conical_A5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "06932bbc-b817-4221-a270-4ebc8cebbd78", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 117.8, + "width": 10.96, + "height": 10.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 108.4, + "y": 62.26, + "z": 6.85 + }, + "position3d": { + "x": 108.4, + "y": 62.26, + "z": 6.85 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 10.96, + "size_y": 10.96, + "size_z": 117.8, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 108.4, + "y": 62.26, + "z": 6.85 + } + }, + { + "id": "opentrons_15_tuberack_nest_15ml_conical_B5", + "uuid": "d8acdae1-d09f-42b8-9ec0-c1b3ce0b3572", + "name": "opentrons_15_tuberack_nest_15ml_conical_B5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "06932bbc-b817-4221-a270-4ebc8cebbd78", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 117.8, + "width": 10.96, + "height": 10.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 108.4, + "y": 37.26, + "z": 6.85 + }, + "position3d": { + "x": 108.4, + "y": 37.26, + "z": 6.85 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 10.96, + "size_y": 10.96, + "size_z": 117.8, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 108.4, + "y": 37.26, + "z": 6.85 + } + }, + { + "id": "opentrons_15_tuberack_nest_15ml_conical_C5", + "uuid": "3449265e-eb94-46fa-9383-d4c3033177d9", + "name": "opentrons_15_tuberack_nest_15ml_conical_C5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "06932bbc-b817-4221-a270-4ebc8cebbd78", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 117.8, + "width": 10.96, + "height": 10.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 108.4, + "y": 12.26, + "z": 6.85 + }, + "position3d": { + "x": 108.4, + "y": 12.26, + "z": 6.85 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 10.96, + "size_y": 10.96, + "size_z": 117.8, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 108.4, + "y": 12.26, + "z": 6.85 + } + } + ] + }, + { + "id": "opentrons_24_aluminumblock_generic_2ml_screwcap", + "category": [ + "tube_racks" + ], + "class": { + "module": "pylabrobot.resources.opentrons.tube_racks:opentrons_24_aluminumblock_generic_2ml_screwcap", + "type": "pylabrobot" + }, + "description": "Opentrons 24 aluminumblock generic 2ml screwcap", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/opentrons/tube_racks.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "opentrons_24_aluminumblock_generic_2ml_screwcap", + "uuid": "0d048633-bdf5-47d3-a378-3ded7eae600e", + "name": "opentrons_24_aluminumblock_generic_2ml_screwcap", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 127.75, + "height": 85.5 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TubeRack", + "size_x": 127.75, + "size_y": 85.5, + "size_z": 42, + "category": null, + "model": "Opentrons 24 Well Aluminum Block with Generic 2 mL Screwcap", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "opentrons_24_aluminumblock_generic_2ml_screwcap_A1", + "B1": "opentrons_24_aluminumblock_generic_2ml_screwcap_B1", + "C1": "opentrons_24_aluminumblock_generic_2ml_screwcap_C1", + "D1": "opentrons_24_aluminumblock_generic_2ml_screwcap_D1", + "A2": "opentrons_24_aluminumblock_generic_2ml_screwcap_A2", + "B2": "opentrons_24_aluminumblock_generic_2ml_screwcap_B2", + "C2": "opentrons_24_aluminumblock_generic_2ml_screwcap_C2", + "D2": "opentrons_24_aluminumblock_generic_2ml_screwcap_D2", + "A3": "opentrons_24_aluminumblock_generic_2ml_screwcap_A3", + "B3": "opentrons_24_aluminumblock_generic_2ml_screwcap_B3", + "C3": "opentrons_24_aluminumblock_generic_2ml_screwcap_C3", + "D3": "opentrons_24_aluminumblock_generic_2ml_screwcap_D3", + "A4": "opentrons_24_aluminumblock_generic_2ml_screwcap_A4", + "B4": "opentrons_24_aluminumblock_generic_2ml_screwcap_B4", + "C4": "opentrons_24_aluminumblock_generic_2ml_screwcap_C4", + "D4": "opentrons_24_aluminumblock_generic_2ml_screwcap_D4", + "A5": "opentrons_24_aluminumblock_generic_2ml_screwcap_A5", + "B5": "opentrons_24_aluminumblock_generic_2ml_screwcap_B5", + "C5": "opentrons_24_aluminumblock_generic_2ml_screwcap_C5", + "D5": "opentrons_24_aluminumblock_generic_2ml_screwcap_D5", + "A6": "opentrons_24_aluminumblock_generic_2ml_screwcap_A6", + "B6": "opentrons_24_aluminumblock_generic_2ml_screwcap_B6", + "C6": "opentrons_24_aluminumblock_generic_2ml_screwcap_C6", + "D6": "opentrons_24_aluminumblock_generic_2ml_screwcap_D6" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "opentrons_24_aluminumblock_generic_2ml_screwcap_A1", + "uuid": "7463d02d-03d2-47c7-bfc3-69c3dd75f0da", + "name": "opentrons_24_aluminumblock_generic_2ml_screwcap_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0d048633-bdf5-47d3-a378-3ded7eae600e", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 17.745, + "y": 65.625, + "z": 6.7 + }, + "position3d": { + "x": 17.745, + "y": 65.625, + "z": 6.7 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 42, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 17.745, + "y": 65.625, + "z": 6.7 + } + }, + { + "id": "opentrons_24_aluminumblock_generic_2ml_screwcap_B1", + "uuid": "e2cf4571-c912-494c-b6d1-49b18f74be41", + "name": "opentrons_24_aluminumblock_generic_2ml_screwcap_B1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0d048633-bdf5-47d3-a378-3ded7eae600e", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 17.745, + "y": 48.375, + "z": 6.7 + }, + "position3d": { + "x": 17.745, + "y": 48.375, + "z": 6.7 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 42, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 17.745, + "y": 48.375, + "z": 6.7 + } + }, + { + "id": "opentrons_24_aluminumblock_generic_2ml_screwcap_C1", + "uuid": "f8c0e9c6-3cf1-492f-9c44-07db667e8e89", + "name": "opentrons_24_aluminumblock_generic_2ml_screwcap_C1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0d048633-bdf5-47d3-a378-3ded7eae600e", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 17.745, + "y": 31.125, + "z": 6.7 + }, + "position3d": { + "x": 17.745, + "y": 31.125, + "z": 6.7 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 42, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 17.745, + "y": 31.125, + "z": 6.7 + } + }, + { + "id": "opentrons_24_aluminumblock_generic_2ml_screwcap_D1", + "uuid": "ebc0bc3e-8f42-41a9-a6c6-376ec2d04a3c", + "name": "opentrons_24_aluminumblock_generic_2ml_screwcap_D1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0d048633-bdf5-47d3-a378-3ded7eae600e", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 17.745, + "y": 13.875, + "z": 6.7 + }, + "position3d": { + "x": 17.745, + "y": 13.875, + "z": 6.7 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 42, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 17.745, + "y": 13.875, + "z": 6.7 + } + }, + { + "id": "opentrons_24_aluminumblock_generic_2ml_screwcap_A2", + "uuid": "5984f18a-77ef-44ab-a9d6-1de84487d862", + "name": "opentrons_24_aluminumblock_generic_2ml_screwcap_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0d048633-bdf5-47d3-a378-3ded7eae600e", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 34.995, + "y": 65.625, + "z": 6.7 + }, + "position3d": { + "x": 34.995, + "y": 65.625, + "z": 6.7 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 42, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 34.995, + "y": 65.625, + "z": 6.7 + } + }, + { + "id": "opentrons_24_aluminumblock_generic_2ml_screwcap_B2", + "uuid": "49a1a03f-dcb9-4771-aaa6-4583452af7c0", + "name": "opentrons_24_aluminumblock_generic_2ml_screwcap_B2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0d048633-bdf5-47d3-a378-3ded7eae600e", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 34.995, + "y": 48.375, + "z": 6.7 + }, + "position3d": { + "x": 34.995, + "y": 48.375, + "z": 6.7 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 42, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 34.995, + "y": 48.375, + "z": 6.7 + } + }, + { + "id": "opentrons_24_aluminumblock_generic_2ml_screwcap_C2", + "uuid": "143854e9-726c-45ed-8eae-fda4a6c4bc2b", + "name": "opentrons_24_aluminumblock_generic_2ml_screwcap_C2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0d048633-bdf5-47d3-a378-3ded7eae600e", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 34.995, + "y": 31.125, + "z": 6.7 + }, + "position3d": { + "x": 34.995, + "y": 31.125, + "z": 6.7 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 42, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 34.995, + "y": 31.125, + "z": 6.7 + } + }, + { + "id": "opentrons_24_aluminumblock_generic_2ml_screwcap_D2", + "uuid": "5b4469fa-ba27-49e6-b6b0-91c6b0e13fd7", + "name": "opentrons_24_aluminumblock_generic_2ml_screwcap_D2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0d048633-bdf5-47d3-a378-3ded7eae600e", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 34.995, + "y": 13.875, + "z": 6.7 + }, + "position3d": { + "x": 34.995, + "y": 13.875, + "z": 6.7 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 42, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 34.995, + "y": 13.875, + "z": 6.7 + } + }, + { + "id": "opentrons_24_aluminumblock_generic_2ml_screwcap_A3", + "uuid": "3151075b-b18a-4d5e-836c-2ae743796d3b", + "name": "opentrons_24_aluminumblock_generic_2ml_screwcap_A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0d048633-bdf5-47d3-a378-3ded7eae600e", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 52.245, + "y": 65.625, + "z": 6.7 + }, + "position3d": { + "x": 52.245, + "y": 65.625, + "z": 6.7 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 42, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 52.245, + "y": 65.625, + "z": 6.7 + } + }, + { + "id": "opentrons_24_aluminumblock_generic_2ml_screwcap_B3", + "uuid": "3ef294e8-e11f-4312-b5d4-a133d5d09259", + "name": "opentrons_24_aluminumblock_generic_2ml_screwcap_B3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0d048633-bdf5-47d3-a378-3ded7eae600e", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 52.245, + "y": 48.375, + "z": 6.7 + }, + "position3d": { + "x": 52.245, + "y": 48.375, + "z": 6.7 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 42, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 52.245, + "y": 48.375, + "z": 6.7 + } + }, + { + "id": "opentrons_24_aluminumblock_generic_2ml_screwcap_C3", + "uuid": "5ca3ed96-560f-489d-8347-1035eb3e532a", + "name": "opentrons_24_aluminumblock_generic_2ml_screwcap_C3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0d048633-bdf5-47d3-a378-3ded7eae600e", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 52.245, + "y": 31.125, + "z": 6.7 + }, + "position3d": { + "x": 52.245, + "y": 31.125, + "z": 6.7 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 42, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 52.245, + "y": 31.125, + "z": 6.7 + } + }, + { + "id": "opentrons_24_aluminumblock_generic_2ml_screwcap_D3", + "uuid": "f7c1873c-46c7-4887-9006-9bdb73482a83", + "name": "opentrons_24_aluminumblock_generic_2ml_screwcap_D3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0d048633-bdf5-47d3-a378-3ded7eae600e", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 52.245, + "y": 13.875, + "z": 6.7 + }, + "position3d": { + "x": 52.245, + "y": 13.875, + "z": 6.7 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 42, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 52.245, + "y": 13.875, + "z": 6.7 + } + }, + { + "id": "opentrons_24_aluminumblock_generic_2ml_screwcap_A4", + "uuid": "5cf996df-3198-46c0-af5f-f76131c58ebd", + "name": "opentrons_24_aluminumblock_generic_2ml_screwcap_A4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0d048633-bdf5-47d3-a378-3ded7eae600e", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 69.495, + "y": 65.625, + "z": 6.7 + }, + "position3d": { + "x": 69.495, + "y": 65.625, + "z": 6.7 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 42, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 69.495, + "y": 65.625, + "z": 6.7 + } + }, + { + "id": "opentrons_24_aluminumblock_generic_2ml_screwcap_B4", + "uuid": "5af1f0c7-ebb6-4059-84d0-c841a9119f33", + "name": "opentrons_24_aluminumblock_generic_2ml_screwcap_B4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0d048633-bdf5-47d3-a378-3ded7eae600e", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 69.495, + "y": 48.375, + "z": 6.7 + }, + "position3d": { + "x": 69.495, + "y": 48.375, + "z": 6.7 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 42, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 69.495, + "y": 48.375, + "z": 6.7 + } + }, + { + "id": "opentrons_24_aluminumblock_generic_2ml_screwcap_C4", + "uuid": "4e85f78a-2cce-4383-9cf7-3c9a50f5898e", + "name": "opentrons_24_aluminumblock_generic_2ml_screwcap_C4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0d048633-bdf5-47d3-a378-3ded7eae600e", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 69.495, + "y": 31.125, + "z": 6.7 + }, + "position3d": { + "x": 69.495, + "y": 31.125, + "z": 6.7 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 42, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 69.495, + "y": 31.125, + "z": 6.7 + } + }, + { + "id": "opentrons_24_aluminumblock_generic_2ml_screwcap_D4", + "uuid": "7d31ffe7-0f27-4267-94ec-ad6c117bc163", + "name": "opentrons_24_aluminumblock_generic_2ml_screwcap_D4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0d048633-bdf5-47d3-a378-3ded7eae600e", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 69.495, + "y": 13.875, + "z": 6.7 + }, + "position3d": { + "x": 69.495, + "y": 13.875, + "z": 6.7 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 42, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 69.495, + "y": 13.875, + "z": 6.7 + } + }, + { + "id": "opentrons_24_aluminumblock_generic_2ml_screwcap_A5", + "uuid": "f14ce8f3-d07b-4653-ab54-c16915c2ef38", + "name": "opentrons_24_aluminumblock_generic_2ml_screwcap_A5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0d048633-bdf5-47d3-a378-3ded7eae600e", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 86.745, + "y": 65.625, + "z": 6.7 + }, + "position3d": { + "x": 86.745, + "y": 65.625, + "z": 6.7 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 42, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 86.745, + "y": 65.625, + "z": 6.7 + } + }, + { + "id": "opentrons_24_aluminumblock_generic_2ml_screwcap_B5", + "uuid": "ab7f5e45-7a85-4fa1-80db-ce01f591c808", + "name": "opentrons_24_aluminumblock_generic_2ml_screwcap_B5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0d048633-bdf5-47d3-a378-3ded7eae600e", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 86.745, + "y": 48.375, + "z": 6.7 + }, + "position3d": { + "x": 86.745, + "y": 48.375, + "z": 6.7 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 42, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 86.745, + "y": 48.375, + "z": 6.7 + } + }, + { + "id": "opentrons_24_aluminumblock_generic_2ml_screwcap_C5", + "uuid": "63c89147-0d66-4df6-a807-17c61e689171", + "name": "opentrons_24_aluminumblock_generic_2ml_screwcap_C5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0d048633-bdf5-47d3-a378-3ded7eae600e", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 86.745, + "y": 31.125, + "z": 6.7 + }, + "position3d": { + "x": 86.745, + "y": 31.125, + "z": 6.7 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 42, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 86.745, + "y": 31.125, + "z": 6.7 + } + }, + { + "id": "opentrons_24_aluminumblock_generic_2ml_screwcap_D5", + "uuid": "adc05ba3-8d17-4698-b9dd-a5f4d609d587", + "name": "opentrons_24_aluminumblock_generic_2ml_screwcap_D5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0d048633-bdf5-47d3-a378-3ded7eae600e", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 86.745, + "y": 13.875, + "z": 6.7 + }, + "position3d": { + "x": 86.745, + "y": 13.875, + "z": 6.7 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 42, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 86.745, + "y": 13.875, + "z": 6.7 + } + }, + { + "id": "opentrons_24_aluminumblock_generic_2ml_screwcap_A6", + "uuid": "cb759c62-1f36-4e73-8467-d807a2694361", + "name": "opentrons_24_aluminumblock_generic_2ml_screwcap_A6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0d048633-bdf5-47d3-a378-3ded7eae600e", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 103.995, + "y": 65.625, + "z": 6.7 + }, + "position3d": { + "x": 103.995, + "y": 65.625, + "z": 6.7 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 42, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 103.995, + "y": 65.625, + "z": 6.7 + } + }, + { + "id": "opentrons_24_aluminumblock_generic_2ml_screwcap_B6", + "uuid": "9e3ef8f7-0d15-4382-9440-156561c4b69b", + "name": "opentrons_24_aluminumblock_generic_2ml_screwcap_B6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0d048633-bdf5-47d3-a378-3ded7eae600e", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 103.995, + "y": 48.375, + "z": 6.7 + }, + "position3d": { + "x": 103.995, + "y": 48.375, + "z": 6.7 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 42, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 103.995, + "y": 48.375, + "z": 6.7 + } + }, + { + "id": "opentrons_24_aluminumblock_generic_2ml_screwcap_C6", + "uuid": "383453b6-af29-4968-afdd-a174f71114d3", + "name": "opentrons_24_aluminumblock_generic_2ml_screwcap_C6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0d048633-bdf5-47d3-a378-3ded7eae600e", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 103.995, + "y": 31.125, + "z": 6.7 + }, + "position3d": { + "x": 103.995, + "y": 31.125, + "z": 6.7 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 42, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 103.995, + "y": 31.125, + "z": 6.7 + } + }, + { + "id": "opentrons_24_aluminumblock_generic_2ml_screwcap_D6", + "uuid": "b75fa366-a8fd-4187-8d5f-dad31fdb2dd8", + "name": "opentrons_24_aluminumblock_generic_2ml_screwcap_D6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0d048633-bdf5-47d3-a378-3ded7eae600e", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 103.995, + "y": 13.875, + "z": 6.7 + }, + "position3d": { + "x": 103.995, + "y": 13.875, + "z": 6.7 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 42, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 103.995, + "y": 13.875, + "z": 6.7 + } + } + ] + }, + { + "id": "opentrons_24_aluminumblock_nest_1point5ml_snapcap", + "category": [ + "tube_racks" + ], + "class": { + "module": "pylabrobot.resources.opentrons.tube_racks:opentrons_24_aluminumblock_nest_1point5ml_snapcap", + "type": "pylabrobot" + }, + "description": "Opentrons 24 aluminumblock nest 1.5ml snapcap", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/opentrons/tube_racks.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "opentrons_24_aluminumblock_nest_1point5ml_snapcap", + "uuid": "fadecb2a-9d3b-47dd-bb1d-04ac6e7597ab", + "name": "opentrons_24_aluminumblock_nest_1point5ml_snapcap", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "", + "class": "", + "pose": { + "size": { + "depth": 43.7, + "width": 127.75, + "height": 85.5 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TubeRack", + "size_x": 127.75, + "size_y": 85.5, + "size_z": 43.7, + "category": null, + "model": "Opentrons 24 Well Aluminum Block with NEST 1.5 mL Snapcap", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "opentrons_24_aluminumblock_nest_1point5ml_snapcap_A1", + "B1": "opentrons_24_aluminumblock_nest_1point5ml_snapcap_B1", + "C1": "opentrons_24_aluminumblock_nest_1point5ml_snapcap_C1", + "D1": "opentrons_24_aluminumblock_nest_1point5ml_snapcap_D1", + "A2": "opentrons_24_aluminumblock_nest_1point5ml_snapcap_A2", + "B2": "opentrons_24_aluminumblock_nest_1point5ml_snapcap_B2", + "C2": "opentrons_24_aluminumblock_nest_1point5ml_snapcap_C2", + "D2": "opentrons_24_aluminumblock_nest_1point5ml_snapcap_D2", + "A3": "opentrons_24_aluminumblock_nest_1point5ml_snapcap_A3", + "B3": "opentrons_24_aluminumblock_nest_1point5ml_snapcap_B3", + "C3": "opentrons_24_aluminumblock_nest_1point5ml_snapcap_C3", + "D3": "opentrons_24_aluminumblock_nest_1point5ml_snapcap_D3", + "A4": "opentrons_24_aluminumblock_nest_1point5ml_snapcap_A4", + "B4": "opentrons_24_aluminumblock_nest_1point5ml_snapcap_B4", + "C4": "opentrons_24_aluminumblock_nest_1point5ml_snapcap_C4", + "D4": "opentrons_24_aluminumblock_nest_1point5ml_snapcap_D4", + "A5": "opentrons_24_aluminumblock_nest_1point5ml_snapcap_A5", + "B5": "opentrons_24_aluminumblock_nest_1point5ml_snapcap_B5", + "C5": "opentrons_24_aluminumblock_nest_1point5ml_snapcap_C5", + "D5": "opentrons_24_aluminumblock_nest_1point5ml_snapcap_D5", + "A6": "opentrons_24_aluminumblock_nest_1point5ml_snapcap_A6", + "B6": "opentrons_24_aluminumblock_nest_1point5ml_snapcap_B6", + "C6": "opentrons_24_aluminumblock_nest_1point5ml_snapcap_C6", + "D6": "opentrons_24_aluminumblock_nest_1point5ml_snapcap_D6" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "opentrons_24_aluminumblock_nest_1point5ml_snapcap_A1", + "uuid": "57092b89-3cb2-4531-9a3a-4f0d187ed969", + "name": "opentrons_24_aluminumblock_nest_1point5ml_snapcap_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fadecb2a-9d3b-47dd-bb1d-04ac6e7597ab", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 37.9, + "width": 7.212, + "height": 7.212 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 17.144, + "y": 65.014, + "z": 5.8 + }, + "position3d": { + "x": 17.144, + "y": 65.014, + "z": 5.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 7.212, + "size_y": 7.212, + "size_z": 37.9, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A1_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 17.144, + "y": 65.014, + "z": 5.8 + } + }, + { + "id": "opentrons_24_aluminumblock_nest_1point5ml_snapcap_B1", + "uuid": "83518eed-ce9c-48ed-bee0-6c525afed9f8", + "name": "opentrons_24_aluminumblock_nest_1point5ml_snapcap_B1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fadecb2a-9d3b-47dd-bb1d-04ac6e7597ab", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 37.9, + "width": 7.212, + "height": 7.212 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 17.144, + "y": 47.764, + "z": 5.8 + }, + "position3d": { + "x": 17.144, + "y": 47.764, + "z": 5.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 7.212, + "size_y": 7.212, + "size_z": 37.9, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B1_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 17.144, + "y": 47.764, + "z": 5.8 + } + }, + { + "id": "opentrons_24_aluminumblock_nest_1point5ml_snapcap_C1", + "uuid": "e2302599-78f4-463c-b82b-e9f3aabf07ef", + "name": "opentrons_24_aluminumblock_nest_1point5ml_snapcap_C1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fadecb2a-9d3b-47dd-bb1d-04ac6e7597ab", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 37.9, + "width": 7.212, + "height": 7.212 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 17.144, + "y": 30.514, + "z": 5.8 + }, + "position3d": { + "x": 17.144, + "y": 30.514, + "z": 5.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 7.212, + "size_y": 7.212, + "size_z": 37.9, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C1_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 17.144, + "y": 30.514, + "z": 5.8 + } + }, + { + "id": "opentrons_24_aluminumblock_nest_1point5ml_snapcap_D1", + "uuid": "8d5f5d4e-262d-417b-8dc3-fa328595701c", + "name": "opentrons_24_aluminumblock_nest_1point5ml_snapcap_D1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fadecb2a-9d3b-47dd-bb1d-04ac6e7597ab", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 37.9, + "width": 7.212, + "height": 7.212 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 17.144, + "y": 13.264, + "z": 5.8 + }, + "position3d": { + "x": 17.144, + "y": 13.264, + "z": 5.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 7.212, + "size_y": 7.212, + "size_z": 37.9, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D1_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 17.144, + "y": 13.264, + "z": 5.8 + } + }, + { + "id": "opentrons_24_aluminumblock_nest_1point5ml_snapcap_A2", + "uuid": "8b1db22c-eb97-4226-a887-e7498498c81d", + "name": "opentrons_24_aluminumblock_nest_1point5ml_snapcap_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fadecb2a-9d3b-47dd-bb1d-04ac6e7597ab", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 37.9, + "width": 7.212, + "height": 7.212 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 34.394, + "y": 65.014, + "z": 5.8 + }, + "position3d": { + "x": 34.394, + "y": 65.014, + "z": 5.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 7.212, + "size_y": 7.212, + "size_z": 37.9, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A2_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 34.394, + "y": 65.014, + "z": 5.8 + } + }, + { + "id": "opentrons_24_aluminumblock_nest_1point5ml_snapcap_B2", + "uuid": "e793cce1-1a87-411e-91e8-4167c67e8897", + "name": "opentrons_24_aluminumblock_nest_1point5ml_snapcap_B2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fadecb2a-9d3b-47dd-bb1d-04ac6e7597ab", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 37.9, + "width": 7.212, + "height": 7.212 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 34.394, + "y": 47.764, + "z": 5.8 + }, + "position3d": { + "x": 34.394, + "y": 47.764, + "z": 5.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 7.212, + "size_y": 7.212, + "size_z": 37.9, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B2_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 34.394, + "y": 47.764, + "z": 5.8 + } + }, + { + "id": "opentrons_24_aluminumblock_nest_1point5ml_snapcap_C2", + "uuid": "cafd69ec-cf44-447b-a518-6583d09d340c", + "name": "opentrons_24_aluminumblock_nest_1point5ml_snapcap_C2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fadecb2a-9d3b-47dd-bb1d-04ac6e7597ab", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 37.9, + "width": 7.212, + "height": 7.212 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 34.394, + "y": 30.514, + "z": 5.8 + }, + "position3d": { + "x": 34.394, + "y": 30.514, + "z": 5.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 7.212, + "size_y": 7.212, + "size_z": 37.9, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C2_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 34.394, + "y": 30.514, + "z": 5.8 + } + }, + { + "id": "opentrons_24_aluminumblock_nest_1point5ml_snapcap_D2", + "uuid": "896561c9-047d-4e81-865f-d2ab62f60aa3", + "name": "opentrons_24_aluminumblock_nest_1point5ml_snapcap_D2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fadecb2a-9d3b-47dd-bb1d-04ac6e7597ab", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 37.9, + "width": 7.212, + "height": 7.212 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 34.394, + "y": 13.264, + "z": 5.8 + }, + "position3d": { + "x": 34.394, + "y": 13.264, + "z": 5.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 7.212, + "size_y": 7.212, + "size_z": 37.9, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D2_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 34.394, + "y": 13.264, + "z": 5.8 + } + }, + { + "id": "opentrons_24_aluminumblock_nest_1point5ml_snapcap_A3", + "uuid": "25186deb-ca40-4793-bb9e-7900cc7fdd67", + "name": "opentrons_24_aluminumblock_nest_1point5ml_snapcap_A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fadecb2a-9d3b-47dd-bb1d-04ac6e7597ab", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 37.9, + "width": 7.212, + "height": 7.212 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 51.644, + "y": 65.014, + "z": 5.8 + }, + "position3d": { + "x": 51.644, + "y": 65.014, + "z": 5.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 7.212, + "size_y": 7.212, + "size_z": 37.9, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A3_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 51.644, + "y": 65.014, + "z": 5.8 + } + }, + { + "id": "opentrons_24_aluminumblock_nest_1point5ml_snapcap_B3", + "uuid": "cbe23985-52f7-4e45-b181-1a315d131778", + "name": "opentrons_24_aluminumblock_nest_1point5ml_snapcap_B3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fadecb2a-9d3b-47dd-bb1d-04ac6e7597ab", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 37.9, + "width": 7.212, + "height": 7.212 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 51.644, + "y": 47.764, + "z": 5.8 + }, + "position3d": { + "x": 51.644, + "y": 47.764, + "z": 5.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 7.212, + "size_y": 7.212, + "size_z": 37.9, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B3_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 51.644, + "y": 47.764, + "z": 5.8 + } + }, + { + "id": "opentrons_24_aluminumblock_nest_1point5ml_snapcap_C3", + "uuid": "eda9a693-64cf-45ea-82e8-439c7f9d2463", + "name": "opentrons_24_aluminumblock_nest_1point5ml_snapcap_C3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fadecb2a-9d3b-47dd-bb1d-04ac6e7597ab", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 37.9, + "width": 7.212, + "height": 7.212 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 51.644, + "y": 30.514, + "z": 5.8 + }, + "position3d": { + "x": 51.644, + "y": 30.514, + "z": 5.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 7.212, + "size_y": 7.212, + "size_z": 37.9, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C3_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 51.644, + "y": 30.514, + "z": 5.8 + } + }, + { + "id": "opentrons_24_aluminumblock_nest_1point5ml_snapcap_D3", + "uuid": "dab85e51-9f66-437c-8ca8-400c75b2ed96", + "name": "opentrons_24_aluminumblock_nest_1point5ml_snapcap_D3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fadecb2a-9d3b-47dd-bb1d-04ac6e7597ab", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 37.9, + "width": 7.212, + "height": 7.212 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 51.644, + "y": 13.264, + "z": 5.8 + }, + "position3d": { + "x": 51.644, + "y": 13.264, + "z": 5.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 7.212, + "size_y": 7.212, + "size_z": 37.9, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D3_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 51.644, + "y": 13.264, + "z": 5.8 + } + }, + { + "id": "opentrons_24_aluminumblock_nest_1point5ml_snapcap_A4", + "uuid": "1ee0d753-41c0-470e-b94a-c9b6425e3271", + "name": "opentrons_24_aluminumblock_nest_1point5ml_snapcap_A4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fadecb2a-9d3b-47dd-bb1d-04ac6e7597ab", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 37.9, + "width": 7.212, + "height": 7.212 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 68.894, + "y": 65.014, + "z": 5.8 + }, + "position3d": { + "x": 68.894, + "y": 65.014, + "z": 5.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 7.212, + "size_y": 7.212, + "size_z": 37.9, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A4_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 68.894, + "y": 65.014, + "z": 5.8 + } + }, + { + "id": "opentrons_24_aluminumblock_nest_1point5ml_snapcap_B4", + "uuid": "bd838673-d2f4-4d8d-aaf5-d78fe3e8e62c", + "name": "opentrons_24_aluminumblock_nest_1point5ml_snapcap_B4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fadecb2a-9d3b-47dd-bb1d-04ac6e7597ab", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 37.9, + "width": 7.212, + "height": 7.212 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 68.894, + "y": 47.764, + "z": 5.8 + }, + "position3d": { + "x": 68.894, + "y": 47.764, + "z": 5.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 7.212, + "size_y": 7.212, + "size_z": 37.9, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B4_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 68.894, + "y": 47.764, + "z": 5.8 + } + }, + { + "id": "opentrons_24_aluminumblock_nest_1point5ml_snapcap_C4", + "uuid": "19e8d5fd-a360-44f0-8d4f-a8bd383d1584", + "name": "opentrons_24_aluminumblock_nest_1point5ml_snapcap_C4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fadecb2a-9d3b-47dd-bb1d-04ac6e7597ab", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 37.9, + "width": 7.212, + "height": 7.212 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 68.894, + "y": 30.514, + "z": 5.8 + }, + "position3d": { + "x": 68.894, + "y": 30.514, + "z": 5.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 7.212, + "size_y": 7.212, + "size_z": 37.9, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C4_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 68.894, + "y": 30.514, + "z": 5.8 + } + }, + { + "id": "opentrons_24_aluminumblock_nest_1point5ml_snapcap_D4", + "uuid": "33463306-66f2-41e6-9f4f-fc0bbb3def8a", + "name": "opentrons_24_aluminumblock_nest_1point5ml_snapcap_D4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fadecb2a-9d3b-47dd-bb1d-04ac6e7597ab", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 37.9, + "width": 7.212, + "height": 7.212 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 68.894, + "y": 13.264, + "z": 5.8 + }, + "position3d": { + "x": 68.894, + "y": 13.264, + "z": 5.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 7.212, + "size_y": 7.212, + "size_z": 37.9, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D4_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 68.894, + "y": 13.264, + "z": 5.8 + } + }, + { + "id": "opentrons_24_aluminumblock_nest_1point5ml_snapcap_A5", + "uuid": "9a6bfd31-24cf-407d-bb0b-235af4de0c8e", + "name": "opentrons_24_aluminumblock_nest_1point5ml_snapcap_A5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fadecb2a-9d3b-47dd-bb1d-04ac6e7597ab", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 37.9, + "width": 7.212, + "height": 7.212 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 86.144, + "y": 65.014, + "z": 5.8 + }, + "position3d": { + "x": 86.144, + "y": 65.014, + "z": 5.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 7.212, + "size_y": 7.212, + "size_z": 37.9, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A5_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 86.144, + "y": 65.014, + "z": 5.8 + } + }, + { + "id": "opentrons_24_aluminumblock_nest_1point5ml_snapcap_B5", + "uuid": "f3e53657-b070-4449-8397-c5c4277c4bdb", + "name": "opentrons_24_aluminumblock_nest_1point5ml_snapcap_B5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fadecb2a-9d3b-47dd-bb1d-04ac6e7597ab", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 37.9, + "width": 7.212, + "height": 7.212 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 86.144, + "y": 47.764, + "z": 5.8 + }, + "position3d": { + "x": 86.144, + "y": 47.764, + "z": 5.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 7.212, + "size_y": 7.212, + "size_z": 37.9, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B5_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 86.144, + "y": 47.764, + "z": 5.8 + } + }, + { + "id": "opentrons_24_aluminumblock_nest_1point5ml_snapcap_C5", + "uuid": "7f51236a-96ea-4816-b444-1643f40a0153", + "name": "opentrons_24_aluminumblock_nest_1point5ml_snapcap_C5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fadecb2a-9d3b-47dd-bb1d-04ac6e7597ab", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 37.9, + "width": 7.212, + "height": 7.212 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 86.144, + "y": 30.514, + "z": 5.8 + }, + "position3d": { + "x": 86.144, + "y": 30.514, + "z": 5.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 7.212, + "size_y": 7.212, + "size_z": 37.9, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C5_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 86.144, + "y": 30.514, + "z": 5.8 + } + }, + { + "id": "opentrons_24_aluminumblock_nest_1point5ml_snapcap_D5", + "uuid": "00e5f10d-652f-43e6-a4dd-ee187cf00a9c", + "name": "opentrons_24_aluminumblock_nest_1point5ml_snapcap_D5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fadecb2a-9d3b-47dd-bb1d-04ac6e7597ab", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 37.9, + "width": 7.212, + "height": 7.212 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 86.144, + "y": 13.264, + "z": 5.8 + }, + "position3d": { + "x": 86.144, + "y": 13.264, + "z": 5.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 7.212, + "size_y": 7.212, + "size_z": 37.9, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D5_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 86.144, + "y": 13.264, + "z": 5.8 + } + }, + { + "id": "opentrons_24_aluminumblock_nest_1point5ml_snapcap_A6", + "uuid": "469fffe7-2a2f-4e51-ba31-07754016f760", + "name": "opentrons_24_aluminumblock_nest_1point5ml_snapcap_A6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fadecb2a-9d3b-47dd-bb1d-04ac6e7597ab", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 37.9, + "width": 7.212, + "height": 7.212 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 103.394, + "y": 65.014, + "z": 5.8 + }, + "position3d": { + "x": 103.394, + "y": 65.014, + "z": 5.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 7.212, + "size_y": 7.212, + "size_z": 37.9, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A6_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 103.394, + "y": 65.014, + "z": 5.8 + } + }, + { + "id": "opentrons_24_aluminumblock_nest_1point5ml_snapcap_B6", + "uuid": "39882e28-58a8-4bcf-96bf-2f20c8f669f5", + "name": "opentrons_24_aluminumblock_nest_1point5ml_snapcap_B6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fadecb2a-9d3b-47dd-bb1d-04ac6e7597ab", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 37.9, + "width": 7.212, + "height": 7.212 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 103.394, + "y": 47.764, + "z": 5.8 + }, + "position3d": { + "x": 103.394, + "y": 47.764, + "z": 5.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 7.212, + "size_y": 7.212, + "size_z": 37.9, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B6_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 103.394, + "y": 47.764, + "z": 5.8 + } + }, + { + "id": "opentrons_24_aluminumblock_nest_1point5ml_snapcap_C6", + "uuid": "948a8557-39be-4aef-9136-594688550e2a", + "name": "opentrons_24_aluminumblock_nest_1point5ml_snapcap_C6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fadecb2a-9d3b-47dd-bb1d-04ac6e7597ab", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 37.9, + "width": 7.212, + "height": 7.212 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 103.394, + "y": 30.514, + "z": 5.8 + }, + "position3d": { + "x": 103.394, + "y": 30.514, + "z": 5.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 7.212, + "size_y": 7.212, + "size_z": 37.9, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C6_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 103.394, + "y": 30.514, + "z": 5.8 + } + }, + { + "id": "opentrons_24_aluminumblock_nest_1point5ml_snapcap_D6", + "uuid": "0b6787a7-f49c-4c75-b10d-4c2988d00e59", + "name": "opentrons_24_aluminumblock_nest_1point5ml_snapcap_D6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fadecb2a-9d3b-47dd-bb1d-04ac6e7597ab", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 37.9, + "width": 7.212, + "height": 7.212 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 103.394, + "y": 13.264, + "z": 5.8 + }, + "position3d": { + "x": 103.394, + "y": 13.264, + "z": 5.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 7.212, + "size_y": 7.212, + "size_z": 37.9, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D6_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 103.394, + "y": 13.264, + "z": 5.8 + } + } + ] + }, + { + "id": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap", + "category": [ + "tube_racks" + ], + "class": { + "module": "pylabrobot.resources.opentrons.tube_racks:opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap", + "type": "pylabrobot" + }, + "description": "Opentrons 24 tuberack eppendorf 1.5ml safelock snapcap", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/opentrons/tube_racks.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap", + "uuid": "bd7c23b8-de54-47db-86c2-c8158c1bfcf9", + "name": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "", + "class": "", + "pose": { + "size": { + "depth": 79.85, + "width": 127.75, + "height": 85.5 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TubeRack", + "size_x": 127.75, + "size_y": 85.5, + "size_z": 79.85, + "category": null, + "model": "Opentrons 24 Tube Rack with Eppendorf 1.5 mL Safe-Lock Snapcap", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap_A1", + "B1": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap_B1", + "C1": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap_C1", + "D1": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap_D1", + "A2": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap_A2", + "B2": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap_B2", + "C2": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap_C2", + "D2": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap_D2", + "A3": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap_A3", + "B3": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap_B3", + "C3": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap_C3", + "D3": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap_D3", + "A4": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap_A4", + "B4": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap_B4", + "C4": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap_C4", + "D4": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap_D4", + "A5": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap_A5", + "B5": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap_B5", + "C5": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap_C5", + "D5": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap_D5", + "A6": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap_A6", + "B6": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap_B6", + "C6": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap_C6", + "D6": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap_D6" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap_A1", + "uuid": "b7e3df97-e020-4bb2-9b43-64e6e3505646", + "name": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "bd7c23b8-de54-47db-86c2-c8158c1bfcf9", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 37.8, + "width": 6.152, + "height": 6.152 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 15.134, + "y": 72.354, + "z": 42.05 + }, + "position3d": { + "x": 15.134, + "y": 72.354, + "z": 42.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 6.152, + "size_y": 6.152, + "size_z": 37.8, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A1_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 15.134, + "y": 72.354, + "z": 42.05 + } + }, + { + "id": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap_B1", + "uuid": "af05aba1-e54f-4406-be14-804426e002c8", + "name": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap_B1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "bd7c23b8-de54-47db-86c2-c8158c1bfcf9", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 37.8, + "width": 6.152, + "height": 6.152 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 15.134, + "y": 53.074, + "z": 42.05 + }, + "position3d": { + "x": 15.134, + "y": 53.074, + "z": 42.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 6.152, + "size_y": 6.152, + "size_z": 37.8, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B1_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 15.134, + "y": 53.074, + "z": 42.05 + } + }, + { + "id": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap_C1", + "uuid": "70305a56-84d6-47b1-9d70-a39f6ab16ee2", + "name": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap_C1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "bd7c23b8-de54-47db-86c2-c8158c1bfcf9", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 37.8, + "width": 6.152, + "height": 6.152 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 15.134, + "y": 33.794, + "z": 42.05 + }, + "position3d": { + "x": 15.134, + "y": 33.794, + "z": 42.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 6.152, + "size_y": 6.152, + "size_z": 37.8, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C1_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 15.134, + "y": 33.794, + "z": 42.05 + } + }, + { + "id": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap_D1", + "uuid": "4264b05a-bf03-4ff4-873b-c23578bb6547", + "name": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap_D1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "bd7c23b8-de54-47db-86c2-c8158c1bfcf9", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 37.8, + "width": 6.152, + "height": 6.152 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 15.134, + "y": 14.514, + "z": 42.05 + }, + "position3d": { + "x": 15.134, + "y": 14.514, + "z": 42.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 6.152, + "size_y": 6.152, + "size_z": 37.8, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D1_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 15.134, + "y": 14.514, + "z": 42.05 + } + }, + { + "id": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap_A2", + "uuid": "91ce2ce7-c0db-431d-9cd3-26120fb4978d", + "name": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "bd7c23b8-de54-47db-86c2-c8158c1bfcf9", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 37.8, + "width": 6.152, + "height": 6.152 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 35.024, + "y": 72.354, + "z": 42.05 + }, + "position3d": { + "x": 35.024, + "y": 72.354, + "z": 42.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 6.152, + "size_y": 6.152, + "size_z": 37.8, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A2_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 35.024, + "y": 72.354, + "z": 42.05 + } + }, + { + "id": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap_B2", + "uuid": "f31af088-ca95-45c6-ab5f-a5c333035ce6", + "name": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap_B2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "bd7c23b8-de54-47db-86c2-c8158c1bfcf9", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 37.8, + "width": 6.152, + "height": 6.152 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 35.024, + "y": 53.074, + "z": 42.05 + }, + "position3d": { + "x": 35.024, + "y": 53.074, + "z": 42.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 6.152, + "size_y": 6.152, + "size_z": 37.8, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B2_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 35.024, + "y": 53.074, + "z": 42.05 + } + }, + { + "id": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap_C2", + "uuid": "defc9db0-4fcb-4b4e-974d-2ec3782d35e3", + "name": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap_C2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "bd7c23b8-de54-47db-86c2-c8158c1bfcf9", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 37.8, + "width": 6.152, + "height": 6.152 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 35.024, + "y": 33.794, + "z": 42.05 + }, + "position3d": { + "x": 35.024, + "y": 33.794, + "z": 42.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 6.152, + "size_y": 6.152, + "size_z": 37.8, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C2_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 35.024, + "y": 33.794, + "z": 42.05 + } + }, + { + "id": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap_D2", + "uuid": "6edae001-39fa-403d-925e-e78bc9636ac7", + "name": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap_D2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "bd7c23b8-de54-47db-86c2-c8158c1bfcf9", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 37.8, + "width": 6.152, + "height": 6.152 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 35.024, + "y": 14.514, + "z": 42.05 + }, + "position3d": { + "x": 35.024, + "y": 14.514, + "z": 42.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 6.152, + "size_y": 6.152, + "size_z": 37.8, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D2_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 35.024, + "y": 14.514, + "z": 42.05 + } + }, + { + "id": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap_A3", + "uuid": "85c65e52-2e96-4107-806d-6085d7c3ba23", + "name": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap_A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "bd7c23b8-de54-47db-86c2-c8158c1bfcf9", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 37.8, + "width": 6.152, + "height": 6.152 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 54.914, + "y": 72.354, + "z": 42.05 + }, + "position3d": { + "x": 54.914, + "y": 72.354, + "z": 42.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 6.152, + "size_y": 6.152, + "size_z": 37.8, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A3_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 54.914, + "y": 72.354, + "z": 42.05 + } + }, + { + "id": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap_B3", + "uuid": "d9ebaf55-4ebc-49b5-a8a7-9c361b1c9813", + "name": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap_B3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "bd7c23b8-de54-47db-86c2-c8158c1bfcf9", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 37.8, + "width": 6.152, + "height": 6.152 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 54.914, + "y": 53.074, + "z": 42.05 + }, + "position3d": { + "x": 54.914, + "y": 53.074, + "z": 42.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 6.152, + "size_y": 6.152, + "size_z": 37.8, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B3_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 54.914, + "y": 53.074, + "z": 42.05 + } + }, + { + "id": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap_C3", + "uuid": "5bd7cf82-cf07-4f71-b855-2c34ff108f3a", + "name": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap_C3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "bd7c23b8-de54-47db-86c2-c8158c1bfcf9", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 37.8, + "width": 6.152, + "height": 6.152 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 54.914, + "y": 33.794, + "z": 42.05 + }, + "position3d": { + "x": 54.914, + "y": 33.794, + "z": 42.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 6.152, + "size_y": 6.152, + "size_z": 37.8, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C3_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 54.914, + "y": 33.794, + "z": 42.05 + } + }, + { + "id": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap_D3", + "uuid": "f6a73761-7758-4b46-ac65-fc1e90bd6194", + "name": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap_D3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "bd7c23b8-de54-47db-86c2-c8158c1bfcf9", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 37.8, + "width": 6.152, + "height": 6.152 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 54.914, + "y": 14.514, + "z": 42.05 + }, + "position3d": { + "x": 54.914, + "y": 14.514, + "z": 42.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 6.152, + "size_y": 6.152, + "size_z": 37.8, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D3_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 54.914, + "y": 14.514, + "z": 42.05 + } + }, + { + "id": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap_A4", + "uuid": "13ffefd5-ce71-4968-857d-3d45f1ed5ca0", + "name": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap_A4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "bd7c23b8-de54-47db-86c2-c8158c1bfcf9", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 37.8, + "width": 6.152, + "height": 6.152 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.804, + "y": 72.354, + "z": 42.05 + }, + "position3d": { + "x": 74.804, + "y": 72.354, + "z": 42.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 6.152, + "size_y": 6.152, + "size_z": 37.8, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A4_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.804, + "y": 72.354, + "z": 42.05 + } + }, + { + "id": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap_B4", + "uuid": "4bfc66b7-76a9-431b-b6f7-f7d35cc69ed3", + "name": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap_B4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "bd7c23b8-de54-47db-86c2-c8158c1bfcf9", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 37.8, + "width": 6.152, + "height": 6.152 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.804, + "y": 53.074, + "z": 42.05 + }, + "position3d": { + "x": 74.804, + "y": 53.074, + "z": 42.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 6.152, + "size_y": 6.152, + "size_z": 37.8, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B4_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.804, + "y": 53.074, + "z": 42.05 + } + }, + { + "id": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap_C4", + "uuid": "f30aa342-8d9a-4f3e-84a8-97f24088d331", + "name": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap_C4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "bd7c23b8-de54-47db-86c2-c8158c1bfcf9", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 37.8, + "width": 6.152, + "height": 6.152 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.804, + "y": 33.794, + "z": 42.05 + }, + "position3d": { + "x": 74.804, + "y": 33.794, + "z": 42.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 6.152, + "size_y": 6.152, + "size_z": 37.8, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C4_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.804, + "y": 33.794, + "z": 42.05 + } + }, + { + "id": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap_D4", + "uuid": "669361cc-b49b-4fc5-9998-e30f5ce4ce60", + "name": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap_D4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "bd7c23b8-de54-47db-86c2-c8158c1bfcf9", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 37.8, + "width": 6.152, + "height": 6.152 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.804, + "y": 14.514, + "z": 42.05 + }, + "position3d": { + "x": 74.804, + "y": 14.514, + "z": 42.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 6.152, + "size_y": 6.152, + "size_z": 37.8, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D4_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.804, + "y": 14.514, + "z": 42.05 + } + }, + { + "id": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap_A5", + "uuid": "6554c844-db31-44a6-a829-9b3babce2b93", + "name": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap_A5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "bd7c23b8-de54-47db-86c2-c8158c1bfcf9", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 37.8, + "width": 6.152, + "height": 6.152 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.694, + "y": 72.354, + "z": 42.05 + }, + "position3d": { + "x": 94.694, + "y": 72.354, + "z": 42.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 6.152, + "size_y": 6.152, + "size_z": 37.8, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A5_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.694, + "y": 72.354, + "z": 42.05 + } + }, + { + "id": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap_B5", + "uuid": "20766481-613d-4f70-9be8-c0a9bf68f5ce", + "name": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap_B5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "bd7c23b8-de54-47db-86c2-c8158c1bfcf9", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 37.8, + "width": 6.152, + "height": 6.152 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.694, + "y": 53.074, + "z": 42.05 + }, + "position3d": { + "x": 94.694, + "y": 53.074, + "z": 42.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 6.152, + "size_y": 6.152, + "size_z": 37.8, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B5_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.694, + "y": 53.074, + "z": 42.05 + } + }, + { + "id": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap_C5", + "uuid": "eca4a22d-17b0-4475-bb05-f07bd657d3b6", + "name": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap_C5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "bd7c23b8-de54-47db-86c2-c8158c1bfcf9", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 37.8, + "width": 6.152, + "height": 6.152 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.694, + "y": 33.794, + "z": 42.05 + }, + "position3d": { + "x": 94.694, + "y": 33.794, + "z": 42.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 6.152, + "size_y": 6.152, + "size_z": 37.8, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C5_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.694, + "y": 33.794, + "z": 42.05 + } + }, + { + "id": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap_D5", + "uuid": "8c354d29-ebc2-434d-9dc8-4e518f249c67", + "name": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap_D5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "bd7c23b8-de54-47db-86c2-c8158c1bfcf9", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 37.8, + "width": 6.152, + "height": 6.152 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.694, + "y": 14.514, + "z": 42.05 + }, + "position3d": { + "x": 94.694, + "y": 14.514, + "z": 42.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 6.152, + "size_y": 6.152, + "size_z": 37.8, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D5_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.694, + "y": 14.514, + "z": 42.05 + } + }, + { + "id": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap_A6", + "uuid": "bc71811d-e7c1-40d9-8978-da106adbffc4", + "name": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap_A6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "bd7c23b8-de54-47db-86c2-c8158c1bfcf9", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 37.8, + "width": 6.152, + "height": 6.152 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.584, + "y": 72.354, + "z": 42.05 + }, + "position3d": { + "x": 114.584, + "y": 72.354, + "z": 42.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 6.152, + "size_y": 6.152, + "size_z": 37.8, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A6_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.584, + "y": 72.354, + "z": 42.05 + } + }, + { + "id": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap_B6", + "uuid": "11b5e009-08fd-4ad4-b9b7-29132b7bd188", + "name": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap_B6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "bd7c23b8-de54-47db-86c2-c8158c1bfcf9", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 37.8, + "width": 6.152, + "height": 6.152 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.584, + "y": 53.074, + "z": 42.05 + }, + "position3d": { + "x": 114.584, + "y": 53.074, + "z": 42.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 6.152, + "size_y": 6.152, + "size_z": 37.8, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B6_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.584, + "y": 53.074, + "z": 42.05 + } + }, + { + "id": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap_C6", + "uuid": "4e7c8e6b-39ce-48d3-9b99-3c092c4ec656", + "name": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap_C6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "bd7c23b8-de54-47db-86c2-c8158c1bfcf9", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 37.8, + "width": 6.152, + "height": 6.152 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.584, + "y": 33.794, + "z": 42.05 + }, + "position3d": { + "x": 114.584, + "y": 33.794, + "z": 42.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 6.152, + "size_y": 6.152, + "size_z": 37.8, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C6_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.584, + "y": 33.794, + "z": 42.05 + } + }, + { + "id": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap_D6", + "uuid": "f5e0d089-b474-4a87-8866-dd70e0cd7be3", + "name": "opentrons_24_tuberack_eppendorf_1point5ml_safelock_snapcap_D6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "bd7c23b8-de54-47db-86c2-c8158c1bfcf9", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 37.8, + "width": 6.152, + "height": 6.152 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.584, + "y": 14.514, + "z": 42.05 + }, + "position3d": { + "x": 114.584, + "y": 14.514, + "z": 42.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 6.152, + "size_y": 6.152, + "size_z": 37.8, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D6_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.584, + "y": 14.514, + "z": 42.05 + } + } + ] + }, + { + "id": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap", + "category": [ + "tube_racks" + ], + "class": { + "module": "pylabrobot.resources.opentrons.tube_racks:opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap", + "type": "pylabrobot" + }, + "description": "Opentrons 24 tuberack eppendorf 2ml safelock snapcap", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/opentrons/tube_racks.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap", + "uuid": "a0787748-4368-4f3f-bd6c-9f5f3aed0854", + "name": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "", + "class": "", + "pose": { + "size": { + "depth": 79.85, + "width": 127.75, + "height": 85.5 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TubeRack", + "size_x": 127.75, + "size_y": 85.5, + "size_z": 79.85, + "category": null, + "model": "Opentrons 24 Tube Rack with Eppendorf 2 mL Safe-Lock Snapcap", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_A1", + "B1": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_B1", + "C1": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_C1", + "D1": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_D1", + "A2": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_A2", + "B2": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_B2", + "C2": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_C2", + "D2": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_D2", + "A3": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_A3", + "B3": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_B3", + "C3": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_C3", + "D3": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_D3", + "A4": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_A4", + "B4": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_B4", + "C4": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_C4", + "D4": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_D4", + "A5": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_A5", + "B5": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_B5", + "C5": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_C5", + "D5": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_D5", + "A6": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_A6", + "B6": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_B6", + "C6": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_C6", + "D6": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_D6" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_A1", + "uuid": "8d7f750a-e3a8-4de4-a58e-d093b2238165", + "name": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a0787748-4368-4f3f-bd6c-9f5f3aed0854", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 39.1, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 15.0985, + "y": 72.3185, + "z": 41.27 + }, + "position3d": { + "x": 15.0985, + "y": 72.3185, + "z": 41.27 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 39.1, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 15.0985, + "y": 72.3185, + "z": 41.27 + } + }, + { + "id": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_B1", + "uuid": "45f34f03-cf94-4ad6-869d-91bcbdb2aaa4", + "name": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_B1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a0787748-4368-4f3f-bd6c-9f5f3aed0854", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 39.1, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 15.0985, + "y": 53.0385, + "z": 41.27 + }, + "position3d": { + "x": 15.0985, + "y": 53.0385, + "z": 41.27 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 39.1, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 15.0985, + "y": 53.0385, + "z": 41.27 + } + }, + { + "id": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_C1", + "uuid": "8b62bbaf-c454-486a-8551-f7ccd79f5c96", + "name": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_C1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a0787748-4368-4f3f-bd6c-9f5f3aed0854", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 39.1, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 15.0985, + "y": 33.7585, + "z": 41.27 + }, + "position3d": { + "x": 15.0985, + "y": 33.7585, + "z": 41.27 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 39.1, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 15.0985, + "y": 33.7585, + "z": 41.27 + } + }, + { + "id": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_D1", + "uuid": "0ec59a23-2d6f-429e-87ea-5ac5f38f3893", + "name": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_D1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a0787748-4368-4f3f-bd6c-9f5f3aed0854", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 39.1, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 15.0985, + "y": 14.4785, + "z": 41.27 + }, + "position3d": { + "x": 15.0985, + "y": 14.4785, + "z": 41.27 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 39.1, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 15.0985, + "y": 14.4785, + "z": 41.27 + } + }, + { + "id": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_A2", + "uuid": "8ca50865-56b9-4136-ae10-393edaec3111", + "name": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a0787748-4368-4f3f-bd6c-9f5f3aed0854", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 39.1, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 34.9885, + "y": 72.3185, + "z": 41.27 + }, + "position3d": { + "x": 34.9885, + "y": 72.3185, + "z": 41.27 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 39.1, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 34.9885, + "y": 72.3185, + "z": 41.27 + } + }, + { + "id": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_B2", + "uuid": "2bb3592e-ed6c-41ee-9463-de0130aaac5b", + "name": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_B2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a0787748-4368-4f3f-bd6c-9f5f3aed0854", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 39.1, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 34.9885, + "y": 53.0385, + "z": 41.27 + }, + "position3d": { + "x": 34.9885, + "y": 53.0385, + "z": 41.27 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 39.1, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 34.9885, + "y": 53.0385, + "z": 41.27 + } + }, + { + "id": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_C2", + "uuid": "58b25f38-4a60-405a-ace8-29685f89272f", + "name": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_C2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a0787748-4368-4f3f-bd6c-9f5f3aed0854", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 39.1, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 34.9885, + "y": 33.7585, + "z": 41.27 + }, + "position3d": { + "x": 34.9885, + "y": 33.7585, + "z": 41.27 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 39.1, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 34.9885, + "y": 33.7585, + "z": 41.27 + } + }, + { + "id": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_D2", + "uuid": "47c3cb75-2bf3-4941-a23f-ab8c7d8476e4", + "name": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_D2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a0787748-4368-4f3f-bd6c-9f5f3aed0854", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 39.1, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 34.9885, + "y": 14.4785, + "z": 41.27 + }, + "position3d": { + "x": 34.9885, + "y": 14.4785, + "z": 41.27 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 39.1, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 34.9885, + "y": 14.4785, + "z": 41.27 + } + }, + { + "id": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_A3", + "uuid": "2db2d6a2-a29c-4269-a866-177e9a506744", + "name": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a0787748-4368-4f3f-bd6c-9f5f3aed0854", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 39.1, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 54.8785, + "y": 72.3185, + "z": 41.27 + }, + "position3d": { + "x": 54.8785, + "y": 72.3185, + "z": 41.27 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 39.1, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 54.8785, + "y": 72.3185, + "z": 41.27 + } + }, + { + "id": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_B3", + "uuid": "e4baea80-39b8-44f6-95e2-d21be2195df8", + "name": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_B3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a0787748-4368-4f3f-bd6c-9f5f3aed0854", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 39.1, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 54.8785, + "y": 53.0385, + "z": 41.27 + }, + "position3d": { + "x": 54.8785, + "y": 53.0385, + "z": 41.27 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 39.1, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 54.8785, + "y": 53.0385, + "z": 41.27 + } + }, + { + "id": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_C3", + "uuid": "7801adfd-516b-4738-a687-1b15bae80ab7", + "name": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_C3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a0787748-4368-4f3f-bd6c-9f5f3aed0854", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 39.1, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 54.8785, + "y": 33.7585, + "z": 41.27 + }, + "position3d": { + "x": 54.8785, + "y": 33.7585, + "z": 41.27 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 39.1, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 54.8785, + "y": 33.7585, + "z": 41.27 + } + }, + { + "id": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_D3", + "uuid": "98f83ce9-0ea4-45e4-9c3b-3ae1c96b8536", + "name": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_D3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a0787748-4368-4f3f-bd6c-9f5f3aed0854", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 39.1, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 54.8785, + "y": 14.4785, + "z": 41.27 + }, + "position3d": { + "x": 54.8785, + "y": 14.4785, + "z": 41.27 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 39.1, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 54.8785, + "y": 14.4785, + "z": 41.27 + } + }, + { + "id": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_A4", + "uuid": "f5e6677e-8e7d-44c7-931c-44ebaf4f554b", + "name": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_A4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a0787748-4368-4f3f-bd6c-9f5f3aed0854", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 39.1, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.7685, + "y": 72.3185, + "z": 41.27 + }, + "position3d": { + "x": 74.7685, + "y": 72.3185, + "z": 41.27 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 39.1, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.7685, + "y": 72.3185, + "z": 41.27 + } + }, + { + "id": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_B4", + "uuid": "5ef3cb8d-fd5a-4d42-aa95-87b5836b6477", + "name": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_B4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a0787748-4368-4f3f-bd6c-9f5f3aed0854", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 39.1, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.7685, + "y": 53.0385, + "z": 41.27 + }, + "position3d": { + "x": 74.7685, + "y": 53.0385, + "z": 41.27 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 39.1, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.7685, + "y": 53.0385, + "z": 41.27 + } + }, + { + "id": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_C4", + "uuid": "e62cbaba-828b-4ac6-acb3-305b4722c582", + "name": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_C4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a0787748-4368-4f3f-bd6c-9f5f3aed0854", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 39.1, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.7685, + "y": 33.7585, + "z": 41.27 + }, + "position3d": { + "x": 74.7685, + "y": 33.7585, + "z": 41.27 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 39.1, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.7685, + "y": 33.7585, + "z": 41.27 + } + }, + { + "id": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_D4", + "uuid": "31d2c7f9-31bb-4f96-94a2-5e66de9ddd21", + "name": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_D4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a0787748-4368-4f3f-bd6c-9f5f3aed0854", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 39.1, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.7685, + "y": 14.4785, + "z": 41.27 + }, + "position3d": { + "x": 74.7685, + "y": 14.4785, + "z": 41.27 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 39.1, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.7685, + "y": 14.4785, + "z": 41.27 + } + }, + { + "id": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_A5", + "uuid": "b7fb3b95-a534-47c2-b857-7719e9d39991", + "name": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_A5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a0787748-4368-4f3f-bd6c-9f5f3aed0854", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 39.1, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.6585, + "y": 72.3185, + "z": 41.27 + }, + "position3d": { + "x": 94.6585, + "y": 72.3185, + "z": 41.27 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 39.1, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.6585, + "y": 72.3185, + "z": 41.27 + } + }, + { + "id": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_B5", + "uuid": "da360ab8-fe18-4c5d-9252-cac9e1424e1f", + "name": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_B5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a0787748-4368-4f3f-bd6c-9f5f3aed0854", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 39.1, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.6585, + "y": 53.0385, + "z": 41.27 + }, + "position3d": { + "x": 94.6585, + "y": 53.0385, + "z": 41.27 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 39.1, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.6585, + "y": 53.0385, + "z": 41.27 + } + }, + { + "id": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_C5", + "uuid": "3a23d417-330d-42a0-b7f8-81d1bc763a77", + "name": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_C5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a0787748-4368-4f3f-bd6c-9f5f3aed0854", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 39.1, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.6585, + "y": 33.7585, + "z": 41.27 + }, + "position3d": { + "x": 94.6585, + "y": 33.7585, + "z": 41.27 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 39.1, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.6585, + "y": 33.7585, + "z": 41.27 + } + }, + { + "id": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_D5", + "uuid": "2578cfe9-4b66-4e57-a151-5c5a48feda66", + "name": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_D5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a0787748-4368-4f3f-bd6c-9f5f3aed0854", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 39.1, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.6585, + "y": 14.4785, + "z": 41.27 + }, + "position3d": { + "x": 94.6585, + "y": 14.4785, + "z": 41.27 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 39.1, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.6585, + "y": 14.4785, + "z": 41.27 + } + }, + { + "id": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_A6", + "uuid": "ff167837-3eed-4378-b3a6-c6b3fbf58708", + "name": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_A6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a0787748-4368-4f3f-bd6c-9f5f3aed0854", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 39.1, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.5485, + "y": 72.3185, + "z": 41.27 + }, + "position3d": { + "x": 114.5485, + "y": 72.3185, + "z": 41.27 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 39.1, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.5485, + "y": 72.3185, + "z": 41.27 + } + }, + { + "id": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_B6", + "uuid": "c68c74d0-b015-4e23-a96c-50dd4a215ab3", + "name": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_B6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a0787748-4368-4f3f-bd6c-9f5f3aed0854", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 39.1, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.5485, + "y": 53.0385, + "z": 41.27 + }, + "position3d": { + "x": 114.5485, + "y": 53.0385, + "z": 41.27 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 39.1, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.5485, + "y": 53.0385, + "z": 41.27 + } + }, + { + "id": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_C6", + "uuid": "9c626e8f-e392-4ff5-bf68-3c9c3091fe30", + "name": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_C6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a0787748-4368-4f3f-bd6c-9f5f3aed0854", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 39.1, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.5485, + "y": 33.7585, + "z": 41.27 + }, + "position3d": { + "x": 114.5485, + "y": 33.7585, + "z": 41.27 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 39.1, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.5485, + "y": 33.7585, + "z": 41.27 + } + }, + { + "id": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_D6", + "uuid": "cbe78b63-d0be-49e8-8bd1-99ce841549bd", + "name": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_D6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a0787748-4368-4f3f-bd6c-9f5f3aed0854", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 39.1, + "width": 6.223, + "height": 6.223 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.5485, + "y": 14.4785, + "z": 41.27 + }, + "position3d": { + "x": 114.5485, + "y": 14.4785, + "z": 41.27 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.223, + "size_y": 6.223, + "size_z": 39.1, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.5485, + "y": 14.4785, + "z": 41.27 + } + } + ] + }, + { + "id": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic", + "category": [ + "tube_racks" + ], + "class": { + "module": "pylabrobot.resources.opentrons.tube_racks:opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic", + "type": "pylabrobot" + }, + "description": "Opentrons 24 tuberack eppendorf 2ml safelock snapcap acrylic", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/opentrons/tube_racks.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic", + "uuid": "da2856c2-d96a-4986-8b41-9699ef3702d0", + "name": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "", + "class": "", + "pose": { + "size": { + "depth": 52.0, + "width": 127.76, + "height": 85.48 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TubeRack", + "size_x": 127.76, + "size_y": 85.48, + "size_z": 52, + "category": null, + "model": "Opentrons 24 Tube Rack (Acrylic) with Eppendorf 2 mL Safe-Lock Snapcap", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic_A1", + "B1": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic_B1", + "C1": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic_C1", + "D1": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic_D1", + "A2": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic_A2", + "B2": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic_B2", + "C2": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic_C2", + "D2": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic_D2", + "A3": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic_A3", + "B3": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic_B3", + "C3": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic_C3", + "D3": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic_D3", + "A4": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic_A4", + "B4": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic_B4", + "C4": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic_C4", + "D4": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic_D4", + "A5": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic_A5", + "B5": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic_B5", + "C5": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic_C5", + "D5": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic_D5", + "A6": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic_A6", + "B6": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic_B6", + "C6": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic_C6", + "D6": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic_D6" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic_A1", + "uuid": "f1b95164-ffe9-48d8-bf00-2c1a15bb4ab8", + "name": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "da2856c2-d96a-4986-8b41-9699ef3702d0", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 38.58, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.78, + "y": 68.9, + "z": 13.42 + }, + "position3d": { + "x": 11.78, + "y": 68.9, + "z": 13.42 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 38.58, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A1_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.78, + "y": 68.9, + "z": 13.42 + } + }, + { + "id": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic_B1", + "uuid": "2592a298-0c66-43e6-a9be-c4036730578e", + "name": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic_B1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "da2856c2-d96a-4986-8b41-9699ef3702d0", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 38.58, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.78, + "y": 49.4, + "z": 13.42 + }, + "position3d": { + "x": 11.78, + "y": 49.4, + "z": 13.42 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 38.58, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B1_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.78, + "y": 49.4, + "z": 13.42 + } + }, + { + "id": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic_C1", + "uuid": "538e9e20-db35-4733-8ebf-b16945e8dbb2", + "name": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic_C1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "da2856c2-d96a-4986-8b41-9699ef3702d0", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 38.58, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.78, + "y": 29.9, + "z": 13.42 + }, + "position3d": { + "x": 11.78, + "y": 29.9, + "z": 13.42 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 38.58, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C1_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.78, + "y": 29.9, + "z": 13.42 + } + }, + { + "id": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic_D1", + "uuid": "bb56d6ff-2c67-4114-ba4a-65e0f3ff9033", + "name": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic_D1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "da2856c2-d96a-4986-8b41-9699ef3702d0", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 38.58, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.78, + "y": 10.4, + "z": 13.42 + }, + "position3d": { + "x": 11.78, + "y": 10.4, + "z": 13.42 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 38.58, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D1_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.78, + "y": 10.4, + "z": 13.42 + } + }, + { + "id": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic_A2", + "uuid": "742658c6-6398-4ee2-ade7-f96b65e97ed6", + "name": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "da2856c2-d96a-4986-8b41-9699ef3702d0", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 38.58, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 31.28, + "y": 68.9, + "z": 13.42 + }, + "position3d": { + "x": 31.28, + "y": 68.9, + "z": 13.42 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 38.58, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A2_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 31.28, + "y": 68.9, + "z": 13.42 + } + }, + { + "id": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic_B2", + "uuid": "6863224a-ca8f-4568-91eb-4712fcfd93fe", + "name": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic_B2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "da2856c2-d96a-4986-8b41-9699ef3702d0", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 38.58, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 31.28, + "y": 49.4, + "z": 13.42 + }, + "position3d": { + "x": 31.28, + "y": 49.4, + "z": 13.42 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 38.58, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B2_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 31.28, + "y": 49.4, + "z": 13.42 + } + }, + { + "id": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic_C2", + "uuid": "5c4487a6-0353-47b1-9cde-7a005a70aa21", + "name": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic_C2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "da2856c2-d96a-4986-8b41-9699ef3702d0", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 38.58, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 31.28, + "y": 29.9, + "z": 13.42 + }, + "position3d": { + "x": 31.28, + "y": 29.9, + "z": 13.42 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 38.58, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C2_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 31.28, + "y": 29.9, + "z": 13.42 + } + }, + { + "id": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic_D2", + "uuid": "11150dc6-2410-4eb3-b95b-a8c8708defe3", + "name": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic_D2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "da2856c2-d96a-4986-8b41-9699ef3702d0", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 38.58, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 31.28, + "y": 10.4, + "z": 13.42 + }, + "position3d": { + "x": 31.28, + "y": 10.4, + "z": 13.42 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 38.58, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D2_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 31.28, + "y": 10.4, + "z": 13.42 + } + }, + { + "id": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic_A3", + "uuid": "59e9352e-bba3-473f-bb4f-7a96ea26ce71", + "name": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic_A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "da2856c2-d96a-4986-8b41-9699ef3702d0", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 38.58, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 50.78, + "y": 68.9, + "z": 13.42 + }, + "position3d": { + "x": 50.78, + "y": 68.9, + "z": 13.42 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 38.58, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A3_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 50.78, + "y": 68.9, + "z": 13.42 + } + }, + { + "id": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic_B3", + "uuid": "6f36ced6-6157-4a1f-b9e3-c3ef16d7843c", + "name": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic_B3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "da2856c2-d96a-4986-8b41-9699ef3702d0", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 38.58, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 50.78, + "y": 49.4, + "z": 13.42 + }, + "position3d": { + "x": 50.78, + "y": 49.4, + "z": 13.42 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 38.58, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B3_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 50.78, + "y": 49.4, + "z": 13.42 + } + }, + { + "id": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic_C3", + "uuid": "fe5475f0-32f4-4d41-96bf-c4c604b8336c", + "name": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic_C3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "da2856c2-d96a-4986-8b41-9699ef3702d0", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 38.58, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 50.78, + "y": 29.9, + "z": 13.42 + }, + "position3d": { + "x": 50.78, + "y": 29.9, + "z": 13.42 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 38.58, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C3_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 50.78, + "y": 29.9, + "z": 13.42 + } + }, + { + "id": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic_D3", + "uuid": "52bb7726-88c5-4ecd-994c-7e3fa6c7b9dc", + "name": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic_D3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "da2856c2-d96a-4986-8b41-9699ef3702d0", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 38.58, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 50.78, + "y": 10.4, + "z": 13.42 + }, + "position3d": { + "x": 50.78, + "y": 10.4, + "z": 13.42 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 38.58, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D3_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 50.78, + "y": 10.4, + "z": 13.42 + } + }, + { + "id": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic_A4", + "uuid": "e77d3088-3ebf-46cb-8dfe-efead56f1785", + "name": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic_A4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "da2856c2-d96a-4986-8b41-9699ef3702d0", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 38.58, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 70.28, + "y": 68.9, + "z": 13.42 + }, + "position3d": { + "x": 70.28, + "y": 68.9, + "z": 13.42 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 38.58, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A4_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 70.28, + "y": 68.9, + "z": 13.42 + } + }, + { + "id": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic_B4", + "uuid": "ab850459-9516-44f0-ad40-89b4358a0335", + "name": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic_B4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "da2856c2-d96a-4986-8b41-9699ef3702d0", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 38.58, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 70.28, + "y": 49.4, + "z": 13.42 + }, + "position3d": { + "x": 70.28, + "y": 49.4, + "z": 13.42 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 38.58, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B4_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 70.28, + "y": 49.4, + "z": 13.42 + } + }, + { + "id": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic_C4", + "uuid": "6d4be942-6a07-4259-a6ed-ca149509063a", + "name": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic_C4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "da2856c2-d96a-4986-8b41-9699ef3702d0", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 38.58, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 70.28, + "y": 29.9, + "z": 13.42 + }, + "position3d": { + "x": 70.28, + "y": 29.9, + "z": 13.42 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 38.58, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C4_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 70.28, + "y": 29.9, + "z": 13.42 + } + }, + { + "id": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic_D4", + "uuid": "611215bc-12b0-46ab-b6f3-be6e961f902f", + "name": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic_D4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "da2856c2-d96a-4986-8b41-9699ef3702d0", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 38.58, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 70.28, + "y": 10.4, + "z": 13.42 + }, + "position3d": { + "x": 70.28, + "y": 10.4, + "z": 13.42 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 38.58, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D4_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 70.28, + "y": 10.4, + "z": 13.42 + } + }, + { + "id": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic_A5", + "uuid": "53c80dcc-8d19-4a1c-9f88-736d0df010b2", + "name": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic_A5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "da2856c2-d96a-4986-8b41-9699ef3702d0", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 38.58, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 89.78, + "y": 68.9, + "z": 13.42 + }, + "position3d": { + "x": 89.78, + "y": 68.9, + "z": 13.42 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 38.58, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A5_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 89.78, + "y": 68.9, + "z": 13.42 + } + }, + { + "id": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic_B5", + "uuid": "25b98eef-5015-4815-9478-1f330a66f4f7", + "name": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic_B5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "da2856c2-d96a-4986-8b41-9699ef3702d0", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 38.58, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 89.78, + "y": 49.4, + "z": 13.42 + }, + "position3d": { + "x": 89.78, + "y": 49.4, + "z": 13.42 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 38.58, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B5_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 89.78, + "y": 49.4, + "z": 13.42 + } + }, + { + "id": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic_C5", + "uuid": "a41f65c7-8331-4e72-9620-efe581986339", + "name": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic_C5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "da2856c2-d96a-4986-8b41-9699ef3702d0", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 38.58, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 89.78, + "y": 29.9, + "z": 13.42 + }, + "position3d": { + "x": 89.78, + "y": 29.9, + "z": 13.42 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 38.58, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C5_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 89.78, + "y": 29.9, + "z": 13.42 + } + }, + { + "id": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic_D5", + "uuid": "ffdee338-bfce-48c0-a175-743d669fb7d0", + "name": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic_D5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "da2856c2-d96a-4986-8b41-9699ef3702d0", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 38.58, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 89.78, + "y": 10.4, + "z": 13.42 + }, + "position3d": { + "x": 89.78, + "y": 10.4, + "z": 13.42 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 38.58, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D5_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 89.78, + "y": 10.4, + "z": 13.42 + } + }, + { + "id": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic_A6", + "uuid": "ddd74f5e-f089-423b-bc15-a100c0b36bb6", + "name": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic_A6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "da2856c2-d96a-4986-8b41-9699ef3702d0", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 38.58, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.28, + "y": 68.9, + "z": 13.42 + }, + "position3d": { + "x": 109.28, + "y": 68.9, + "z": 13.42 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 38.58, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A6_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.28, + "y": 68.9, + "z": 13.42 + } + }, + { + "id": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic_B6", + "uuid": "9e516513-0ccc-4ee9-b200-c4833cf1d74d", + "name": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic_B6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "da2856c2-d96a-4986-8b41-9699ef3702d0", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 38.58, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.28, + "y": 49.4, + "z": 13.42 + }, + "position3d": { + "x": 109.28, + "y": 49.4, + "z": 13.42 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 38.58, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B6_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.28, + "y": 49.4, + "z": 13.42 + } + }, + { + "id": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic_C6", + "uuid": "4fd910d7-e8ef-4c3f-8e44-be83ea8f8ce4", + "name": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic_C6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "da2856c2-d96a-4986-8b41-9699ef3702d0", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 38.58, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.28, + "y": 29.9, + "z": 13.42 + }, + "position3d": { + "x": 109.28, + "y": 29.9, + "z": 13.42 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 38.58, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C6_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.28, + "y": 29.9, + "z": 13.42 + } + }, + { + "id": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic_D6", + "uuid": "940dbb6b-f1ed-4972-8a2c-0446aa5e2d12", + "name": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic_D6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "da2856c2-d96a-4986-8b41-9699ef3702d0", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 38.58, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.28, + "y": 10.4, + "z": 13.42 + }, + "position3d": { + "x": 109.28, + "y": 10.4, + "z": 13.42 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 38.58, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2000, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D6_volume_tracker", + "max_volume": 2000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.28, + "y": 10.4, + "z": 13.42 + } + } + ] + }, + { + "id": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic", + "category": [ + "tube_racks" + ], + "class": { + "module": "pylabrobot.resources.opentrons.tube_racks:opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic", + "type": "pylabrobot" + }, + "description": "Opentrons 24 tuberack generic 0.75ml snapcap acrylic", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/opentrons/tube_racks.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic", + "uuid": "ba989cde-2168-4db8-936d-df1528cbf381", + "name": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "", + "class": "", + "pose": { + "size": { + "depth": 55.0, + "width": 127.76, + "height": 85.48 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TubeRack", + "size_x": 127.76, + "size_y": 85.48, + "size_z": 55, + "category": null, + "model": "Opentrons 24 Tube Rack (Acrylic) with Generic 0.75 mL Snapcap", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic_A1", + "B1": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic_B1", + "C1": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic_C1", + "D1": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic_D1", + "A2": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic_A2", + "B2": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic_B2", + "C2": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic_C2", + "D2": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic_D2", + "A3": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic_A3", + "B3": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic_B3", + "C3": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic_C3", + "D3": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic_D3", + "A4": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic_A4", + "B4": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic_B4", + "C4": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic_C4", + "D4": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic_D4", + "A5": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic_A5", + "B5": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic_B5", + "C5": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic_C5", + "D5": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic_D5", + "A6": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic_A6", + "B6": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic_B6", + "C6": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic_C6", + "D6": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic_D6" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic_A1", + "uuid": "507f8e9d-aae4-4147-a084-14cfbcc955d6", + "name": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ba989cde-2168-4db8-936d-df1528cbf381", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 20.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 14.6385, + "y": 68.4985, + "z": 35.0 + }, + "position3d": { + "x": 14.6385, + "y": 68.4985, + "z": 35.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 20, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 750, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A1_volume_tracker", + "max_volume": 750, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 14.6385, + "y": 68.4985, + "z": 35.0 + } + }, + { + "id": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic_B1", + "uuid": "930fae4e-fd18-485e-aec8-8ba263026586", + "name": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic_B1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ba989cde-2168-4db8-936d-df1528cbf381", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 20.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 14.6385, + "y": 48.9385, + "z": 35.0 + }, + "position3d": { + "x": 14.6385, + "y": 48.9385, + "z": 35.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 20, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 750, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B1_volume_tracker", + "max_volume": 750, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 14.6385, + "y": 48.9385, + "z": 35.0 + } + }, + { + "id": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic_C1", + "uuid": "5134e418-1098-44ad-80a3-313280269b62", + "name": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic_C1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ba989cde-2168-4db8-936d-df1528cbf381", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 20.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 14.6385, + "y": 29.3785, + "z": 35.0 + }, + "position3d": { + "x": 14.6385, + "y": 29.3785, + "z": 35.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 20, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 750, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C1_volume_tracker", + "max_volume": 750, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 14.6385, + "y": 29.3785, + "z": 35.0 + } + }, + { + "id": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic_D1", + "uuid": "86e7916e-b76d-448b-8304-3edb42846b40", + "name": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic_D1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ba989cde-2168-4db8-936d-df1528cbf381", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 20.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 14.6385, + "y": 9.8185, + "z": 35.0 + }, + "position3d": { + "x": 14.6385, + "y": 9.8185, + "z": 35.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 20, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 750, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D1_volume_tracker", + "max_volume": 750, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 14.6385, + "y": 9.8185, + "z": 35.0 + } + }, + { + "id": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic_A2", + "uuid": "48b8352f-70d8-49e0-a52c-1cf4332c4e93", + "name": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ba989cde-2168-4db8-936d-df1528cbf381", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 20.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 34.1985, + "y": 68.4985, + "z": 35.0 + }, + "position3d": { + "x": 34.1985, + "y": 68.4985, + "z": 35.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 20, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 750, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A2_volume_tracker", + "max_volume": 750, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 34.1985, + "y": 68.4985, + "z": 35.0 + } + }, + { + "id": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic_B2", + "uuid": "c4fef52e-f45d-49b7-a0ef-b90bffb1abb5", + "name": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic_B2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ba989cde-2168-4db8-936d-df1528cbf381", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 20.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 34.1985, + "y": 48.9385, + "z": 35.0 + }, + "position3d": { + "x": 34.1985, + "y": 48.9385, + "z": 35.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 20, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 750, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B2_volume_tracker", + "max_volume": 750, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 34.1985, + "y": 48.9385, + "z": 35.0 + } + }, + { + "id": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic_C2", + "uuid": "d7b93fac-5d4f-4b14-9581-d19a91b21668", + "name": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic_C2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ba989cde-2168-4db8-936d-df1528cbf381", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 20.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 34.1985, + "y": 29.3785, + "z": 35.0 + }, + "position3d": { + "x": 34.1985, + "y": 29.3785, + "z": 35.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 20, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 750, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C2_volume_tracker", + "max_volume": 750, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 34.1985, + "y": 29.3785, + "z": 35.0 + } + }, + { + "id": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic_D2", + "uuid": "6b594aad-93f4-46e5-a009-e0b04bb3863d", + "name": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic_D2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ba989cde-2168-4db8-936d-df1528cbf381", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 20.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 34.1985, + "y": 9.8185, + "z": 35.0 + }, + "position3d": { + "x": 34.1985, + "y": 9.8185, + "z": 35.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 20, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 750, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D2_volume_tracker", + "max_volume": 750, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 34.1985, + "y": 9.8185, + "z": 35.0 + } + }, + { + "id": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic_A3", + "uuid": "9c7373af-3024-463b-8b98-ec05cccd8348", + "name": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic_A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ba989cde-2168-4db8-936d-df1528cbf381", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 20.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 53.7585, + "y": 68.4985, + "z": 35.0 + }, + "position3d": { + "x": 53.7585, + "y": 68.4985, + "z": 35.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 20, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 750, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A3_volume_tracker", + "max_volume": 750, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 53.7585, + "y": 68.4985, + "z": 35.0 + } + }, + { + "id": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic_B3", + "uuid": "d5e496f4-82f2-4b68-9623-01fca4783458", + "name": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic_B3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ba989cde-2168-4db8-936d-df1528cbf381", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 20.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 53.7585, + "y": 48.9385, + "z": 35.0 + }, + "position3d": { + "x": 53.7585, + "y": 48.9385, + "z": 35.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 20, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 750, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B3_volume_tracker", + "max_volume": 750, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 53.7585, + "y": 48.9385, + "z": 35.0 + } + }, + { + "id": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic_C3", + "uuid": "e93b380b-1ea5-4932-a6c6-5de0ce0839a0", + "name": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic_C3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ba989cde-2168-4db8-936d-df1528cbf381", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 20.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 53.7585, + "y": 29.3785, + "z": 35.0 + }, + "position3d": { + "x": 53.7585, + "y": 29.3785, + "z": 35.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 20, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 750, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C3_volume_tracker", + "max_volume": 750, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 53.7585, + "y": 29.3785, + "z": 35.0 + } + }, + { + "id": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic_D3", + "uuid": "1c2db530-1918-4ae3-9e55-a38d12a65f5e", + "name": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic_D3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ba989cde-2168-4db8-936d-df1528cbf381", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 20.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 53.7585, + "y": 9.8185, + "z": 35.0 + }, + "position3d": { + "x": 53.7585, + "y": 9.8185, + "z": 35.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 20, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 750, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D3_volume_tracker", + "max_volume": 750, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 53.7585, + "y": 9.8185, + "z": 35.0 + } + }, + { + "id": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic_A4", + "uuid": "88038679-0165-48d3-8218-44ee8952beed", + "name": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic_A4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ba989cde-2168-4db8-936d-df1528cbf381", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 20.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.3185, + "y": 68.4985, + "z": 35.0 + }, + "position3d": { + "x": 73.3185, + "y": 68.4985, + "z": 35.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 20, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 750, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A4_volume_tracker", + "max_volume": 750, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.3185, + "y": 68.4985, + "z": 35.0 + } + }, + { + "id": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic_B4", + "uuid": "4f7fc2cc-d9f5-459a-ae75-76df0c339f2c", + "name": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic_B4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ba989cde-2168-4db8-936d-df1528cbf381", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 20.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.3185, + "y": 48.9385, + "z": 35.0 + }, + "position3d": { + "x": 73.3185, + "y": 48.9385, + "z": 35.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 20, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 750, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B4_volume_tracker", + "max_volume": 750, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.3185, + "y": 48.9385, + "z": 35.0 + } + }, + { + "id": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic_C4", + "uuid": "99f75e5c-e2b0-46b6-a79b-fb8d04c8bd57", + "name": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic_C4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ba989cde-2168-4db8-936d-df1528cbf381", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 20.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.3185, + "y": 29.3785, + "z": 35.0 + }, + "position3d": { + "x": 73.3185, + "y": 29.3785, + "z": 35.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 20, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 750, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C4_volume_tracker", + "max_volume": 750, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.3185, + "y": 29.3785, + "z": 35.0 + } + }, + { + "id": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic_D4", + "uuid": "f42e859d-279e-4281-a8f2-c75889440351", + "name": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic_D4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ba989cde-2168-4db8-936d-df1528cbf381", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 20.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.3185, + "y": 9.8185, + "z": 35.0 + }, + "position3d": { + "x": 73.3185, + "y": 9.8185, + "z": 35.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 20, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 750, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D4_volume_tracker", + "max_volume": 750, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.3185, + "y": 9.8185, + "z": 35.0 + } + }, + { + "id": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic_A5", + "uuid": "03239a91-7faa-4101-9cd4-94474bcc5a72", + "name": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic_A5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ba989cde-2168-4db8-936d-df1528cbf381", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 20.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.8785, + "y": 68.4985, + "z": 35.0 + }, + "position3d": { + "x": 92.8785, + "y": 68.4985, + "z": 35.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 20, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 750, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A5_volume_tracker", + "max_volume": 750, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.8785, + "y": 68.4985, + "z": 35.0 + } + }, + { + "id": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic_B5", + "uuid": "0a41bbb9-938f-453d-8405-d8e456e67834", + "name": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic_B5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ba989cde-2168-4db8-936d-df1528cbf381", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 20.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.8785, + "y": 48.9385, + "z": 35.0 + }, + "position3d": { + "x": 92.8785, + "y": 48.9385, + "z": 35.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 20, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 750, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B5_volume_tracker", + "max_volume": 750, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.8785, + "y": 48.9385, + "z": 35.0 + } + }, + { + "id": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic_C5", + "uuid": "4c96ead5-d089-45d5-896e-caf69c850656", + "name": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic_C5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ba989cde-2168-4db8-936d-df1528cbf381", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 20.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.8785, + "y": 29.3785, + "z": 35.0 + }, + "position3d": { + "x": 92.8785, + "y": 29.3785, + "z": 35.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 20, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 750, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C5_volume_tracker", + "max_volume": 750, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.8785, + "y": 29.3785, + "z": 35.0 + } + }, + { + "id": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic_D5", + "uuid": "9b2e2d4d-c70f-495f-af3b-a6924fa8f282", + "name": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic_D5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ba989cde-2168-4db8-936d-df1528cbf381", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 20.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.8785, + "y": 9.8185, + "z": 35.0 + }, + "position3d": { + "x": 92.8785, + "y": 9.8185, + "z": 35.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 20, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 750, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D5_volume_tracker", + "max_volume": 750, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.8785, + "y": 9.8185, + "z": 35.0 + } + }, + { + "id": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic_A6", + "uuid": "5b6d4b55-17a6-4a4a-9182-d7f41bcc2e07", + "name": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic_A6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ba989cde-2168-4db8-936d-df1528cbf381", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 20.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 112.4385, + "y": 68.4985, + "z": 35.0 + }, + "position3d": { + "x": 112.4385, + "y": 68.4985, + "z": 35.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 20, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 750, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A6_volume_tracker", + "max_volume": 750, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 112.4385, + "y": 68.4985, + "z": 35.0 + } + }, + { + "id": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic_B6", + "uuid": "08e7f240-dd57-401f-a74f-3617c69007cc", + "name": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic_B6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ba989cde-2168-4db8-936d-df1528cbf381", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 20.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 112.4385, + "y": 48.9385, + "z": 35.0 + }, + "position3d": { + "x": 112.4385, + "y": 48.9385, + "z": 35.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 20, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 750, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B6_volume_tracker", + "max_volume": 750, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 112.4385, + "y": 48.9385, + "z": 35.0 + } + }, + { + "id": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic_C6", + "uuid": "09e6c76d-f0ab-4217-9d9a-9cc71eeec3f4", + "name": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic_C6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ba989cde-2168-4db8-936d-df1528cbf381", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 20.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 112.4385, + "y": 29.3785, + "z": 35.0 + }, + "position3d": { + "x": 112.4385, + "y": 29.3785, + "z": 35.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 20, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 750, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C6_volume_tracker", + "max_volume": 750, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 112.4385, + "y": 29.3785, + "z": 35.0 + } + }, + { + "id": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic_D6", + "uuid": "2b2a2513-2679-40ee-b994-75f6b3bfc315", + "name": "opentrons_24_tuberack_generic_0point75ml_snapcap_acrylic_D6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ba989cde-2168-4db8-936d-df1528cbf381", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 20.0, + "width": 4.243, + "height": 4.243 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 112.4385, + "y": 9.8185, + "z": 35.0 + }, + "position3d": { + "x": 112.4385, + "y": 9.8185, + "z": 35.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 4.243, + "size_y": 4.243, + "size_z": 20, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 750, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D6_volume_tracker", + "max_volume": 750, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 112.4385, + "y": 9.8185, + "z": 35.0 + } + } + ] + }, + { + "id": "opentrons_24_tuberack_generic_2ml_screwcap", + "category": [ + "tube_racks" + ], + "class": { + "module": "pylabrobot.resources.opentrons.tube_racks:opentrons_24_tuberack_generic_2ml_screwcap", + "type": "pylabrobot" + }, + "description": "Opentrons 24 tuberack generic 2ml screwcap", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/opentrons/tube_racks.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "opentrons_24_tuberack_generic_2ml_screwcap", + "uuid": "6ef74f24-365e-4347-a0e0-53900de6dbb3", + "name": "opentrons_24_tuberack_generic_2ml_screwcap", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "", + "class": "", + "pose": { + "size": { + "depth": 84.0, + "width": 127.75, + "height": 85.5 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TubeRack", + "size_x": 127.75, + "size_y": 85.5, + "size_z": 84, + "category": null, + "model": "Opentrons 24 Tube Rack with Generic 2 mL Screwcap", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "opentrons_24_tuberack_generic_2ml_screwcap_A1", + "B1": "opentrons_24_tuberack_generic_2ml_screwcap_B1", + "C1": "opentrons_24_tuberack_generic_2ml_screwcap_C1", + "D1": "opentrons_24_tuberack_generic_2ml_screwcap_D1", + "A2": "opentrons_24_tuberack_generic_2ml_screwcap_A2", + "B2": "opentrons_24_tuberack_generic_2ml_screwcap_B2", + "C2": "opentrons_24_tuberack_generic_2ml_screwcap_C2", + "D2": "opentrons_24_tuberack_generic_2ml_screwcap_D2", + "A3": "opentrons_24_tuberack_generic_2ml_screwcap_A3", + "B3": "opentrons_24_tuberack_generic_2ml_screwcap_B3", + "C3": "opentrons_24_tuberack_generic_2ml_screwcap_C3", + "D3": "opentrons_24_tuberack_generic_2ml_screwcap_D3", + "A4": "opentrons_24_tuberack_generic_2ml_screwcap_A4", + "B4": "opentrons_24_tuberack_generic_2ml_screwcap_B4", + "C4": "opentrons_24_tuberack_generic_2ml_screwcap_C4", + "D4": "opentrons_24_tuberack_generic_2ml_screwcap_D4", + "A5": "opentrons_24_tuberack_generic_2ml_screwcap_A5", + "B5": "opentrons_24_tuberack_generic_2ml_screwcap_B5", + "C5": "opentrons_24_tuberack_generic_2ml_screwcap_C5", + "D5": "opentrons_24_tuberack_generic_2ml_screwcap_D5", + "A6": "opentrons_24_tuberack_generic_2ml_screwcap_A6", + "B6": "opentrons_24_tuberack_generic_2ml_screwcap_B6", + "C6": "opentrons_24_tuberack_generic_2ml_screwcap_C6", + "D6": "opentrons_24_tuberack_generic_2ml_screwcap_D6" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "opentrons_24_tuberack_generic_2ml_screwcap_A1", + "uuid": "7a4bdbab-4ff2-40dc-8bf9-28313ced3a53", + "name": "opentrons_24_tuberack_generic_2ml_screwcap_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6ef74f24-365e-4347-a0e0-53900de6dbb3", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 15.205, + "y": 72.425, + "z": 42.0 + }, + "position3d": { + "x": 15.205, + "y": 72.425, + "z": 42.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 42, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 15.205, + "y": 72.425, + "z": 42.0 + } + }, + { + "id": "opentrons_24_tuberack_generic_2ml_screwcap_B1", + "uuid": "9371e086-ee29-45e9-8ad1-8ddfc5e430f6", + "name": "opentrons_24_tuberack_generic_2ml_screwcap_B1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6ef74f24-365e-4347-a0e0-53900de6dbb3", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 15.205, + "y": 53.145, + "z": 42.0 + }, + "position3d": { + "x": 15.205, + "y": 53.145, + "z": 42.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 42, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 15.205, + "y": 53.145, + "z": 42.0 + } + }, + { + "id": "opentrons_24_tuberack_generic_2ml_screwcap_C1", + "uuid": "ebec6237-7348-4a13-a436-2b1311ee5393", + "name": "opentrons_24_tuberack_generic_2ml_screwcap_C1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6ef74f24-365e-4347-a0e0-53900de6dbb3", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 15.205, + "y": 33.865, + "z": 42.0 + }, + "position3d": { + "x": 15.205, + "y": 33.865, + "z": 42.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 42, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 15.205, + "y": 33.865, + "z": 42.0 + } + }, + { + "id": "opentrons_24_tuberack_generic_2ml_screwcap_D1", + "uuid": "c704aa6a-a941-4b66-9707-2b2425d76fb8", + "name": "opentrons_24_tuberack_generic_2ml_screwcap_D1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6ef74f24-365e-4347-a0e0-53900de6dbb3", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 15.205, + "y": 14.585, + "z": 42.0 + }, + "position3d": { + "x": 15.205, + "y": 14.585, + "z": 42.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 42, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 15.205, + "y": 14.585, + "z": 42.0 + } + }, + { + "id": "opentrons_24_tuberack_generic_2ml_screwcap_A2", + "uuid": "5ac2a8ab-95c6-4950-9234-ac33a147eb76", + "name": "opentrons_24_tuberack_generic_2ml_screwcap_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6ef74f24-365e-4347-a0e0-53900de6dbb3", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 35.095, + "y": 72.425, + "z": 42.0 + }, + "position3d": { + "x": 35.095, + "y": 72.425, + "z": 42.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 42, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 35.095, + "y": 72.425, + "z": 42.0 + } + }, + { + "id": "opentrons_24_tuberack_generic_2ml_screwcap_B2", + "uuid": "d8711f90-3cd4-46e5-a543-b26f8dba1d58", + "name": "opentrons_24_tuberack_generic_2ml_screwcap_B2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6ef74f24-365e-4347-a0e0-53900de6dbb3", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 35.095, + "y": 53.145, + "z": 42.0 + }, + "position3d": { + "x": 35.095, + "y": 53.145, + "z": 42.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 42, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 35.095, + "y": 53.145, + "z": 42.0 + } + }, + { + "id": "opentrons_24_tuberack_generic_2ml_screwcap_C2", + "uuid": "d531205f-67ad-444a-b9f5-05b14756d686", + "name": "opentrons_24_tuberack_generic_2ml_screwcap_C2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6ef74f24-365e-4347-a0e0-53900de6dbb3", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 35.095, + "y": 33.865, + "z": 42.0 + }, + "position3d": { + "x": 35.095, + "y": 33.865, + "z": 42.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 42, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 35.095, + "y": 33.865, + "z": 42.0 + } + }, + { + "id": "opentrons_24_tuberack_generic_2ml_screwcap_D2", + "uuid": "ec76a8b9-6908-4f75-b401-4101a6348ec2", + "name": "opentrons_24_tuberack_generic_2ml_screwcap_D2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6ef74f24-365e-4347-a0e0-53900de6dbb3", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 35.095, + "y": 14.585, + "z": 42.0 + }, + "position3d": { + "x": 35.095, + "y": 14.585, + "z": 42.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 42, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 35.095, + "y": 14.585, + "z": 42.0 + } + }, + { + "id": "opentrons_24_tuberack_generic_2ml_screwcap_A3", + "uuid": "44aa04f4-70b9-4dca-8921-8431b5f4535f", + "name": "opentrons_24_tuberack_generic_2ml_screwcap_A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6ef74f24-365e-4347-a0e0-53900de6dbb3", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 54.985, + "y": 72.425, + "z": 42.0 + }, + "position3d": { + "x": 54.985, + "y": 72.425, + "z": 42.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 42, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 54.985, + "y": 72.425, + "z": 42.0 + } + }, + { + "id": "opentrons_24_tuberack_generic_2ml_screwcap_B3", + "uuid": "180003c8-e359-4b54-890b-0aa236c10a37", + "name": "opentrons_24_tuberack_generic_2ml_screwcap_B3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6ef74f24-365e-4347-a0e0-53900de6dbb3", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 54.985, + "y": 53.145, + "z": 42.0 + }, + "position3d": { + "x": 54.985, + "y": 53.145, + "z": 42.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 42, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 54.985, + "y": 53.145, + "z": 42.0 + } + }, + { + "id": "opentrons_24_tuberack_generic_2ml_screwcap_C3", + "uuid": "95e4feb3-779e-45f3-908b-aeb26de9bcf3", + "name": "opentrons_24_tuberack_generic_2ml_screwcap_C3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6ef74f24-365e-4347-a0e0-53900de6dbb3", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 54.985, + "y": 33.865, + "z": 42.0 + }, + "position3d": { + "x": 54.985, + "y": 33.865, + "z": 42.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 42, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 54.985, + "y": 33.865, + "z": 42.0 + } + }, + { + "id": "opentrons_24_tuberack_generic_2ml_screwcap_D3", + "uuid": "a1fda5ce-b66e-41cb-86f5-1e92225d8de6", + "name": "opentrons_24_tuberack_generic_2ml_screwcap_D3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6ef74f24-365e-4347-a0e0-53900de6dbb3", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 54.985, + "y": 14.585, + "z": 42.0 + }, + "position3d": { + "x": 54.985, + "y": 14.585, + "z": 42.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 42, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 54.985, + "y": 14.585, + "z": 42.0 + } + }, + { + "id": "opentrons_24_tuberack_generic_2ml_screwcap_A4", + "uuid": "ac6c4fb8-f98c-4663-8a41-0218aa4496e4", + "name": "opentrons_24_tuberack_generic_2ml_screwcap_A4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6ef74f24-365e-4347-a0e0-53900de6dbb3", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.875, + "y": 72.425, + "z": 42.0 + }, + "position3d": { + "x": 74.875, + "y": 72.425, + "z": 42.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 42, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.875, + "y": 72.425, + "z": 42.0 + } + }, + { + "id": "opentrons_24_tuberack_generic_2ml_screwcap_B4", + "uuid": "f19cb60b-97b7-4d24-939f-4437150d9878", + "name": "opentrons_24_tuberack_generic_2ml_screwcap_B4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6ef74f24-365e-4347-a0e0-53900de6dbb3", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.875, + "y": 53.145, + "z": 42.0 + }, + "position3d": { + "x": 74.875, + "y": 53.145, + "z": 42.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 42, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.875, + "y": 53.145, + "z": 42.0 + } + }, + { + "id": "opentrons_24_tuberack_generic_2ml_screwcap_C4", + "uuid": "2b060934-ec88-4e06-a0d3-2f83647dd3a3", + "name": "opentrons_24_tuberack_generic_2ml_screwcap_C4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6ef74f24-365e-4347-a0e0-53900de6dbb3", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.875, + "y": 33.865, + "z": 42.0 + }, + "position3d": { + "x": 74.875, + "y": 33.865, + "z": 42.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 42, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.875, + "y": 33.865, + "z": 42.0 + } + }, + { + "id": "opentrons_24_tuberack_generic_2ml_screwcap_D4", + "uuid": "f5ce4e86-1d2f-439f-a106-053499154853", + "name": "opentrons_24_tuberack_generic_2ml_screwcap_D4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6ef74f24-365e-4347-a0e0-53900de6dbb3", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.875, + "y": 14.585, + "z": 42.0 + }, + "position3d": { + "x": 74.875, + "y": 14.585, + "z": 42.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 42, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.875, + "y": 14.585, + "z": 42.0 + } + }, + { + "id": "opentrons_24_tuberack_generic_2ml_screwcap_A5", + "uuid": "bce41fff-cbd8-4331-91d7-45dbb4658ca0", + "name": "opentrons_24_tuberack_generic_2ml_screwcap_A5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6ef74f24-365e-4347-a0e0-53900de6dbb3", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.765, + "y": 72.425, + "z": 42.0 + }, + "position3d": { + "x": 94.765, + "y": 72.425, + "z": 42.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 42, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.765, + "y": 72.425, + "z": 42.0 + } + }, + { + "id": "opentrons_24_tuberack_generic_2ml_screwcap_B5", + "uuid": "1db40e88-10c3-48d2-b695-557a23f851cc", + "name": "opentrons_24_tuberack_generic_2ml_screwcap_B5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6ef74f24-365e-4347-a0e0-53900de6dbb3", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.765, + "y": 53.145, + "z": 42.0 + }, + "position3d": { + "x": 94.765, + "y": 53.145, + "z": 42.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 42, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.765, + "y": 53.145, + "z": 42.0 + } + }, + { + "id": "opentrons_24_tuberack_generic_2ml_screwcap_C5", + "uuid": "70b78edd-d971-465a-8317-69ba42841c15", + "name": "opentrons_24_tuberack_generic_2ml_screwcap_C5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6ef74f24-365e-4347-a0e0-53900de6dbb3", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.765, + "y": 33.865, + "z": 42.0 + }, + "position3d": { + "x": 94.765, + "y": 33.865, + "z": 42.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 42, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.765, + "y": 33.865, + "z": 42.0 + } + }, + { + "id": "opentrons_24_tuberack_generic_2ml_screwcap_D5", + "uuid": "3edd9ba9-c52c-4302-8882-08817c572ae9", + "name": "opentrons_24_tuberack_generic_2ml_screwcap_D5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6ef74f24-365e-4347-a0e0-53900de6dbb3", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.765, + "y": 14.585, + "z": 42.0 + }, + "position3d": { + "x": 94.765, + "y": 14.585, + "z": 42.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 42, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.765, + "y": 14.585, + "z": 42.0 + } + }, + { + "id": "opentrons_24_tuberack_generic_2ml_screwcap_A6", + "uuid": "b8f6c760-c010-4aad-8a1f-45734fba790e", + "name": "opentrons_24_tuberack_generic_2ml_screwcap_A6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6ef74f24-365e-4347-a0e0-53900de6dbb3", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.655, + "y": 72.425, + "z": 42.0 + }, + "position3d": { + "x": 114.655, + "y": 72.425, + "z": 42.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 42, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.655, + "y": 72.425, + "z": 42.0 + } + }, + { + "id": "opentrons_24_tuberack_generic_2ml_screwcap_B6", + "uuid": "650ccdec-6949-4615-8cb6-bd7aa51e4901", + "name": "opentrons_24_tuberack_generic_2ml_screwcap_B6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6ef74f24-365e-4347-a0e0-53900de6dbb3", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.655, + "y": 53.145, + "z": 42.0 + }, + "position3d": { + "x": 114.655, + "y": 53.145, + "z": 42.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 42, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.655, + "y": 53.145, + "z": 42.0 + } + }, + { + "id": "opentrons_24_tuberack_generic_2ml_screwcap_C6", + "uuid": "fac6a079-b3aa-4a89-9c3d-cd8cc202895c", + "name": "opentrons_24_tuberack_generic_2ml_screwcap_C6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6ef74f24-365e-4347-a0e0-53900de6dbb3", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.655, + "y": 33.865, + "z": 42.0 + }, + "position3d": { + "x": 114.655, + "y": 33.865, + "z": 42.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 42, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.655, + "y": 33.865, + "z": 42.0 + } + }, + { + "id": "opentrons_24_tuberack_generic_2ml_screwcap_D6", + "uuid": "63d4ea1e-20cb-4445-bf1d-97511c2d73b4", + "name": "opentrons_24_tuberack_generic_2ml_screwcap_D6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6ef74f24-365e-4347-a0e0-53900de6dbb3", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 6.01, + "height": 6.01 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.655, + "y": 14.585, + "z": 42.0 + }, + "position3d": { + "x": 114.655, + "y": 14.585, + "z": 42.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.01, + "size_y": 6.01, + "size_z": 42, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.655, + "y": 14.585, + "z": 42.0 + } + } + ] + }, + { + "id": "opentrons_24_tuberack_nest_0point5ml_screwcap", + "category": [ + "tube_racks" + ], + "class": { + "module": "pylabrobot.resources.opentrons.tube_racks:opentrons_24_tuberack_nest_0point5ml_screwcap", + "type": "pylabrobot" + }, + "description": "Opentrons 24 tuberack nest 0.5ml screwcap", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/opentrons/tube_racks.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "opentrons_24_tuberack_nest_0point5ml_screwcap", + "uuid": "661cf02d-2166-4a45-a22f-7f1ed5c9b66e", + "name": "opentrons_24_tuberack_nest_0point5ml_screwcap", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "", + "class": "", + "pose": { + "size": { + "depth": 85.2, + "width": 127.75, + "height": 85.5 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TubeRack", + "size_x": 127.75, + "size_y": 85.5, + "size_z": 85.2, + "category": null, + "model": "Opentrons 24 Tube Rack with NEST 0.5 mL Screwcap", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "opentrons_24_tuberack_nest_0point5ml_screwcap_A1", + "B1": "opentrons_24_tuberack_nest_0point5ml_screwcap_B1", + "C1": "opentrons_24_tuberack_nest_0point5ml_screwcap_C1", + "D1": "opentrons_24_tuberack_nest_0point5ml_screwcap_D1", + "A2": "opentrons_24_tuberack_nest_0point5ml_screwcap_A2", + "B2": "opentrons_24_tuberack_nest_0point5ml_screwcap_B2", + "C2": "opentrons_24_tuberack_nest_0point5ml_screwcap_C2", + "D2": "opentrons_24_tuberack_nest_0point5ml_screwcap_D2", + "A3": "opentrons_24_tuberack_nest_0point5ml_screwcap_A3", + "B3": "opentrons_24_tuberack_nest_0point5ml_screwcap_B3", + "C3": "opentrons_24_tuberack_nest_0point5ml_screwcap_C3", + "D3": "opentrons_24_tuberack_nest_0point5ml_screwcap_D3", + "A4": "opentrons_24_tuberack_nest_0point5ml_screwcap_A4", + "B4": "opentrons_24_tuberack_nest_0point5ml_screwcap_B4", + "C4": "opentrons_24_tuberack_nest_0point5ml_screwcap_C4", + "D4": "opentrons_24_tuberack_nest_0point5ml_screwcap_D4", + "A5": "opentrons_24_tuberack_nest_0point5ml_screwcap_A5", + "B5": "opentrons_24_tuberack_nest_0point5ml_screwcap_B5", + "C5": "opentrons_24_tuberack_nest_0point5ml_screwcap_C5", + "D5": "opentrons_24_tuberack_nest_0point5ml_screwcap_D5", + "A6": "opentrons_24_tuberack_nest_0point5ml_screwcap_A6", + "B6": "opentrons_24_tuberack_nest_0point5ml_screwcap_B6", + "C6": "opentrons_24_tuberack_nest_0point5ml_screwcap_C6", + "D6": "opentrons_24_tuberack_nest_0point5ml_screwcap_D6" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "opentrons_24_tuberack_nest_0point5ml_screwcap_A1", + "uuid": "2c0dc1b5-a6c6-4958-80b8-b32136810cd0", + "name": "opentrons_24_tuberack_nest_0point5ml_screwcap_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "661cf02d-2166-4a45-a22f-7f1ed5c9b66e", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 25.2, + "width": 6.145, + "height": 6.145 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 15.1375, + "y": 72.3575, + "z": 60.0 + }, + "position3d": { + "x": 15.1375, + "y": 72.3575, + "z": 60.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 6.145, + "size_y": 6.145, + "size_z": 25.2, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A1_volume_tracker", + "max_volume": 500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 15.1375, + "y": 72.3575, + "z": 60.0 + } + }, + { + "id": "opentrons_24_tuberack_nest_0point5ml_screwcap_B1", + "uuid": "b0794723-9182-4fd0-8ab0-1f8454a36275", + "name": "opentrons_24_tuberack_nest_0point5ml_screwcap_B1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "661cf02d-2166-4a45-a22f-7f1ed5c9b66e", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 25.2, + "width": 6.145, + "height": 6.145 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 15.1375, + "y": 53.0775, + "z": 60.0 + }, + "position3d": { + "x": 15.1375, + "y": 53.0775, + "z": 60.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 6.145, + "size_y": 6.145, + "size_z": 25.2, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B1_volume_tracker", + "max_volume": 500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 15.1375, + "y": 53.0775, + "z": 60.0 + } + }, + { + "id": "opentrons_24_tuberack_nest_0point5ml_screwcap_C1", + "uuid": "ae4b586c-9efe-45cb-b345-688673fd66db", + "name": "opentrons_24_tuberack_nest_0point5ml_screwcap_C1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "661cf02d-2166-4a45-a22f-7f1ed5c9b66e", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 25.2, + "width": 6.145, + "height": 6.145 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 15.1375, + "y": 33.7975, + "z": 60.0 + }, + "position3d": { + "x": 15.1375, + "y": 33.7975, + "z": 60.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 6.145, + "size_y": 6.145, + "size_z": 25.2, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C1_volume_tracker", + "max_volume": 500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 15.1375, + "y": 33.7975, + "z": 60.0 + } + }, + { + "id": "opentrons_24_tuberack_nest_0point5ml_screwcap_D1", + "uuid": "e4ab4549-f3b4-4bfc-82b6-bbd7a7d3b459", + "name": "opentrons_24_tuberack_nest_0point5ml_screwcap_D1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "661cf02d-2166-4a45-a22f-7f1ed5c9b66e", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 25.2, + "width": 6.145, + "height": 6.145 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 15.1375, + "y": 14.5175, + "z": 60.0 + }, + "position3d": { + "x": 15.1375, + "y": 14.5175, + "z": 60.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 6.145, + "size_y": 6.145, + "size_z": 25.2, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D1_volume_tracker", + "max_volume": 500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 15.1375, + "y": 14.5175, + "z": 60.0 + } + }, + { + "id": "opentrons_24_tuberack_nest_0point5ml_screwcap_A2", + "uuid": "bc847b14-f9e6-4eea-b4e2-a3fbf3c2a066", + "name": "opentrons_24_tuberack_nest_0point5ml_screwcap_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "661cf02d-2166-4a45-a22f-7f1ed5c9b66e", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 25.2, + "width": 6.145, + "height": 6.145 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 35.0275, + "y": 72.3575, + "z": 60.0 + }, + "position3d": { + "x": 35.0275, + "y": 72.3575, + "z": 60.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 6.145, + "size_y": 6.145, + "size_z": 25.2, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A2_volume_tracker", + "max_volume": 500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 35.0275, + "y": 72.3575, + "z": 60.0 + } + }, + { + "id": "opentrons_24_tuberack_nest_0point5ml_screwcap_B2", + "uuid": "a0e00fbf-6e19-4061-ad7b-fa90a658e2e8", + "name": "opentrons_24_tuberack_nest_0point5ml_screwcap_B2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "661cf02d-2166-4a45-a22f-7f1ed5c9b66e", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 25.2, + "width": 6.145, + "height": 6.145 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 35.0275, + "y": 53.0775, + "z": 60.0 + }, + "position3d": { + "x": 35.0275, + "y": 53.0775, + "z": 60.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 6.145, + "size_y": 6.145, + "size_z": 25.2, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B2_volume_tracker", + "max_volume": 500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 35.0275, + "y": 53.0775, + "z": 60.0 + } + }, + { + "id": "opentrons_24_tuberack_nest_0point5ml_screwcap_C2", + "uuid": "37641673-d41f-43cf-b7ca-c8d78bbf467f", + "name": "opentrons_24_tuberack_nest_0point5ml_screwcap_C2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "661cf02d-2166-4a45-a22f-7f1ed5c9b66e", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 25.2, + "width": 6.145, + "height": 6.145 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 35.0275, + "y": 33.7975, + "z": 60.0 + }, + "position3d": { + "x": 35.0275, + "y": 33.7975, + "z": 60.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 6.145, + "size_y": 6.145, + "size_z": 25.2, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C2_volume_tracker", + "max_volume": 500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 35.0275, + "y": 33.7975, + "z": 60.0 + } + }, + { + "id": "opentrons_24_tuberack_nest_0point5ml_screwcap_D2", + "uuid": "11138d15-2699-4d77-9701-6b046c70ba24", + "name": "opentrons_24_tuberack_nest_0point5ml_screwcap_D2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "661cf02d-2166-4a45-a22f-7f1ed5c9b66e", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 25.2, + "width": 6.145, + "height": 6.145 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 35.0275, + "y": 14.5175, + "z": 60.0 + }, + "position3d": { + "x": 35.0275, + "y": 14.5175, + "z": 60.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 6.145, + "size_y": 6.145, + "size_z": 25.2, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D2_volume_tracker", + "max_volume": 500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 35.0275, + "y": 14.5175, + "z": 60.0 + } + }, + { + "id": "opentrons_24_tuberack_nest_0point5ml_screwcap_A3", + "uuid": "72b1abe5-2d27-4b5e-911a-fb8f83cce7a0", + "name": "opentrons_24_tuberack_nest_0point5ml_screwcap_A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "661cf02d-2166-4a45-a22f-7f1ed5c9b66e", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 25.2, + "width": 6.145, + "height": 6.145 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 54.9175, + "y": 72.3575, + "z": 60.0 + }, + "position3d": { + "x": 54.9175, + "y": 72.3575, + "z": 60.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 6.145, + "size_y": 6.145, + "size_z": 25.2, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A3_volume_tracker", + "max_volume": 500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 54.9175, + "y": 72.3575, + "z": 60.0 + } + }, + { + "id": "opentrons_24_tuberack_nest_0point5ml_screwcap_B3", + "uuid": "7a485933-89a4-4749-bf90-ad1c8fc8f4da", + "name": "opentrons_24_tuberack_nest_0point5ml_screwcap_B3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "661cf02d-2166-4a45-a22f-7f1ed5c9b66e", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 25.2, + "width": 6.145, + "height": 6.145 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 54.9175, + "y": 53.0775, + "z": 60.0 + }, + "position3d": { + "x": 54.9175, + "y": 53.0775, + "z": 60.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 6.145, + "size_y": 6.145, + "size_z": 25.2, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B3_volume_tracker", + "max_volume": 500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 54.9175, + "y": 53.0775, + "z": 60.0 + } + }, + { + "id": "opentrons_24_tuberack_nest_0point5ml_screwcap_C3", + "uuid": "06488de1-8d40-4c52-bc25-923cc19183d4", + "name": "opentrons_24_tuberack_nest_0point5ml_screwcap_C3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "661cf02d-2166-4a45-a22f-7f1ed5c9b66e", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 25.2, + "width": 6.145, + "height": 6.145 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 54.9175, + "y": 33.7975, + "z": 60.0 + }, + "position3d": { + "x": 54.9175, + "y": 33.7975, + "z": 60.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 6.145, + "size_y": 6.145, + "size_z": 25.2, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C3_volume_tracker", + "max_volume": 500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 54.9175, + "y": 33.7975, + "z": 60.0 + } + }, + { + "id": "opentrons_24_tuberack_nest_0point5ml_screwcap_D3", + "uuid": "f13efae1-d3f5-49bf-a1c4-24e2063cb00f", + "name": "opentrons_24_tuberack_nest_0point5ml_screwcap_D3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "661cf02d-2166-4a45-a22f-7f1ed5c9b66e", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 25.2, + "width": 6.145, + "height": 6.145 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 54.9175, + "y": 14.5175, + "z": 60.0 + }, + "position3d": { + "x": 54.9175, + "y": 14.5175, + "z": 60.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 6.145, + "size_y": 6.145, + "size_z": 25.2, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D3_volume_tracker", + "max_volume": 500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 54.9175, + "y": 14.5175, + "z": 60.0 + } + }, + { + "id": "opentrons_24_tuberack_nest_0point5ml_screwcap_A4", + "uuid": "4b53e46a-8942-4ff6-a706-dc3c04ac5001", + "name": "opentrons_24_tuberack_nest_0point5ml_screwcap_A4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "661cf02d-2166-4a45-a22f-7f1ed5c9b66e", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 25.2, + "width": 6.145, + "height": 6.145 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.8075, + "y": 72.3575, + "z": 60.0 + }, + "position3d": { + "x": 74.8075, + "y": 72.3575, + "z": 60.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 6.145, + "size_y": 6.145, + "size_z": 25.2, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A4_volume_tracker", + "max_volume": 500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.8075, + "y": 72.3575, + "z": 60.0 + } + }, + { + "id": "opentrons_24_tuberack_nest_0point5ml_screwcap_B4", + "uuid": "b487ad6e-c932-4160-a618-e17926ff6747", + "name": "opentrons_24_tuberack_nest_0point5ml_screwcap_B4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "661cf02d-2166-4a45-a22f-7f1ed5c9b66e", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 25.2, + "width": 6.145, + "height": 6.145 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.8075, + "y": 53.0775, + "z": 60.0 + }, + "position3d": { + "x": 74.8075, + "y": 53.0775, + "z": 60.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 6.145, + "size_y": 6.145, + "size_z": 25.2, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B4_volume_tracker", + "max_volume": 500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.8075, + "y": 53.0775, + "z": 60.0 + } + }, + { + "id": "opentrons_24_tuberack_nest_0point5ml_screwcap_C4", + "uuid": "87ebddc4-078f-4510-8c4c-2b6e08db4478", + "name": "opentrons_24_tuberack_nest_0point5ml_screwcap_C4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "661cf02d-2166-4a45-a22f-7f1ed5c9b66e", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 25.2, + "width": 6.145, + "height": 6.145 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.8075, + "y": 33.7975, + "z": 60.0 + }, + "position3d": { + "x": 74.8075, + "y": 33.7975, + "z": 60.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 6.145, + "size_y": 6.145, + "size_z": 25.2, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C4_volume_tracker", + "max_volume": 500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.8075, + "y": 33.7975, + "z": 60.0 + } + }, + { + "id": "opentrons_24_tuberack_nest_0point5ml_screwcap_D4", + "uuid": "0f3433c1-ff3c-48cc-8379-cb58219d122e", + "name": "opentrons_24_tuberack_nest_0point5ml_screwcap_D4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "661cf02d-2166-4a45-a22f-7f1ed5c9b66e", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 25.2, + "width": 6.145, + "height": 6.145 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.8075, + "y": 14.5175, + "z": 60.0 + }, + "position3d": { + "x": 74.8075, + "y": 14.5175, + "z": 60.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 6.145, + "size_y": 6.145, + "size_z": 25.2, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D4_volume_tracker", + "max_volume": 500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.8075, + "y": 14.5175, + "z": 60.0 + } + }, + { + "id": "opentrons_24_tuberack_nest_0point5ml_screwcap_A5", + "uuid": "07d94037-4a2b-4cc8-9aea-19c01d3373d2", + "name": "opentrons_24_tuberack_nest_0point5ml_screwcap_A5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "661cf02d-2166-4a45-a22f-7f1ed5c9b66e", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 25.2, + "width": 6.145, + "height": 6.145 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.6975, + "y": 72.3575, + "z": 60.0 + }, + "position3d": { + "x": 94.6975, + "y": 72.3575, + "z": 60.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 6.145, + "size_y": 6.145, + "size_z": 25.2, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A5_volume_tracker", + "max_volume": 500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.6975, + "y": 72.3575, + "z": 60.0 + } + }, + { + "id": "opentrons_24_tuberack_nest_0point5ml_screwcap_B5", + "uuid": "2b8c64e8-69d1-4329-8cbe-bc5c27d67452", + "name": "opentrons_24_tuberack_nest_0point5ml_screwcap_B5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "661cf02d-2166-4a45-a22f-7f1ed5c9b66e", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 25.2, + "width": 6.145, + "height": 6.145 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.6975, + "y": 53.0775, + "z": 60.0 + }, + "position3d": { + "x": 94.6975, + "y": 53.0775, + "z": 60.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 6.145, + "size_y": 6.145, + "size_z": 25.2, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B5_volume_tracker", + "max_volume": 500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.6975, + "y": 53.0775, + "z": 60.0 + } + }, + { + "id": "opentrons_24_tuberack_nest_0point5ml_screwcap_C5", + "uuid": "fab70a25-84f3-459d-967f-ac17666227b2", + "name": "opentrons_24_tuberack_nest_0point5ml_screwcap_C5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "661cf02d-2166-4a45-a22f-7f1ed5c9b66e", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 25.2, + "width": 6.145, + "height": 6.145 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.6975, + "y": 33.7975, + "z": 60.0 + }, + "position3d": { + "x": 94.6975, + "y": 33.7975, + "z": 60.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 6.145, + "size_y": 6.145, + "size_z": 25.2, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C5_volume_tracker", + "max_volume": 500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.6975, + "y": 33.7975, + "z": 60.0 + } + }, + { + "id": "opentrons_24_tuberack_nest_0point5ml_screwcap_D5", + "uuid": "0707619c-9204-430c-8864-7756cde30e69", + "name": "opentrons_24_tuberack_nest_0point5ml_screwcap_D5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "661cf02d-2166-4a45-a22f-7f1ed5c9b66e", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 25.2, + "width": 6.145, + "height": 6.145 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.6975, + "y": 14.5175, + "z": 60.0 + }, + "position3d": { + "x": 94.6975, + "y": 14.5175, + "z": 60.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 6.145, + "size_y": 6.145, + "size_z": 25.2, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D5_volume_tracker", + "max_volume": 500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.6975, + "y": 14.5175, + "z": 60.0 + } + }, + { + "id": "opentrons_24_tuberack_nest_0point5ml_screwcap_A6", + "uuid": "c99882b8-2e1e-4a55-8666-291829dfb68e", + "name": "opentrons_24_tuberack_nest_0point5ml_screwcap_A6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "661cf02d-2166-4a45-a22f-7f1ed5c9b66e", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 25.2, + "width": 6.145, + "height": 6.145 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.5875, + "y": 72.3575, + "z": 60.0 + }, + "position3d": { + "x": 114.5875, + "y": 72.3575, + "z": 60.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 6.145, + "size_y": 6.145, + "size_z": 25.2, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A6_volume_tracker", + "max_volume": 500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.5875, + "y": 72.3575, + "z": 60.0 + } + }, + { + "id": "opentrons_24_tuberack_nest_0point5ml_screwcap_B6", + "uuid": "759d8e25-d464-4644-953e-7ac2ca24b0c7", + "name": "opentrons_24_tuberack_nest_0point5ml_screwcap_B6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "661cf02d-2166-4a45-a22f-7f1ed5c9b66e", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 25.2, + "width": 6.145, + "height": 6.145 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.5875, + "y": 53.0775, + "z": 60.0 + }, + "position3d": { + "x": 114.5875, + "y": 53.0775, + "z": 60.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 6.145, + "size_y": 6.145, + "size_z": 25.2, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B6_volume_tracker", + "max_volume": 500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.5875, + "y": 53.0775, + "z": 60.0 + } + }, + { + "id": "opentrons_24_tuberack_nest_0point5ml_screwcap_C6", + "uuid": "3489eb6f-612a-4582-8c16-b2fdd8fcf610", + "name": "opentrons_24_tuberack_nest_0point5ml_screwcap_C6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "661cf02d-2166-4a45-a22f-7f1ed5c9b66e", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 25.2, + "width": 6.145, + "height": 6.145 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.5875, + "y": 33.7975, + "z": 60.0 + }, + "position3d": { + "x": 114.5875, + "y": 33.7975, + "z": 60.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 6.145, + "size_y": 6.145, + "size_z": 25.2, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C6_volume_tracker", + "max_volume": 500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.5875, + "y": 33.7975, + "z": 60.0 + } + }, + { + "id": "opentrons_24_tuberack_nest_0point5ml_screwcap_D6", + "uuid": "79eda4f3-7825-4657-8d26-8a9612b8101b", + "name": "opentrons_24_tuberack_nest_0point5ml_screwcap_D6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "661cf02d-2166-4a45-a22f-7f1ed5c9b66e", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 25.2, + "width": 6.145, + "height": 6.145 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.5875, + "y": 14.5175, + "z": 60.0 + }, + "position3d": { + "x": 114.5875, + "y": 14.5175, + "z": 60.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 6.145, + "size_y": 6.145, + "size_z": 25.2, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D6_volume_tracker", + "max_volume": 500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.5875, + "y": 14.5175, + "z": 60.0 + } + } + ] + }, + { + "id": "opentrons_24_tuberack_nest_1point5ml_screwcap", + "category": [ + "tube_racks" + ], + "class": { + "module": "pylabrobot.resources.opentrons.tube_racks:opentrons_24_tuberack_nest_1point5ml_screwcap", + "type": "pylabrobot" + }, + "description": "Opentrons 24 tuberack nest 1.5ml screwcap", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/opentrons/tube_racks.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "opentrons_24_tuberack_nest_1point5ml_screwcap", + "uuid": "573ee094-2a9e-4f5c-85c8-d33f8b94dbd7", + "name": "opentrons_24_tuberack_nest_1point5ml_screwcap", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "", + "class": "", + "pose": { + "size": { + "depth": 85.2, + "width": 127.75, + "height": 85.5 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TubeRack", + "size_x": 127.75, + "size_y": 85.5, + "size_z": 85.2, + "category": null, + "model": "Opentrons 24 Tube Rack with NEST 1.5 mL Screwcap", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "opentrons_24_tuberack_nest_1point5ml_screwcap_A1", + "B1": "opentrons_24_tuberack_nest_1point5ml_screwcap_B1", + "C1": "opentrons_24_tuberack_nest_1point5ml_screwcap_C1", + "D1": "opentrons_24_tuberack_nest_1point5ml_screwcap_D1", + "A2": "opentrons_24_tuberack_nest_1point5ml_screwcap_A2", + "B2": "opentrons_24_tuberack_nest_1point5ml_screwcap_B2", + "C2": "opentrons_24_tuberack_nest_1point5ml_screwcap_C2", + "D2": "opentrons_24_tuberack_nest_1point5ml_screwcap_D2", + "A3": "opentrons_24_tuberack_nest_1point5ml_screwcap_A3", + "B3": "opentrons_24_tuberack_nest_1point5ml_screwcap_B3", + "C3": "opentrons_24_tuberack_nest_1point5ml_screwcap_C3", + "D3": "opentrons_24_tuberack_nest_1point5ml_screwcap_D3", + "A4": "opentrons_24_tuberack_nest_1point5ml_screwcap_A4", + "B4": "opentrons_24_tuberack_nest_1point5ml_screwcap_B4", + "C4": "opentrons_24_tuberack_nest_1point5ml_screwcap_C4", + "D4": "opentrons_24_tuberack_nest_1point5ml_screwcap_D4", + "A5": "opentrons_24_tuberack_nest_1point5ml_screwcap_A5", + "B5": "opentrons_24_tuberack_nest_1point5ml_screwcap_B5", + "C5": "opentrons_24_tuberack_nest_1point5ml_screwcap_C5", + "D5": "opentrons_24_tuberack_nest_1point5ml_screwcap_D5", + "A6": "opentrons_24_tuberack_nest_1point5ml_screwcap_A6", + "B6": "opentrons_24_tuberack_nest_1point5ml_screwcap_B6", + "C6": "opentrons_24_tuberack_nest_1point5ml_screwcap_C6", + "D6": "opentrons_24_tuberack_nest_1point5ml_screwcap_D6" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "opentrons_24_tuberack_nest_1point5ml_screwcap_A1", + "uuid": "df8c50eb-34ba-4a6b-bff9-60b2770e5faa", + "name": "opentrons_24_tuberack_nest_1point5ml_screwcap_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "573ee094-2a9e-4f5c-85c8-d33f8b94dbd7", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 43.9, + "width": 6.145, + "height": 6.145 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 15.1375, + "y": 72.3575, + "z": 41.3 + }, + "position3d": { + "x": 15.1375, + "y": 72.3575, + "z": 41.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 6.145, + "size_y": 6.145, + "size_z": 43.9, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A1_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 15.1375, + "y": 72.3575, + "z": 41.3 + } + }, + { + "id": "opentrons_24_tuberack_nest_1point5ml_screwcap_B1", + "uuid": "f7871a08-86cb-48e4-90a1-fcb46d446524", + "name": "opentrons_24_tuberack_nest_1point5ml_screwcap_B1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "573ee094-2a9e-4f5c-85c8-d33f8b94dbd7", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 43.9, + "width": 6.145, + "height": 6.145 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 15.1375, + "y": 53.0775, + "z": 41.3 + }, + "position3d": { + "x": 15.1375, + "y": 53.0775, + "z": 41.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 6.145, + "size_y": 6.145, + "size_z": 43.9, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B1_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 15.1375, + "y": 53.0775, + "z": 41.3 + } + }, + { + "id": "opentrons_24_tuberack_nest_1point5ml_screwcap_C1", + "uuid": "135a9ef0-734b-4ac7-8157-aa5ff35eaf99", + "name": "opentrons_24_tuberack_nest_1point5ml_screwcap_C1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "573ee094-2a9e-4f5c-85c8-d33f8b94dbd7", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 43.9, + "width": 6.145, + "height": 6.145 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 15.1375, + "y": 33.7975, + "z": 41.3 + }, + "position3d": { + "x": 15.1375, + "y": 33.7975, + "z": 41.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 6.145, + "size_y": 6.145, + "size_z": 43.9, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C1_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 15.1375, + "y": 33.7975, + "z": 41.3 + } + }, + { + "id": "opentrons_24_tuberack_nest_1point5ml_screwcap_D1", + "uuid": "b68137ae-ab51-40c2-bef9-8a2eff041334", + "name": "opentrons_24_tuberack_nest_1point5ml_screwcap_D1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "573ee094-2a9e-4f5c-85c8-d33f8b94dbd7", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 43.9, + "width": 6.145, + "height": 6.145 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 15.1375, + "y": 14.5175, + "z": 41.3 + }, + "position3d": { + "x": 15.1375, + "y": 14.5175, + "z": 41.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 6.145, + "size_y": 6.145, + "size_z": 43.9, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D1_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 15.1375, + "y": 14.5175, + "z": 41.3 + } + }, + { + "id": "opentrons_24_tuberack_nest_1point5ml_screwcap_A2", + "uuid": "a6f014cc-18e3-43f8-87e0-5c3b67af709a", + "name": "opentrons_24_tuberack_nest_1point5ml_screwcap_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "573ee094-2a9e-4f5c-85c8-d33f8b94dbd7", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 43.9, + "width": 6.145, + "height": 6.145 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 35.0275, + "y": 72.3575, + "z": 41.3 + }, + "position3d": { + "x": 35.0275, + "y": 72.3575, + "z": 41.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 6.145, + "size_y": 6.145, + "size_z": 43.9, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A2_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 35.0275, + "y": 72.3575, + "z": 41.3 + } + }, + { + "id": "opentrons_24_tuberack_nest_1point5ml_screwcap_B2", + "uuid": "1982bb69-1781-4b6c-bbe1-b5e51c140f92", + "name": "opentrons_24_tuberack_nest_1point5ml_screwcap_B2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "573ee094-2a9e-4f5c-85c8-d33f8b94dbd7", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 43.9, + "width": 6.145, + "height": 6.145 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 35.0275, + "y": 53.0775, + "z": 41.3 + }, + "position3d": { + "x": 35.0275, + "y": 53.0775, + "z": 41.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 6.145, + "size_y": 6.145, + "size_z": 43.9, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B2_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 35.0275, + "y": 53.0775, + "z": 41.3 + } + }, + { + "id": "opentrons_24_tuberack_nest_1point5ml_screwcap_C2", + "uuid": "cd088fd6-b136-40c8-9c4b-07b3048ca5c2", + "name": "opentrons_24_tuberack_nest_1point5ml_screwcap_C2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "573ee094-2a9e-4f5c-85c8-d33f8b94dbd7", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 43.9, + "width": 6.145, + "height": 6.145 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 35.0275, + "y": 33.7975, + "z": 41.3 + }, + "position3d": { + "x": 35.0275, + "y": 33.7975, + "z": 41.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 6.145, + "size_y": 6.145, + "size_z": 43.9, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C2_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 35.0275, + "y": 33.7975, + "z": 41.3 + } + }, + { + "id": "opentrons_24_tuberack_nest_1point5ml_screwcap_D2", + "uuid": "2e763767-e4f9-4be4-bf98-3560478b7f77", + "name": "opentrons_24_tuberack_nest_1point5ml_screwcap_D2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "573ee094-2a9e-4f5c-85c8-d33f8b94dbd7", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 43.9, + "width": 6.145, + "height": 6.145 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 35.0275, + "y": 14.5175, + "z": 41.3 + }, + "position3d": { + "x": 35.0275, + "y": 14.5175, + "z": 41.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 6.145, + "size_y": 6.145, + "size_z": 43.9, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D2_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 35.0275, + "y": 14.5175, + "z": 41.3 + } + }, + { + "id": "opentrons_24_tuberack_nest_1point5ml_screwcap_A3", + "uuid": "0150bf7e-d4d0-4427-b653-832151d01d3e", + "name": "opentrons_24_tuberack_nest_1point5ml_screwcap_A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "573ee094-2a9e-4f5c-85c8-d33f8b94dbd7", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 43.9, + "width": 6.145, + "height": 6.145 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 54.9175, + "y": 72.3575, + "z": 41.3 + }, + "position3d": { + "x": 54.9175, + "y": 72.3575, + "z": 41.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 6.145, + "size_y": 6.145, + "size_z": 43.9, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A3_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 54.9175, + "y": 72.3575, + "z": 41.3 + } + }, + { + "id": "opentrons_24_tuberack_nest_1point5ml_screwcap_B3", + "uuid": "5a65e83a-7583-49fc-81b5-ba1ac9683d39", + "name": "opentrons_24_tuberack_nest_1point5ml_screwcap_B3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "573ee094-2a9e-4f5c-85c8-d33f8b94dbd7", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 43.9, + "width": 6.145, + "height": 6.145 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 54.9175, + "y": 53.0775, + "z": 41.3 + }, + "position3d": { + "x": 54.9175, + "y": 53.0775, + "z": 41.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 6.145, + "size_y": 6.145, + "size_z": 43.9, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B3_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 54.9175, + "y": 53.0775, + "z": 41.3 + } + }, + { + "id": "opentrons_24_tuberack_nest_1point5ml_screwcap_C3", + "uuid": "716e9f57-e0a6-41e1-98bd-ead60382e7d5", + "name": "opentrons_24_tuberack_nest_1point5ml_screwcap_C3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "573ee094-2a9e-4f5c-85c8-d33f8b94dbd7", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 43.9, + "width": 6.145, + "height": 6.145 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 54.9175, + "y": 33.7975, + "z": 41.3 + }, + "position3d": { + "x": 54.9175, + "y": 33.7975, + "z": 41.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 6.145, + "size_y": 6.145, + "size_z": 43.9, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C3_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 54.9175, + "y": 33.7975, + "z": 41.3 + } + }, + { + "id": "opentrons_24_tuberack_nest_1point5ml_screwcap_D3", + "uuid": "05fb9b52-6e8c-4438-a4a8-1b3564702da2", + "name": "opentrons_24_tuberack_nest_1point5ml_screwcap_D3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "573ee094-2a9e-4f5c-85c8-d33f8b94dbd7", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 43.9, + "width": 6.145, + "height": 6.145 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 54.9175, + "y": 14.5175, + "z": 41.3 + }, + "position3d": { + "x": 54.9175, + "y": 14.5175, + "z": 41.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 6.145, + "size_y": 6.145, + "size_z": 43.9, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D3_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 54.9175, + "y": 14.5175, + "z": 41.3 + } + }, + { + "id": "opentrons_24_tuberack_nest_1point5ml_screwcap_A4", + "uuid": "d3db26d9-1cbb-430c-9188-246c384e0312", + "name": "opentrons_24_tuberack_nest_1point5ml_screwcap_A4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "573ee094-2a9e-4f5c-85c8-d33f8b94dbd7", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 43.9, + "width": 6.145, + "height": 6.145 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.8075, + "y": 72.3575, + "z": 41.3 + }, + "position3d": { + "x": 74.8075, + "y": 72.3575, + "z": 41.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 6.145, + "size_y": 6.145, + "size_z": 43.9, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A4_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.8075, + "y": 72.3575, + "z": 41.3 + } + }, + { + "id": "opentrons_24_tuberack_nest_1point5ml_screwcap_B4", + "uuid": "6182e5e5-a20c-4617-b59e-647792a67fa2", + "name": "opentrons_24_tuberack_nest_1point5ml_screwcap_B4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "573ee094-2a9e-4f5c-85c8-d33f8b94dbd7", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 43.9, + "width": 6.145, + "height": 6.145 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.8075, + "y": 53.0775, + "z": 41.3 + }, + "position3d": { + "x": 74.8075, + "y": 53.0775, + "z": 41.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 6.145, + "size_y": 6.145, + "size_z": 43.9, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B4_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.8075, + "y": 53.0775, + "z": 41.3 + } + }, + { + "id": "opentrons_24_tuberack_nest_1point5ml_screwcap_C4", + "uuid": "138e0338-12a9-418d-8b17-adc03e0282c4", + "name": "opentrons_24_tuberack_nest_1point5ml_screwcap_C4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "573ee094-2a9e-4f5c-85c8-d33f8b94dbd7", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 43.9, + "width": 6.145, + "height": 6.145 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.8075, + "y": 33.7975, + "z": 41.3 + }, + "position3d": { + "x": 74.8075, + "y": 33.7975, + "z": 41.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 6.145, + "size_y": 6.145, + "size_z": 43.9, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C4_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.8075, + "y": 33.7975, + "z": 41.3 + } + }, + { + "id": "opentrons_24_tuberack_nest_1point5ml_screwcap_D4", + "uuid": "b5bab931-ff3b-4b51-a916-003913612589", + "name": "opentrons_24_tuberack_nest_1point5ml_screwcap_D4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "573ee094-2a9e-4f5c-85c8-d33f8b94dbd7", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 43.9, + "width": 6.145, + "height": 6.145 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.8075, + "y": 14.5175, + "z": 41.3 + }, + "position3d": { + "x": 74.8075, + "y": 14.5175, + "z": 41.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 6.145, + "size_y": 6.145, + "size_z": 43.9, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D4_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.8075, + "y": 14.5175, + "z": 41.3 + } + }, + { + "id": "opentrons_24_tuberack_nest_1point5ml_screwcap_A5", + "uuid": "809b967b-02ac-4b2b-b46c-65733ad9bb7d", + "name": "opentrons_24_tuberack_nest_1point5ml_screwcap_A5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "573ee094-2a9e-4f5c-85c8-d33f8b94dbd7", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 43.9, + "width": 6.145, + "height": 6.145 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.6975, + "y": 72.3575, + "z": 41.3 + }, + "position3d": { + "x": 94.6975, + "y": 72.3575, + "z": 41.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 6.145, + "size_y": 6.145, + "size_z": 43.9, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A5_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.6975, + "y": 72.3575, + "z": 41.3 + } + }, + { + "id": "opentrons_24_tuberack_nest_1point5ml_screwcap_B5", + "uuid": "26c64a87-75c7-425f-9cf3-012ba9021ff7", + "name": "opentrons_24_tuberack_nest_1point5ml_screwcap_B5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "573ee094-2a9e-4f5c-85c8-d33f8b94dbd7", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 43.9, + "width": 6.145, + "height": 6.145 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.6975, + "y": 53.0775, + "z": 41.3 + }, + "position3d": { + "x": 94.6975, + "y": 53.0775, + "z": 41.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 6.145, + "size_y": 6.145, + "size_z": 43.9, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B5_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.6975, + "y": 53.0775, + "z": 41.3 + } + }, + { + "id": "opentrons_24_tuberack_nest_1point5ml_screwcap_C5", + "uuid": "5917b097-5320-43e2-adcf-d0356bf7fb0a", + "name": "opentrons_24_tuberack_nest_1point5ml_screwcap_C5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "573ee094-2a9e-4f5c-85c8-d33f8b94dbd7", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 43.9, + "width": 6.145, + "height": 6.145 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.6975, + "y": 33.7975, + "z": 41.3 + }, + "position3d": { + "x": 94.6975, + "y": 33.7975, + "z": 41.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 6.145, + "size_y": 6.145, + "size_z": 43.9, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C5_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.6975, + "y": 33.7975, + "z": 41.3 + } + }, + { + "id": "opentrons_24_tuberack_nest_1point5ml_screwcap_D5", + "uuid": "b823f63b-0063-4862-943f-c530550cb31c", + "name": "opentrons_24_tuberack_nest_1point5ml_screwcap_D5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "573ee094-2a9e-4f5c-85c8-d33f8b94dbd7", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 43.9, + "width": 6.145, + "height": 6.145 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.6975, + "y": 14.5175, + "z": 41.3 + }, + "position3d": { + "x": 94.6975, + "y": 14.5175, + "z": 41.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 6.145, + "size_y": 6.145, + "size_z": 43.9, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D5_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.6975, + "y": 14.5175, + "z": 41.3 + } + }, + { + "id": "opentrons_24_tuberack_nest_1point5ml_screwcap_A6", + "uuid": "a35ef0f8-91b2-4773-96bd-7468530999ac", + "name": "opentrons_24_tuberack_nest_1point5ml_screwcap_A6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "573ee094-2a9e-4f5c-85c8-d33f8b94dbd7", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 43.9, + "width": 6.145, + "height": 6.145 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.5875, + "y": 72.3575, + "z": 41.3 + }, + "position3d": { + "x": 114.5875, + "y": 72.3575, + "z": 41.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 6.145, + "size_y": 6.145, + "size_z": 43.9, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A6_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.5875, + "y": 72.3575, + "z": 41.3 + } + }, + { + "id": "opentrons_24_tuberack_nest_1point5ml_screwcap_B6", + "uuid": "685cdc42-ac13-423c-90f5-15d37ea3b989", + "name": "opentrons_24_tuberack_nest_1point5ml_screwcap_B6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "573ee094-2a9e-4f5c-85c8-d33f8b94dbd7", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 43.9, + "width": 6.145, + "height": 6.145 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.5875, + "y": 53.0775, + "z": 41.3 + }, + "position3d": { + "x": 114.5875, + "y": 53.0775, + "z": 41.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 6.145, + "size_y": 6.145, + "size_z": 43.9, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B6_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.5875, + "y": 53.0775, + "z": 41.3 + } + }, + { + "id": "opentrons_24_tuberack_nest_1point5ml_screwcap_C6", + "uuid": "2367c57f-d48d-4f20-9614-aaf8a631197e", + "name": "opentrons_24_tuberack_nest_1point5ml_screwcap_C6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "573ee094-2a9e-4f5c-85c8-d33f8b94dbd7", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 43.9, + "width": 6.145, + "height": 6.145 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.5875, + "y": 33.7975, + "z": 41.3 + }, + "position3d": { + "x": 114.5875, + "y": 33.7975, + "z": 41.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 6.145, + "size_y": 6.145, + "size_z": 43.9, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C6_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.5875, + "y": 33.7975, + "z": 41.3 + } + }, + { + "id": "opentrons_24_tuberack_nest_1point5ml_screwcap_D6", + "uuid": "30c14836-44d0-4922-9f82-ba0f72f2151a", + "name": "opentrons_24_tuberack_nest_1point5ml_screwcap_D6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "573ee094-2a9e-4f5c-85c8-d33f8b94dbd7", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 43.9, + "width": 6.145, + "height": 6.145 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.5875, + "y": 14.5175, + "z": 41.3 + }, + "position3d": { + "x": 114.5875, + "y": 14.5175, + "z": 41.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 6.145, + "size_y": 6.145, + "size_z": 43.9, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D6_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.5875, + "y": 14.5175, + "z": 41.3 + } + } + ] + }, + { + "id": "opentrons_24_tuberack_nest_1point5ml_snapcap", + "category": [ + "tube_racks" + ], + "class": { + "module": "pylabrobot.resources.opentrons.tube_racks:opentrons_24_tuberack_nest_1point5ml_snapcap", + "type": "pylabrobot" + }, + "description": "Opentrons 24 tuberack nest 1.5ml snapcap", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/opentrons/tube_racks.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "opentrons_24_tuberack_nest_1point5ml_snapcap", + "uuid": "9e0aeb59-7842-41db-b1c3-a1922f7ebaa7", + "name": "opentrons_24_tuberack_nest_1point5ml_snapcap", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "", + "class": "", + "pose": { + "size": { + "depth": 79.55, + "width": 127.75, + "height": 85.5 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TubeRack", + "size_x": 127.75, + "size_y": 85.5, + "size_z": 79.55, + "category": null, + "model": "Opentrons 24 Tube Rack with NEST 1.5 mL Snapcap", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "opentrons_24_tuberack_nest_1point5ml_snapcap_A1", + "B1": "opentrons_24_tuberack_nest_1point5ml_snapcap_B1", + "C1": "opentrons_24_tuberack_nest_1point5ml_snapcap_C1", + "D1": "opentrons_24_tuberack_nest_1point5ml_snapcap_D1", + "A2": "opentrons_24_tuberack_nest_1point5ml_snapcap_A2", + "B2": "opentrons_24_tuberack_nest_1point5ml_snapcap_B2", + "C2": "opentrons_24_tuberack_nest_1point5ml_snapcap_C2", + "D2": "opentrons_24_tuberack_nest_1point5ml_snapcap_D2", + "A3": "opentrons_24_tuberack_nest_1point5ml_snapcap_A3", + "B3": "opentrons_24_tuberack_nest_1point5ml_snapcap_B3", + "C3": "opentrons_24_tuberack_nest_1point5ml_snapcap_C3", + "D3": "opentrons_24_tuberack_nest_1point5ml_snapcap_D3", + "A4": "opentrons_24_tuberack_nest_1point5ml_snapcap_A4", + "B4": "opentrons_24_tuberack_nest_1point5ml_snapcap_B4", + "C4": "opentrons_24_tuberack_nest_1point5ml_snapcap_C4", + "D4": "opentrons_24_tuberack_nest_1point5ml_snapcap_D4", + "A5": "opentrons_24_tuberack_nest_1point5ml_snapcap_A5", + "B5": "opentrons_24_tuberack_nest_1point5ml_snapcap_B5", + "C5": "opentrons_24_tuberack_nest_1point5ml_snapcap_C5", + "D5": "opentrons_24_tuberack_nest_1point5ml_snapcap_D5", + "A6": "opentrons_24_tuberack_nest_1point5ml_snapcap_A6", + "B6": "opentrons_24_tuberack_nest_1point5ml_snapcap_B6", + "C6": "opentrons_24_tuberack_nest_1point5ml_snapcap_C6", + "D6": "opentrons_24_tuberack_nest_1point5ml_snapcap_D6" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "opentrons_24_tuberack_nest_1point5ml_snapcap_A1", + "uuid": "b4697c35-72dc-41fd-b82a-04d125782213", + "name": "opentrons_24_tuberack_nest_1point5ml_snapcap_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "9e0aeb59-7842-41db-b1c3-a1922f7ebaa7", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 37.9, + "width": 7.212, + "height": 7.212 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 14.604, + "y": 71.824, + "z": 41.65 + }, + "position3d": { + "x": 14.604, + "y": 71.824, + "z": 41.65 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 7.212, + "size_y": 7.212, + "size_z": 37.9, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A1_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 14.604, + "y": 71.824, + "z": 41.65 + } + }, + { + "id": "opentrons_24_tuberack_nest_1point5ml_snapcap_B1", + "uuid": "b4989820-b5a2-46eb-a296-2c2aab7c1840", + "name": "opentrons_24_tuberack_nest_1point5ml_snapcap_B1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "9e0aeb59-7842-41db-b1c3-a1922f7ebaa7", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 37.9, + "width": 7.212, + "height": 7.212 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 14.604, + "y": 52.544, + "z": 41.65 + }, + "position3d": { + "x": 14.604, + "y": 52.544, + "z": 41.65 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 7.212, + "size_y": 7.212, + "size_z": 37.9, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B1_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 14.604, + "y": 52.544, + "z": 41.65 + } + }, + { + "id": "opentrons_24_tuberack_nest_1point5ml_snapcap_C1", + "uuid": "99a14b6c-6787-44cb-b24f-ca951872d0f2", + "name": "opentrons_24_tuberack_nest_1point5ml_snapcap_C1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "9e0aeb59-7842-41db-b1c3-a1922f7ebaa7", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 37.9, + "width": 7.212, + "height": 7.212 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 14.604, + "y": 33.264, + "z": 41.65 + }, + "position3d": { + "x": 14.604, + "y": 33.264, + "z": 41.65 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 7.212, + "size_y": 7.212, + "size_z": 37.9, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C1_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 14.604, + "y": 33.264, + "z": 41.65 + } + }, + { + "id": "opentrons_24_tuberack_nest_1point5ml_snapcap_D1", + "uuid": "a2195da8-da5a-4602-8825-eb7691222988", + "name": "opentrons_24_tuberack_nest_1point5ml_snapcap_D1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "9e0aeb59-7842-41db-b1c3-a1922f7ebaa7", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 37.9, + "width": 7.212, + "height": 7.212 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 14.604, + "y": 13.984, + "z": 41.65 + }, + "position3d": { + "x": 14.604, + "y": 13.984, + "z": 41.65 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 7.212, + "size_y": 7.212, + "size_z": 37.9, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D1_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 14.604, + "y": 13.984, + "z": 41.65 + } + }, + { + "id": "opentrons_24_tuberack_nest_1point5ml_snapcap_A2", + "uuid": "c2cca338-cfe8-49a9-b2a8-dc88167e761b", + "name": "opentrons_24_tuberack_nest_1point5ml_snapcap_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "9e0aeb59-7842-41db-b1c3-a1922f7ebaa7", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 37.9, + "width": 7.212, + "height": 7.212 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 34.494, + "y": 71.824, + "z": 41.65 + }, + "position3d": { + "x": 34.494, + "y": 71.824, + "z": 41.65 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 7.212, + "size_y": 7.212, + "size_z": 37.9, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A2_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 34.494, + "y": 71.824, + "z": 41.65 + } + }, + { + "id": "opentrons_24_tuberack_nest_1point5ml_snapcap_B2", + "uuid": "e484207d-1ac1-42c8-b796-2fceb949c0bf", + "name": "opentrons_24_tuberack_nest_1point5ml_snapcap_B2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "9e0aeb59-7842-41db-b1c3-a1922f7ebaa7", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 37.9, + "width": 7.212, + "height": 7.212 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 34.494, + "y": 52.544, + "z": 41.65 + }, + "position3d": { + "x": 34.494, + "y": 52.544, + "z": 41.65 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 7.212, + "size_y": 7.212, + "size_z": 37.9, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B2_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 34.494, + "y": 52.544, + "z": 41.65 + } + }, + { + "id": "opentrons_24_tuberack_nest_1point5ml_snapcap_C2", + "uuid": "4d6fd3fd-7475-4884-b2be-3b7d5e5f4cd1", + "name": "opentrons_24_tuberack_nest_1point5ml_snapcap_C2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "9e0aeb59-7842-41db-b1c3-a1922f7ebaa7", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 37.9, + "width": 7.212, + "height": 7.212 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 34.494, + "y": 33.264, + "z": 41.65 + }, + "position3d": { + "x": 34.494, + "y": 33.264, + "z": 41.65 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 7.212, + "size_y": 7.212, + "size_z": 37.9, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C2_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 34.494, + "y": 33.264, + "z": 41.65 + } + }, + { + "id": "opentrons_24_tuberack_nest_1point5ml_snapcap_D2", + "uuid": "9b501eb5-13d7-4d7a-b46f-ba6f34bc1830", + "name": "opentrons_24_tuberack_nest_1point5ml_snapcap_D2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "9e0aeb59-7842-41db-b1c3-a1922f7ebaa7", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 37.9, + "width": 7.212, + "height": 7.212 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 34.494, + "y": 13.984, + "z": 41.65 + }, + "position3d": { + "x": 34.494, + "y": 13.984, + "z": 41.65 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 7.212, + "size_y": 7.212, + "size_z": 37.9, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D2_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 34.494, + "y": 13.984, + "z": 41.65 + } + }, + { + "id": "opentrons_24_tuberack_nest_1point5ml_snapcap_A3", + "uuid": "29dbf39b-6c0d-40ba-9225-707d94f427fc", + "name": "opentrons_24_tuberack_nest_1point5ml_snapcap_A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "9e0aeb59-7842-41db-b1c3-a1922f7ebaa7", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 37.9, + "width": 7.212, + "height": 7.212 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 54.384, + "y": 71.824, + "z": 41.65 + }, + "position3d": { + "x": 54.384, + "y": 71.824, + "z": 41.65 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 7.212, + "size_y": 7.212, + "size_z": 37.9, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A3_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 54.384, + "y": 71.824, + "z": 41.65 + } + }, + { + "id": "opentrons_24_tuberack_nest_1point5ml_snapcap_B3", + "uuid": "303e2003-5eea-4c14-b3a4-317e84c03efc", + "name": "opentrons_24_tuberack_nest_1point5ml_snapcap_B3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "9e0aeb59-7842-41db-b1c3-a1922f7ebaa7", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 37.9, + "width": 7.212, + "height": 7.212 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 54.384, + "y": 52.544, + "z": 41.65 + }, + "position3d": { + "x": 54.384, + "y": 52.544, + "z": 41.65 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 7.212, + "size_y": 7.212, + "size_z": 37.9, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B3_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 54.384, + "y": 52.544, + "z": 41.65 + } + }, + { + "id": "opentrons_24_tuberack_nest_1point5ml_snapcap_C3", + "uuid": "3b749839-4040-4701-bac1-56cdfb182a5c", + "name": "opentrons_24_tuberack_nest_1point5ml_snapcap_C3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "9e0aeb59-7842-41db-b1c3-a1922f7ebaa7", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 37.9, + "width": 7.212, + "height": 7.212 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 54.384, + "y": 33.264, + "z": 41.65 + }, + "position3d": { + "x": 54.384, + "y": 33.264, + "z": 41.65 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 7.212, + "size_y": 7.212, + "size_z": 37.9, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C3_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 54.384, + "y": 33.264, + "z": 41.65 + } + }, + { + "id": "opentrons_24_tuberack_nest_1point5ml_snapcap_D3", + "uuid": "af6e696b-1052-41d8-8b2f-b9bc0539b510", + "name": "opentrons_24_tuberack_nest_1point5ml_snapcap_D3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "9e0aeb59-7842-41db-b1c3-a1922f7ebaa7", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 37.9, + "width": 7.212, + "height": 7.212 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 54.384, + "y": 13.984, + "z": 41.65 + }, + "position3d": { + "x": 54.384, + "y": 13.984, + "z": 41.65 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 7.212, + "size_y": 7.212, + "size_z": 37.9, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D3_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 54.384, + "y": 13.984, + "z": 41.65 + } + }, + { + "id": "opentrons_24_tuberack_nest_1point5ml_snapcap_A4", + "uuid": "e532f2a5-932f-45c8-9192-03e189a239a8", + "name": "opentrons_24_tuberack_nest_1point5ml_snapcap_A4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "9e0aeb59-7842-41db-b1c3-a1922f7ebaa7", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 37.9, + "width": 7.212, + "height": 7.212 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.274, + "y": 71.824, + "z": 41.65 + }, + "position3d": { + "x": 74.274, + "y": 71.824, + "z": 41.65 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 7.212, + "size_y": 7.212, + "size_z": 37.9, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A4_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.274, + "y": 71.824, + "z": 41.65 + } + }, + { + "id": "opentrons_24_tuberack_nest_1point5ml_snapcap_B4", + "uuid": "05d39152-4141-404d-811f-8097f53c3f65", + "name": "opentrons_24_tuberack_nest_1point5ml_snapcap_B4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "9e0aeb59-7842-41db-b1c3-a1922f7ebaa7", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 37.9, + "width": 7.212, + "height": 7.212 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.274, + "y": 52.544, + "z": 41.65 + }, + "position3d": { + "x": 74.274, + "y": 52.544, + "z": 41.65 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 7.212, + "size_y": 7.212, + "size_z": 37.9, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B4_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.274, + "y": 52.544, + "z": 41.65 + } + }, + { + "id": "opentrons_24_tuberack_nest_1point5ml_snapcap_C4", + "uuid": "772c582a-5703-403c-850b-d4d4b03c8e42", + "name": "opentrons_24_tuberack_nest_1point5ml_snapcap_C4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "9e0aeb59-7842-41db-b1c3-a1922f7ebaa7", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 37.9, + "width": 7.212, + "height": 7.212 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.274, + "y": 33.264, + "z": 41.65 + }, + "position3d": { + "x": 74.274, + "y": 33.264, + "z": 41.65 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 7.212, + "size_y": 7.212, + "size_z": 37.9, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C4_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.274, + "y": 33.264, + "z": 41.65 + } + }, + { + "id": "opentrons_24_tuberack_nest_1point5ml_snapcap_D4", + "uuid": "630c31cf-6815-48ea-97de-c2bc76f0c035", + "name": "opentrons_24_tuberack_nest_1point5ml_snapcap_D4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "9e0aeb59-7842-41db-b1c3-a1922f7ebaa7", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 37.9, + "width": 7.212, + "height": 7.212 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.274, + "y": 13.984, + "z": 41.65 + }, + "position3d": { + "x": 74.274, + "y": 13.984, + "z": 41.65 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 7.212, + "size_y": 7.212, + "size_z": 37.9, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D4_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.274, + "y": 13.984, + "z": 41.65 + } + }, + { + "id": "opentrons_24_tuberack_nest_1point5ml_snapcap_A5", + "uuid": "24105671-3def-4166-a3c9-f5c999ff904a", + "name": "opentrons_24_tuberack_nest_1point5ml_snapcap_A5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "9e0aeb59-7842-41db-b1c3-a1922f7ebaa7", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 37.9, + "width": 7.212, + "height": 7.212 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.164, + "y": 71.824, + "z": 41.65 + }, + "position3d": { + "x": 94.164, + "y": 71.824, + "z": 41.65 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 7.212, + "size_y": 7.212, + "size_z": 37.9, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A5_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.164, + "y": 71.824, + "z": 41.65 + } + }, + { + "id": "opentrons_24_tuberack_nest_1point5ml_snapcap_B5", + "uuid": "eae74816-f3ea-4196-851c-e19ae7bf9dc8", + "name": "opentrons_24_tuberack_nest_1point5ml_snapcap_B5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "9e0aeb59-7842-41db-b1c3-a1922f7ebaa7", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 37.9, + "width": 7.212, + "height": 7.212 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.164, + "y": 52.544, + "z": 41.65 + }, + "position3d": { + "x": 94.164, + "y": 52.544, + "z": 41.65 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 7.212, + "size_y": 7.212, + "size_z": 37.9, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B5_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.164, + "y": 52.544, + "z": 41.65 + } + }, + { + "id": "opentrons_24_tuberack_nest_1point5ml_snapcap_C5", + "uuid": "ea0122b6-f422-478b-97af-5cb9d8402980", + "name": "opentrons_24_tuberack_nest_1point5ml_snapcap_C5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "9e0aeb59-7842-41db-b1c3-a1922f7ebaa7", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 37.9, + "width": 7.212, + "height": 7.212 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.164, + "y": 33.264, + "z": 41.65 + }, + "position3d": { + "x": 94.164, + "y": 33.264, + "z": 41.65 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 7.212, + "size_y": 7.212, + "size_z": 37.9, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C5_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.164, + "y": 33.264, + "z": 41.65 + } + }, + { + "id": "opentrons_24_tuberack_nest_1point5ml_snapcap_D5", + "uuid": "1e81eb1b-4988-423b-969f-e47535cb3832", + "name": "opentrons_24_tuberack_nest_1point5ml_snapcap_D5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "9e0aeb59-7842-41db-b1c3-a1922f7ebaa7", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 37.9, + "width": 7.212, + "height": 7.212 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.164, + "y": 13.984, + "z": 41.65 + }, + "position3d": { + "x": 94.164, + "y": 13.984, + "z": 41.65 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 7.212, + "size_y": 7.212, + "size_z": 37.9, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D5_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.164, + "y": 13.984, + "z": 41.65 + } + }, + { + "id": "opentrons_24_tuberack_nest_1point5ml_snapcap_A6", + "uuid": "e3e6dafa-13b0-44d9-9ed9-41826124bc2f", + "name": "opentrons_24_tuberack_nest_1point5ml_snapcap_A6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "9e0aeb59-7842-41db-b1c3-a1922f7ebaa7", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 37.9, + "width": 7.212, + "height": 7.212 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.054, + "y": 71.824, + "z": 41.65 + }, + "position3d": { + "x": 114.054, + "y": 71.824, + "z": 41.65 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 7.212, + "size_y": 7.212, + "size_z": 37.9, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A6_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.054, + "y": 71.824, + "z": 41.65 + } + }, + { + "id": "opentrons_24_tuberack_nest_1point5ml_snapcap_B6", + "uuid": "7eb24ef3-1bb0-4e2b-9f82-a9c69d1070f5", + "name": "opentrons_24_tuberack_nest_1point5ml_snapcap_B6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "9e0aeb59-7842-41db-b1c3-a1922f7ebaa7", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 37.9, + "width": 7.212, + "height": 7.212 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.054, + "y": 52.544, + "z": 41.65 + }, + "position3d": { + "x": 114.054, + "y": 52.544, + "z": 41.65 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 7.212, + "size_y": 7.212, + "size_z": 37.9, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B6_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.054, + "y": 52.544, + "z": 41.65 + } + }, + { + "id": "opentrons_24_tuberack_nest_1point5ml_snapcap_C6", + "uuid": "fee87ce0-0d9f-4225-9843-d406c6463aa1", + "name": "opentrons_24_tuberack_nest_1point5ml_snapcap_C6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "9e0aeb59-7842-41db-b1c3-a1922f7ebaa7", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 37.9, + "width": 7.212, + "height": 7.212 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.054, + "y": 33.264, + "z": 41.65 + }, + "position3d": { + "x": 114.054, + "y": 33.264, + "z": 41.65 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 7.212, + "size_y": 7.212, + "size_z": 37.9, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C6_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.054, + "y": 33.264, + "z": 41.65 + } + }, + { + "id": "opentrons_24_tuberack_nest_1point5ml_snapcap_D6", + "uuid": "e0fabf35-fafb-482c-9bf5-a0eb16571149", + "name": "opentrons_24_tuberack_nest_1point5ml_snapcap_D6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "9e0aeb59-7842-41db-b1c3-a1922f7ebaa7", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 37.9, + "width": 7.212, + "height": 7.212 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.054, + "y": 13.984, + "z": 41.65 + }, + "position3d": { + "x": 114.054, + "y": 13.984, + "z": 41.65 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 7.212, + "size_y": 7.212, + "size_z": 37.9, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D6_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.054, + "y": 13.984, + "z": 41.65 + } + } + ] + }, + { + "id": "opentrons_24_tuberack_nest_2ml_screwcap", + "category": [ + "tube_racks" + ], + "class": { + "module": "pylabrobot.resources.opentrons.tube_racks:opentrons_24_tuberack_nest_2ml_screwcap", + "type": "pylabrobot" + }, + "description": "Opentrons 24 tuberack nest 2ml screwcap", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/opentrons/tube_racks.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "opentrons_24_tuberack_nest_2ml_screwcap", + "uuid": "c6985ac7-30cd-49a3-a6ef-0ece32cd0f38", + "name": "opentrons_24_tuberack_nest_2ml_screwcap", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "", + "class": "", + "pose": { + "size": { + "depth": 85.35, + "width": 127.75, + "height": 85.5 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TubeRack", + "size_x": 127.75, + "size_y": 85.5, + "size_z": 85.35, + "category": null, + "model": "Opentrons 24 Tube Rack with NEST 2 mL Screwcap", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "opentrons_24_tuberack_nest_2ml_screwcap_A1", + "B1": "opentrons_24_tuberack_nest_2ml_screwcap_B1", + "C1": "opentrons_24_tuberack_nest_2ml_screwcap_C1", + "D1": "opentrons_24_tuberack_nest_2ml_screwcap_D1", + "A2": "opentrons_24_tuberack_nest_2ml_screwcap_A2", + "B2": "opentrons_24_tuberack_nest_2ml_screwcap_B2", + "C2": "opentrons_24_tuberack_nest_2ml_screwcap_C2", + "D2": "opentrons_24_tuberack_nest_2ml_screwcap_D2", + "A3": "opentrons_24_tuberack_nest_2ml_screwcap_A3", + "B3": "opentrons_24_tuberack_nest_2ml_screwcap_B3", + "C3": "opentrons_24_tuberack_nest_2ml_screwcap_C3", + "D3": "opentrons_24_tuberack_nest_2ml_screwcap_D3", + "A4": "opentrons_24_tuberack_nest_2ml_screwcap_A4", + "B4": "opentrons_24_tuberack_nest_2ml_screwcap_B4", + "C4": "opentrons_24_tuberack_nest_2ml_screwcap_C4", + "D4": "opentrons_24_tuberack_nest_2ml_screwcap_D4", + "A5": "opentrons_24_tuberack_nest_2ml_screwcap_A5", + "B5": "opentrons_24_tuberack_nest_2ml_screwcap_B5", + "C5": "opentrons_24_tuberack_nest_2ml_screwcap_C5", + "D5": "opentrons_24_tuberack_nest_2ml_screwcap_D5", + "A6": "opentrons_24_tuberack_nest_2ml_screwcap_A6", + "B6": "opentrons_24_tuberack_nest_2ml_screwcap_B6", + "C6": "opentrons_24_tuberack_nest_2ml_screwcap_C6", + "D6": "opentrons_24_tuberack_nest_2ml_screwcap_D6" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "opentrons_24_tuberack_nest_2ml_screwcap_A1", + "uuid": "030ee49b-68af-4939-84a0-66b21abe73e8", + "name": "opentrons_24_tuberack_nest_2ml_screwcap_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "c6985ac7-30cd-49a3-a6ef-0ece32cd0f38", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 44.05, + "width": 6.145, + "height": 6.145 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 15.1375, + "y": 72.3575, + "z": 41.3 + }, + "position3d": { + "x": 15.1375, + "y": 72.3575, + "z": 41.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.145, + "size_y": 6.145, + "size_z": 44.05, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 15.1375, + "y": 72.3575, + "z": 41.3 + } + }, + { + "id": "opentrons_24_tuberack_nest_2ml_screwcap_B1", + "uuid": "ca09dd40-e984-4049-8553-04e5599f1c64", + "name": "opentrons_24_tuberack_nest_2ml_screwcap_B1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "c6985ac7-30cd-49a3-a6ef-0ece32cd0f38", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 44.05, + "width": 6.145, + "height": 6.145 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 15.1375, + "y": 53.0775, + "z": 41.3 + }, + "position3d": { + "x": 15.1375, + "y": 53.0775, + "z": 41.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.145, + "size_y": 6.145, + "size_z": 44.05, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 15.1375, + "y": 53.0775, + "z": 41.3 + } + }, + { + "id": "opentrons_24_tuberack_nest_2ml_screwcap_C1", + "uuid": "055ba72d-aa07-4be1-aaa7-3bcb146fde8a", + "name": "opentrons_24_tuberack_nest_2ml_screwcap_C1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "c6985ac7-30cd-49a3-a6ef-0ece32cd0f38", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 44.05, + "width": 6.145, + "height": 6.145 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 15.1375, + "y": 33.7975, + "z": 41.3 + }, + "position3d": { + "x": 15.1375, + "y": 33.7975, + "z": 41.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.145, + "size_y": 6.145, + "size_z": 44.05, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 15.1375, + "y": 33.7975, + "z": 41.3 + } + }, + { + "id": "opentrons_24_tuberack_nest_2ml_screwcap_D1", + "uuid": "c7f749a7-1609-4d29-b422-1e4a361fb9dd", + "name": "opentrons_24_tuberack_nest_2ml_screwcap_D1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "c6985ac7-30cd-49a3-a6ef-0ece32cd0f38", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 44.05, + "width": 6.145, + "height": 6.145 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 15.1375, + "y": 14.5175, + "z": 41.3 + }, + "position3d": { + "x": 15.1375, + "y": 14.5175, + "z": 41.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.145, + "size_y": 6.145, + "size_z": 44.05, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 15.1375, + "y": 14.5175, + "z": 41.3 + } + }, + { + "id": "opentrons_24_tuberack_nest_2ml_screwcap_A2", + "uuid": "f47d2c46-12c2-4f9d-9714-4add34ee49d4", + "name": "opentrons_24_tuberack_nest_2ml_screwcap_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "c6985ac7-30cd-49a3-a6ef-0ece32cd0f38", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 44.05, + "width": 6.145, + "height": 6.145 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 35.0275, + "y": 72.3575, + "z": 41.3 + }, + "position3d": { + "x": 35.0275, + "y": 72.3575, + "z": 41.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.145, + "size_y": 6.145, + "size_z": 44.05, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 35.0275, + "y": 72.3575, + "z": 41.3 + } + }, + { + "id": "opentrons_24_tuberack_nest_2ml_screwcap_B2", + "uuid": "e4a45426-7cc1-4b87-8f10-42f15359eaaf", + "name": "opentrons_24_tuberack_nest_2ml_screwcap_B2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "c6985ac7-30cd-49a3-a6ef-0ece32cd0f38", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 44.05, + "width": 6.145, + "height": 6.145 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 35.0275, + "y": 53.0775, + "z": 41.3 + }, + "position3d": { + "x": 35.0275, + "y": 53.0775, + "z": 41.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.145, + "size_y": 6.145, + "size_z": 44.05, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 35.0275, + "y": 53.0775, + "z": 41.3 + } + }, + { + "id": "opentrons_24_tuberack_nest_2ml_screwcap_C2", + "uuid": "3cf75d74-dfaa-4c63-9439-ea0dedee21f2", + "name": "opentrons_24_tuberack_nest_2ml_screwcap_C2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "c6985ac7-30cd-49a3-a6ef-0ece32cd0f38", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 44.05, + "width": 6.145, + "height": 6.145 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 35.0275, + "y": 33.7975, + "z": 41.3 + }, + "position3d": { + "x": 35.0275, + "y": 33.7975, + "z": 41.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.145, + "size_y": 6.145, + "size_z": 44.05, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 35.0275, + "y": 33.7975, + "z": 41.3 + } + }, + { + "id": "opentrons_24_tuberack_nest_2ml_screwcap_D2", + "uuid": "2d540e41-b7b7-4c35-a2ab-705eb513ba8b", + "name": "opentrons_24_tuberack_nest_2ml_screwcap_D2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "c6985ac7-30cd-49a3-a6ef-0ece32cd0f38", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 44.05, + "width": 6.145, + "height": 6.145 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 35.0275, + "y": 14.5175, + "z": 41.3 + }, + "position3d": { + "x": 35.0275, + "y": 14.5175, + "z": 41.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.145, + "size_y": 6.145, + "size_z": 44.05, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 35.0275, + "y": 14.5175, + "z": 41.3 + } + }, + { + "id": "opentrons_24_tuberack_nest_2ml_screwcap_A3", + "uuid": "f569078b-4c41-43a0-b999-9c4c845e40d1", + "name": "opentrons_24_tuberack_nest_2ml_screwcap_A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "c6985ac7-30cd-49a3-a6ef-0ece32cd0f38", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 44.05, + "width": 6.145, + "height": 6.145 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 54.9175, + "y": 72.3575, + "z": 41.3 + }, + "position3d": { + "x": 54.9175, + "y": 72.3575, + "z": 41.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.145, + "size_y": 6.145, + "size_z": 44.05, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 54.9175, + "y": 72.3575, + "z": 41.3 + } + }, + { + "id": "opentrons_24_tuberack_nest_2ml_screwcap_B3", + "uuid": "4d4b36f8-55d5-4f00-b578-20edbb465afa", + "name": "opentrons_24_tuberack_nest_2ml_screwcap_B3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "c6985ac7-30cd-49a3-a6ef-0ece32cd0f38", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 44.05, + "width": 6.145, + "height": 6.145 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 54.9175, + "y": 53.0775, + "z": 41.3 + }, + "position3d": { + "x": 54.9175, + "y": 53.0775, + "z": 41.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.145, + "size_y": 6.145, + "size_z": 44.05, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 54.9175, + "y": 53.0775, + "z": 41.3 + } + }, + { + "id": "opentrons_24_tuberack_nest_2ml_screwcap_C3", + "uuid": "9256f97c-3e40-4228-96b9-e7de4d333826", + "name": "opentrons_24_tuberack_nest_2ml_screwcap_C3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "c6985ac7-30cd-49a3-a6ef-0ece32cd0f38", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 44.05, + "width": 6.145, + "height": 6.145 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 54.9175, + "y": 33.7975, + "z": 41.3 + }, + "position3d": { + "x": 54.9175, + "y": 33.7975, + "z": 41.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.145, + "size_y": 6.145, + "size_z": 44.05, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 54.9175, + "y": 33.7975, + "z": 41.3 + } + }, + { + "id": "opentrons_24_tuberack_nest_2ml_screwcap_D3", + "uuid": "a524957b-fd2a-4868-8672-f0e5ae3d674c", + "name": "opentrons_24_tuberack_nest_2ml_screwcap_D3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "c6985ac7-30cd-49a3-a6ef-0ece32cd0f38", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 44.05, + "width": 6.145, + "height": 6.145 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 54.9175, + "y": 14.5175, + "z": 41.3 + }, + "position3d": { + "x": 54.9175, + "y": 14.5175, + "z": 41.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.145, + "size_y": 6.145, + "size_z": 44.05, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 54.9175, + "y": 14.5175, + "z": 41.3 + } + }, + { + "id": "opentrons_24_tuberack_nest_2ml_screwcap_A4", + "uuid": "6749d0cc-ea7a-4ec5-9591-8c96c4e27bfe", + "name": "opentrons_24_tuberack_nest_2ml_screwcap_A4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "c6985ac7-30cd-49a3-a6ef-0ece32cd0f38", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 44.05, + "width": 6.145, + "height": 6.145 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.8075, + "y": 72.3575, + "z": 41.3 + }, + "position3d": { + "x": 74.8075, + "y": 72.3575, + "z": 41.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.145, + "size_y": 6.145, + "size_z": 44.05, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.8075, + "y": 72.3575, + "z": 41.3 + } + }, + { + "id": "opentrons_24_tuberack_nest_2ml_screwcap_B4", + "uuid": "b307dc17-49fa-4662-b0b7-3736f127dfd8", + "name": "opentrons_24_tuberack_nest_2ml_screwcap_B4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "c6985ac7-30cd-49a3-a6ef-0ece32cd0f38", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 44.05, + "width": 6.145, + "height": 6.145 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.8075, + "y": 53.0775, + "z": 41.3 + }, + "position3d": { + "x": 74.8075, + "y": 53.0775, + "z": 41.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.145, + "size_y": 6.145, + "size_z": 44.05, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.8075, + "y": 53.0775, + "z": 41.3 + } + }, + { + "id": "opentrons_24_tuberack_nest_2ml_screwcap_C4", + "uuid": "c138bd2c-1888-463f-ad26-010c773fe5e6", + "name": "opentrons_24_tuberack_nest_2ml_screwcap_C4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "c6985ac7-30cd-49a3-a6ef-0ece32cd0f38", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 44.05, + "width": 6.145, + "height": 6.145 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.8075, + "y": 33.7975, + "z": 41.3 + }, + "position3d": { + "x": 74.8075, + "y": 33.7975, + "z": 41.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.145, + "size_y": 6.145, + "size_z": 44.05, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.8075, + "y": 33.7975, + "z": 41.3 + } + }, + { + "id": "opentrons_24_tuberack_nest_2ml_screwcap_D4", + "uuid": "809d73bb-8b65-4a4b-beb9-9c85e8162d28", + "name": "opentrons_24_tuberack_nest_2ml_screwcap_D4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "c6985ac7-30cd-49a3-a6ef-0ece32cd0f38", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 44.05, + "width": 6.145, + "height": 6.145 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.8075, + "y": 14.5175, + "z": 41.3 + }, + "position3d": { + "x": 74.8075, + "y": 14.5175, + "z": 41.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.145, + "size_y": 6.145, + "size_z": 44.05, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.8075, + "y": 14.5175, + "z": 41.3 + } + }, + { + "id": "opentrons_24_tuberack_nest_2ml_screwcap_A5", + "uuid": "18557a47-285f-462f-bf76-7fb9e4cda30d", + "name": "opentrons_24_tuberack_nest_2ml_screwcap_A5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "c6985ac7-30cd-49a3-a6ef-0ece32cd0f38", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 44.05, + "width": 6.145, + "height": 6.145 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.6975, + "y": 72.3575, + "z": 41.3 + }, + "position3d": { + "x": 94.6975, + "y": 72.3575, + "z": 41.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.145, + "size_y": 6.145, + "size_z": 44.05, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.6975, + "y": 72.3575, + "z": 41.3 + } + }, + { + "id": "opentrons_24_tuberack_nest_2ml_screwcap_B5", + "uuid": "ab8b543a-314b-45ad-b379-9126ccac2907", + "name": "opentrons_24_tuberack_nest_2ml_screwcap_B5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "c6985ac7-30cd-49a3-a6ef-0ece32cd0f38", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 44.05, + "width": 6.145, + "height": 6.145 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.6975, + "y": 53.0775, + "z": 41.3 + }, + "position3d": { + "x": 94.6975, + "y": 53.0775, + "z": 41.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.145, + "size_y": 6.145, + "size_z": 44.05, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.6975, + "y": 53.0775, + "z": 41.3 + } + }, + { + "id": "opentrons_24_tuberack_nest_2ml_screwcap_C5", + "uuid": "ac2cfaf6-535b-4a72-af93-b5a876c20eb8", + "name": "opentrons_24_tuberack_nest_2ml_screwcap_C5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "c6985ac7-30cd-49a3-a6ef-0ece32cd0f38", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 44.05, + "width": 6.145, + "height": 6.145 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.6975, + "y": 33.7975, + "z": 41.3 + }, + "position3d": { + "x": 94.6975, + "y": 33.7975, + "z": 41.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.145, + "size_y": 6.145, + "size_z": 44.05, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.6975, + "y": 33.7975, + "z": 41.3 + } + }, + { + "id": "opentrons_24_tuberack_nest_2ml_screwcap_D5", + "uuid": "0ad01a37-c002-47cc-89b2-300ba1406cf5", + "name": "opentrons_24_tuberack_nest_2ml_screwcap_D5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "c6985ac7-30cd-49a3-a6ef-0ece32cd0f38", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 44.05, + "width": 6.145, + "height": 6.145 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.6975, + "y": 14.5175, + "z": 41.3 + }, + "position3d": { + "x": 94.6975, + "y": 14.5175, + "z": 41.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.145, + "size_y": 6.145, + "size_z": 44.05, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.6975, + "y": 14.5175, + "z": 41.3 + } + }, + { + "id": "opentrons_24_tuberack_nest_2ml_screwcap_A6", + "uuid": "93a26ea3-24ca-4901-bb34-b41e7490b24a", + "name": "opentrons_24_tuberack_nest_2ml_screwcap_A6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "c6985ac7-30cd-49a3-a6ef-0ece32cd0f38", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 44.05, + "width": 6.145, + "height": 6.145 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.5875, + "y": 72.3575, + "z": 41.3 + }, + "position3d": { + "x": 114.5875, + "y": 72.3575, + "z": 41.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.145, + "size_y": 6.145, + "size_z": 44.05, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.5875, + "y": 72.3575, + "z": 41.3 + } + }, + { + "id": "opentrons_24_tuberack_nest_2ml_screwcap_B6", + "uuid": "391e6a41-431a-4f12-a1a0-ad89f551646e", + "name": "opentrons_24_tuberack_nest_2ml_screwcap_B6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "c6985ac7-30cd-49a3-a6ef-0ece32cd0f38", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 44.05, + "width": 6.145, + "height": 6.145 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.5875, + "y": 53.0775, + "z": 41.3 + }, + "position3d": { + "x": 114.5875, + "y": 53.0775, + "z": 41.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.145, + "size_y": 6.145, + "size_z": 44.05, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.5875, + "y": 53.0775, + "z": 41.3 + } + }, + { + "id": "opentrons_24_tuberack_nest_2ml_screwcap_C6", + "uuid": "961316dd-cfbc-4b3f-a684-94278d536fb8", + "name": "opentrons_24_tuberack_nest_2ml_screwcap_C6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "c6985ac7-30cd-49a3-a6ef-0ece32cd0f38", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 44.05, + "width": 6.145, + "height": 6.145 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.5875, + "y": 33.7975, + "z": 41.3 + }, + "position3d": { + "x": 114.5875, + "y": 33.7975, + "z": 41.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.145, + "size_y": 6.145, + "size_z": 44.05, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.5875, + "y": 33.7975, + "z": 41.3 + } + }, + { + "id": "opentrons_24_tuberack_nest_2ml_screwcap_D6", + "uuid": "bfa77553-9404-499c-948a-2ff11f1f791e", + "name": "opentrons_24_tuberack_nest_2ml_screwcap_D6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "c6985ac7-30cd-49a3-a6ef-0ece32cd0f38", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 44.05, + "width": 6.145, + "height": 6.145 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.5875, + "y": 14.5175, + "z": 41.3 + }, + "position3d": { + "x": 114.5875, + "y": 14.5175, + "z": 41.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 6.145, + "size_y": 6.145, + "size_z": 44.05, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.5875, + "y": 14.5175, + "z": 41.3 + } + } + ] + }, + { + "id": "opentrons_24_tuberack_nest_2ml_snapcap", + "category": [ + "tube_racks" + ], + "class": { + "module": "pylabrobot.resources.opentrons.tube_racks:opentrons_24_tuberack_nest_2ml_snapcap", + "type": "pylabrobot" + }, + "description": "Opentrons 24 tuberack nest 2ml snapcap", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/opentrons/tube_racks.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "opentrons_24_tuberack_nest_2ml_snapcap", + "uuid": "0e3e3c0b-df38-41a6-96a0-b7228eea43d9", + "name": "opentrons_24_tuberack_nest_2ml_snapcap", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "", + "class": "", + "pose": { + "size": { + "depth": 79.45, + "width": 127.75, + "height": 85.5 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TubeRack", + "size_x": 127.75, + "size_y": 85.5, + "size_z": 79.45, + "category": null, + "model": "Opentrons 24 Tube Rack with NEST 2 mL Snapcap", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "opentrons_24_tuberack_nest_2ml_snapcap_A1", + "B1": "opentrons_24_tuberack_nest_2ml_snapcap_B1", + "C1": "opentrons_24_tuberack_nest_2ml_snapcap_C1", + "D1": "opentrons_24_tuberack_nest_2ml_snapcap_D1", + "A2": "opentrons_24_tuberack_nest_2ml_snapcap_A2", + "B2": "opentrons_24_tuberack_nest_2ml_snapcap_B2", + "C2": "opentrons_24_tuberack_nest_2ml_snapcap_C2", + "D2": "opentrons_24_tuberack_nest_2ml_snapcap_D2", + "A3": "opentrons_24_tuberack_nest_2ml_snapcap_A3", + "B3": "opentrons_24_tuberack_nest_2ml_snapcap_B3", + "C3": "opentrons_24_tuberack_nest_2ml_snapcap_C3", + "D3": "opentrons_24_tuberack_nest_2ml_snapcap_D3", + "A4": "opentrons_24_tuberack_nest_2ml_snapcap_A4", + "B4": "opentrons_24_tuberack_nest_2ml_snapcap_B4", + "C4": "opentrons_24_tuberack_nest_2ml_snapcap_C4", + "D4": "opentrons_24_tuberack_nest_2ml_snapcap_D4", + "A5": "opentrons_24_tuberack_nest_2ml_snapcap_A5", + "B5": "opentrons_24_tuberack_nest_2ml_snapcap_B5", + "C5": "opentrons_24_tuberack_nest_2ml_snapcap_C5", + "D5": "opentrons_24_tuberack_nest_2ml_snapcap_D5", + "A6": "opentrons_24_tuberack_nest_2ml_snapcap_A6", + "B6": "opentrons_24_tuberack_nest_2ml_snapcap_B6", + "C6": "opentrons_24_tuberack_nest_2ml_snapcap_C6", + "D6": "opentrons_24_tuberack_nest_2ml_snapcap_D6" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "opentrons_24_tuberack_nest_2ml_snapcap_A1", + "uuid": "2195d4ed-a7a2-437a-bdc7-62b369b1de07", + "name": "opentrons_24_tuberack_nest_2ml_snapcap_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0e3e3c0b-df38-41a6-96a0-b7228eea43d9", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 39.28, + "width": 7.198, + "height": 7.198 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 14.611, + "y": 71.831, + "z": 40.17 + }, + "position3d": { + "x": 14.611, + "y": 71.831, + "z": 40.17 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 7.198, + "size_y": 7.198, + "size_z": 39.28, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 14.611, + "y": 71.831, + "z": 40.17 + } + }, + { + "id": "opentrons_24_tuberack_nest_2ml_snapcap_B1", + "uuid": "0376f738-4ec9-4607-b9ab-6c9a99f1d51b", + "name": "opentrons_24_tuberack_nest_2ml_snapcap_B1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0e3e3c0b-df38-41a6-96a0-b7228eea43d9", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 39.28, + "width": 7.198, + "height": 7.198 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 14.611, + "y": 52.551, + "z": 40.17 + }, + "position3d": { + "x": 14.611, + "y": 52.551, + "z": 40.17 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 7.198, + "size_y": 7.198, + "size_z": 39.28, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 14.611, + "y": 52.551, + "z": 40.17 + } + }, + { + "id": "opentrons_24_tuberack_nest_2ml_snapcap_C1", + "uuid": "e2e17a17-570c-4f10-a84d-47aeddfc08f2", + "name": "opentrons_24_tuberack_nest_2ml_snapcap_C1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0e3e3c0b-df38-41a6-96a0-b7228eea43d9", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 39.28, + "width": 7.198, + "height": 7.198 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 14.611, + "y": 33.271, + "z": 40.17 + }, + "position3d": { + "x": 14.611, + "y": 33.271, + "z": 40.17 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 7.198, + "size_y": 7.198, + "size_z": 39.28, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 14.611, + "y": 33.271, + "z": 40.17 + } + }, + { + "id": "opentrons_24_tuberack_nest_2ml_snapcap_D1", + "uuid": "e1ad56a6-c168-47ec-a301-9612d08dfd82", + "name": "opentrons_24_tuberack_nest_2ml_snapcap_D1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0e3e3c0b-df38-41a6-96a0-b7228eea43d9", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 39.28, + "width": 7.198, + "height": 7.198 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 14.611, + "y": 13.991, + "z": 40.17 + }, + "position3d": { + "x": 14.611, + "y": 13.991, + "z": 40.17 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 7.198, + "size_y": 7.198, + "size_z": 39.28, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 14.611, + "y": 13.991, + "z": 40.17 + } + }, + { + "id": "opentrons_24_tuberack_nest_2ml_snapcap_A2", + "uuid": "49340b23-f413-46a2-8a27-e2498e34e978", + "name": "opentrons_24_tuberack_nest_2ml_snapcap_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0e3e3c0b-df38-41a6-96a0-b7228eea43d9", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 39.28, + "width": 7.198, + "height": 7.198 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 34.501, + "y": 71.831, + "z": 40.17 + }, + "position3d": { + "x": 34.501, + "y": 71.831, + "z": 40.17 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 7.198, + "size_y": 7.198, + "size_z": 39.28, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 34.501, + "y": 71.831, + "z": 40.17 + } + }, + { + "id": "opentrons_24_tuberack_nest_2ml_snapcap_B2", + "uuid": "74610230-71d5-405b-9ebc-4eaba830533d", + "name": "opentrons_24_tuberack_nest_2ml_snapcap_B2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0e3e3c0b-df38-41a6-96a0-b7228eea43d9", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 39.28, + "width": 7.198, + "height": 7.198 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 34.501, + "y": 52.551, + "z": 40.17 + }, + "position3d": { + "x": 34.501, + "y": 52.551, + "z": 40.17 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 7.198, + "size_y": 7.198, + "size_z": 39.28, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 34.501, + "y": 52.551, + "z": 40.17 + } + }, + { + "id": "opentrons_24_tuberack_nest_2ml_snapcap_C2", + "uuid": "77f8fdd5-40e1-47fb-b5be-c0f3975d2fe0", + "name": "opentrons_24_tuberack_nest_2ml_snapcap_C2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0e3e3c0b-df38-41a6-96a0-b7228eea43d9", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 39.28, + "width": 7.198, + "height": 7.198 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 34.501, + "y": 33.271, + "z": 40.17 + }, + "position3d": { + "x": 34.501, + "y": 33.271, + "z": 40.17 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 7.198, + "size_y": 7.198, + "size_z": 39.28, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 34.501, + "y": 33.271, + "z": 40.17 + } + }, + { + "id": "opentrons_24_tuberack_nest_2ml_snapcap_D2", + "uuid": "8f082270-6d66-49fb-a92f-7b94de4db861", + "name": "opentrons_24_tuberack_nest_2ml_snapcap_D2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0e3e3c0b-df38-41a6-96a0-b7228eea43d9", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 39.28, + "width": 7.198, + "height": 7.198 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 34.501, + "y": 13.991, + "z": 40.17 + }, + "position3d": { + "x": 34.501, + "y": 13.991, + "z": 40.17 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 7.198, + "size_y": 7.198, + "size_z": 39.28, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 34.501, + "y": 13.991, + "z": 40.17 + } + }, + { + "id": "opentrons_24_tuberack_nest_2ml_snapcap_A3", + "uuid": "13de04bb-d394-49e8-8e50-743b97803586", + "name": "opentrons_24_tuberack_nest_2ml_snapcap_A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0e3e3c0b-df38-41a6-96a0-b7228eea43d9", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 39.28, + "width": 7.198, + "height": 7.198 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 54.391, + "y": 71.831, + "z": 40.17 + }, + "position3d": { + "x": 54.391, + "y": 71.831, + "z": 40.17 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 7.198, + "size_y": 7.198, + "size_z": 39.28, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 54.391, + "y": 71.831, + "z": 40.17 + } + }, + { + "id": "opentrons_24_tuberack_nest_2ml_snapcap_B3", + "uuid": "6179f721-b413-449e-85c3-fcbcd2c4931a", + "name": "opentrons_24_tuberack_nest_2ml_snapcap_B3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0e3e3c0b-df38-41a6-96a0-b7228eea43d9", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 39.28, + "width": 7.198, + "height": 7.198 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 54.391, + "y": 52.551, + "z": 40.17 + }, + "position3d": { + "x": 54.391, + "y": 52.551, + "z": 40.17 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 7.198, + "size_y": 7.198, + "size_z": 39.28, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 54.391, + "y": 52.551, + "z": 40.17 + } + }, + { + "id": "opentrons_24_tuberack_nest_2ml_snapcap_C3", + "uuid": "f9a16c6c-4cb6-423d-bc25-a68c140bacbd", + "name": "opentrons_24_tuberack_nest_2ml_snapcap_C3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0e3e3c0b-df38-41a6-96a0-b7228eea43d9", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 39.28, + "width": 7.198, + "height": 7.198 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 54.391, + "y": 33.271, + "z": 40.17 + }, + "position3d": { + "x": 54.391, + "y": 33.271, + "z": 40.17 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 7.198, + "size_y": 7.198, + "size_z": 39.28, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 54.391, + "y": 33.271, + "z": 40.17 + } + }, + { + "id": "opentrons_24_tuberack_nest_2ml_snapcap_D3", + "uuid": "dcaf1610-c205-4ccd-b56e-e91a1f0c95a2", + "name": "opentrons_24_tuberack_nest_2ml_snapcap_D3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0e3e3c0b-df38-41a6-96a0-b7228eea43d9", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 39.28, + "width": 7.198, + "height": 7.198 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 54.391, + "y": 13.991, + "z": 40.17 + }, + "position3d": { + "x": 54.391, + "y": 13.991, + "z": 40.17 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 7.198, + "size_y": 7.198, + "size_z": 39.28, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 54.391, + "y": 13.991, + "z": 40.17 + } + }, + { + "id": "opentrons_24_tuberack_nest_2ml_snapcap_A4", + "uuid": "a2fa72b4-01e0-4589-9d65-00826775c7ed", + "name": "opentrons_24_tuberack_nest_2ml_snapcap_A4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0e3e3c0b-df38-41a6-96a0-b7228eea43d9", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 39.28, + "width": 7.198, + "height": 7.198 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.281, + "y": 71.831, + "z": 40.17 + }, + "position3d": { + "x": 74.281, + "y": 71.831, + "z": 40.17 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 7.198, + "size_y": 7.198, + "size_z": 39.28, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.281, + "y": 71.831, + "z": 40.17 + } + }, + { + "id": "opentrons_24_tuberack_nest_2ml_snapcap_B4", + "uuid": "cf45d7a1-30de-46bc-984d-1a8ceebe75a2", + "name": "opentrons_24_tuberack_nest_2ml_snapcap_B4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0e3e3c0b-df38-41a6-96a0-b7228eea43d9", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 39.28, + "width": 7.198, + "height": 7.198 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.281, + "y": 52.551, + "z": 40.17 + }, + "position3d": { + "x": 74.281, + "y": 52.551, + "z": 40.17 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 7.198, + "size_y": 7.198, + "size_z": 39.28, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.281, + "y": 52.551, + "z": 40.17 + } + }, + { + "id": "opentrons_24_tuberack_nest_2ml_snapcap_C4", + "uuid": "2357d7d8-0e66-4659-97c7-af1ee5b83c83", + "name": "opentrons_24_tuberack_nest_2ml_snapcap_C4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0e3e3c0b-df38-41a6-96a0-b7228eea43d9", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 39.28, + "width": 7.198, + "height": 7.198 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.281, + "y": 33.271, + "z": 40.17 + }, + "position3d": { + "x": 74.281, + "y": 33.271, + "z": 40.17 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 7.198, + "size_y": 7.198, + "size_z": 39.28, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.281, + "y": 33.271, + "z": 40.17 + } + }, + { + "id": "opentrons_24_tuberack_nest_2ml_snapcap_D4", + "uuid": "7304717c-ce22-4e0d-bc79-a7a682f49ad2", + "name": "opentrons_24_tuberack_nest_2ml_snapcap_D4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0e3e3c0b-df38-41a6-96a0-b7228eea43d9", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 39.28, + "width": 7.198, + "height": 7.198 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.281, + "y": 13.991, + "z": 40.17 + }, + "position3d": { + "x": 74.281, + "y": 13.991, + "z": 40.17 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 7.198, + "size_y": 7.198, + "size_z": 39.28, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.281, + "y": 13.991, + "z": 40.17 + } + }, + { + "id": "opentrons_24_tuberack_nest_2ml_snapcap_A5", + "uuid": "e87c9915-54dd-4407-80c2-d53414e101ca", + "name": "opentrons_24_tuberack_nest_2ml_snapcap_A5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0e3e3c0b-df38-41a6-96a0-b7228eea43d9", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 39.28, + "width": 7.198, + "height": 7.198 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.171, + "y": 71.831, + "z": 40.17 + }, + "position3d": { + "x": 94.171, + "y": 71.831, + "z": 40.17 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 7.198, + "size_y": 7.198, + "size_z": 39.28, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.171, + "y": 71.831, + "z": 40.17 + } + }, + { + "id": "opentrons_24_tuberack_nest_2ml_snapcap_B5", + "uuid": "ce265bec-d82e-4b51-acc2-7cda9eaafd39", + "name": "opentrons_24_tuberack_nest_2ml_snapcap_B5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0e3e3c0b-df38-41a6-96a0-b7228eea43d9", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 39.28, + "width": 7.198, + "height": 7.198 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.171, + "y": 52.551, + "z": 40.17 + }, + "position3d": { + "x": 94.171, + "y": 52.551, + "z": 40.17 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 7.198, + "size_y": 7.198, + "size_z": 39.28, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.171, + "y": 52.551, + "z": 40.17 + } + }, + { + "id": "opentrons_24_tuberack_nest_2ml_snapcap_C5", + "uuid": "274a341f-e94d-417f-87b9-489331d8a577", + "name": "opentrons_24_tuberack_nest_2ml_snapcap_C5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0e3e3c0b-df38-41a6-96a0-b7228eea43d9", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 39.28, + "width": 7.198, + "height": 7.198 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.171, + "y": 33.271, + "z": 40.17 + }, + "position3d": { + "x": 94.171, + "y": 33.271, + "z": 40.17 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 7.198, + "size_y": 7.198, + "size_z": 39.28, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.171, + "y": 33.271, + "z": 40.17 + } + }, + { + "id": "opentrons_24_tuberack_nest_2ml_snapcap_D5", + "uuid": "f05ade1e-8e63-4629-b113-0c6af204b085", + "name": "opentrons_24_tuberack_nest_2ml_snapcap_D5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0e3e3c0b-df38-41a6-96a0-b7228eea43d9", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 39.28, + "width": 7.198, + "height": 7.198 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 94.171, + "y": 13.991, + "z": 40.17 + }, + "position3d": { + "x": 94.171, + "y": 13.991, + "z": 40.17 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 7.198, + "size_y": 7.198, + "size_z": 39.28, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 94.171, + "y": 13.991, + "z": 40.17 + } + }, + { + "id": "opentrons_24_tuberack_nest_2ml_snapcap_A6", + "uuid": "407b3424-d9cf-4d8b-bfe8-3d4519a23eb2", + "name": "opentrons_24_tuberack_nest_2ml_snapcap_A6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0e3e3c0b-df38-41a6-96a0-b7228eea43d9", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 39.28, + "width": 7.198, + "height": 7.198 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.061, + "y": 71.831, + "z": 40.17 + }, + "position3d": { + "x": 114.061, + "y": 71.831, + "z": 40.17 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 7.198, + "size_y": 7.198, + "size_z": 39.28, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.061, + "y": 71.831, + "z": 40.17 + } + }, + { + "id": "opentrons_24_tuberack_nest_2ml_snapcap_B6", + "uuid": "1be33bd1-5783-4fda-bced-d3c6823439ed", + "name": "opentrons_24_tuberack_nest_2ml_snapcap_B6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0e3e3c0b-df38-41a6-96a0-b7228eea43d9", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 39.28, + "width": 7.198, + "height": 7.198 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.061, + "y": 52.551, + "z": 40.17 + }, + "position3d": { + "x": 114.061, + "y": 52.551, + "z": 40.17 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 7.198, + "size_y": 7.198, + "size_z": 39.28, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.061, + "y": 52.551, + "z": 40.17 + } + }, + { + "id": "opentrons_24_tuberack_nest_2ml_snapcap_C6", + "uuid": "9b885f7b-63a2-43e2-8537-0b1c27f1f4c3", + "name": "opentrons_24_tuberack_nest_2ml_snapcap_C6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0e3e3c0b-df38-41a6-96a0-b7228eea43d9", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 39.28, + "width": 7.198, + "height": 7.198 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.061, + "y": 33.271, + "z": 40.17 + }, + "position3d": { + "x": 114.061, + "y": 33.271, + "z": 40.17 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 7.198, + "size_y": 7.198, + "size_z": 39.28, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.061, + "y": 33.271, + "z": 40.17 + } + }, + { + "id": "opentrons_24_tuberack_nest_2ml_snapcap_D6", + "uuid": "407dda70-0bae-4a22-8356-b7e6894e828f", + "name": "opentrons_24_tuberack_nest_2ml_snapcap_D6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0e3e3c0b-df38-41a6-96a0-b7228eea43d9", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 39.28, + "width": 7.198, + "height": 7.198 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.061, + "y": 13.991, + "z": 40.17 + }, + "position3d": { + "x": 114.061, + "y": 13.991, + "z": 40.17 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 7.198, + "size_y": 7.198, + "size_z": 39.28, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.061, + "y": 13.991, + "z": 40.17 + } + } + ] + }, + { + "id": "opentrons_6_tuberack_falcon_50ml_conical", + "category": [ + "tube_racks" + ], + "class": { + "module": "pylabrobot.resources.opentrons.tube_racks:opentrons_6_tuberack_falcon_50ml_conical", + "type": "pylabrobot" + }, + "description": "Opentrons 6 tuberack falcon 50ml conical", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/opentrons/tube_racks.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "opentrons_6_tuberack_falcon_50ml_conical", + "uuid": "0c06af7c-a166-4529-b4c7-48f98fcd6374", + "name": "opentrons_6_tuberack_falcon_50ml_conical", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "", + "class": "", + "pose": { + "size": { + "depth": 120.3, + "width": 127.76, + "height": 85.48 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TubeRack", + "size_x": 127.76, + "size_y": 85.48, + "size_z": 120.3, + "category": null, + "model": "Opentrons 6 Tube Rack with Falcon 50 mL Conical", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "opentrons_6_tuberack_falcon_50ml_conical_A1", + "B1": "opentrons_6_tuberack_falcon_50ml_conical_B1", + "A2": "opentrons_6_tuberack_falcon_50ml_conical_A2", + "B2": "opentrons_6_tuberack_falcon_50ml_conical_B2", + "A3": "opentrons_6_tuberack_falcon_50ml_conical_A3", + "B3": "opentrons_6_tuberack_falcon_50ml_conical_B3" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "opentrons_6_tuberack_falcon_50ml_conical_A1", + "uuid": "93733e78-b317-41c3-ae18-7d643e57bda6", + "name": "opentrons_6_tuberack_falcon_50ml_conical_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0c06af7c-a166-4529-b4c7-48f98fcd6374", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 113.0, + "width": 19.665, + "height": 19.665 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 25.6675, + "y": 50.4075, + "z": 7.3 + }, + "position3d": { + "x": 25.6675, + "y": 50.4075, + "z": 7.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 19.665, + "size_y": 19.665, + "size_z": 113, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 25.6675, + "y": 50.4075, + "z": 7.3 + } + }, + { + "id": "opentrons_6_tuberack_falcon_50ml_conical_B1", + "uuid": "a113b2d7-4520-4e2a-a4c8-582e87d7c77c", + "name": "opentrons_6_tuberack_falcon_50ml_conical_B1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0c06af7c-a166-4529-b4c7-48f98fcd6374", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 113.0, + "width": 19.665, + "height": 19.665 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 25.6675, + "y": 15.4075, + "z": 7.3 + }, + "position3d": { + "x": 25.6675, + "y": 15.4075, + "z": 7.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 19.665, + "size_y": 19.665, + "size_z": 113, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 25.6675, + "y": 15.4075, + "z": 7.3 + } + }, + { + "id": "opentrons_6_tuberack_falcon_50ml_conical_A2", + "uuid": "4b4ac29f-2d62-49a3-b3af-7710ef8ad637", + "name": "opentrons_6_tuberack_falcon_50ml_conical_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0c06af7c-a166-4529-b4c7-48f98fcd6374", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 113.0, + "width": 19.665, + "height": 19.665 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 60.6675, + "y": 50.4075, + "z": 7.3 + }, + "position3d": { + "x": 60.6675, + "y": 50.4075, + "z": 7.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 19.665, + "size_y": 19.665, + "size_z": 113, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 60.6675, + "y": 50.4075, + "z": 7.3 + } + }, + { + "id": "opentrons_6_tuberack_falcon_50ml_conical_B2", + "uuid": "8b7711d9-6eb0-4f01-bc75-7e1051eebfd1", + "name": "opentrons_6_tuberack_falcon_50ml_conical_B2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0c06af7c-a166-4529-b4c7-48f98fcd6374", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 113.0, + "width": 19.665, + "height": 19.665 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 60.6675, + "y": 15.4075, + "z": 7.3 + }, + "position3d": { + "x": 60.6675, + "y": 15.4075, + "z": 7.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 19.665, + "size_y": 19.665, + "size_z": 113, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 60.6675, + "y": 15.4075, + "z": 7.3 + } + }, + { + "id": "opentrons_6_tuberack_falcon_50ml_conical_A3", + "uuid": "30804e24-20ea-4ed2-b496-10af9450fd15", + "name": "opentrons_6_tuberack_falcon_50ml_conical_A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0c06af7c-a166-4529-b4c7-48f98fcd6374", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 113.0, + "width": 19.665, + "height": 19.665 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 95.6675, + "y": 50.4075, + "z": 7.3 + }, + "position3d": { + "x": 95.6675, + "y": 50.4075, + "z": 7.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 19.665, + "size_y": 19.665, + "size_z": 113, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 95.6675, + "y": 50.4075, + "z": 7.3 + } + }, + { + "id": "opentrons_6_tuberack_falcon_50ml_conical_B3", + "uuid": "e28f55fe-9e91-45be-a373-d21ada152516", + "name": "opentrons_6_tuberack_falcon_50ml_conical_B3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0c06af7c-a166-4529-b4c7-48f98fcd6374", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 113.0, + "width": 19.665, + "height": 19.665 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 95.6675, + "y": 15.4075, + "z": 7.3 + }, + "position3d": { + "x": 95.6675, + "y": 15.4075, + "z": 7.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 19.665, + "size_y": 19.665, + "size_z": 113, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 95.6675, + "y": 15.4075, + "z": 7.3 + } + } + ] + }, + { + "id": "opentrons_6_tuberack_nest_50ml_conical", + "category": [ + "tube_racks" + ], + "class": { + "module": "pylabrobot.resources.opentrons.tube_racks:opentrons_6_tuberack_nest_50ml_conical", + "type": "pylabrobot" + }, + "description": "Opentrons 6 tuberack nest 50ml conical", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/opentrons/tube_racks.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "opentrons_6_tuberack_nest_50ml_conical", + "uuid": "8c7064c1-f6da-4af8-b477-454e91e39cde", + "name": "opentrons_6_tuberack_nest_50ml_conical", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "", + "class": "", + "pose": { + "size": { + "depth": 120.35, + "width": 127.76, + "height": 85.48 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TubeRack", + "size_x": 127.76, + "size_y": 85.48, + "size_z": 120.35, + "category": null, + "model": "Opentrons 6 Tube Rack with NEST 50 mL Conical", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "opentrons_6_tuberack_nest_50ml_conical_A1", + "B1": "opentrons_6_tuberack_nest_50ml_conical_B1", + "A2": "opentrons_6_tuberack_nest_50ml_conical_A2", + "B2": "opentrons_6_tuberack_nest_50ml_conical_B2", + "A3": "opentrons_6_tuberack_nest_50ml_conical_A3", + "B3": "opentrons_6_tuberack_nest_50ml_conical_B3" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "opentrons_6_tuberack_nest_50ml_conical_A1", + "uuid": "8b546a90-cbea-4ee8-ac9e-7a512a638b23", + "name": "opentrons_6_tuberack_nest_50ml_conical_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8c7064c1-f6da-4af8-b477-454e91e39cde", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 113.05, + "width": 19.764, + "height": 19.764 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 25.618, + "y": 50.358, + "z": 7.3 + }, + "position3d": { + "x": 25.618, + "y": 50.358, + "z": 7.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 19.764, + "size_y": 19.764, + "size_z": 113.05, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 25.618, + "y": 50.358, + "z": 7.3 + } + }, + { + "id": "opentrons_6_tuberack_nest_50ml_conical_B1", + "uuid": "641b556b-04c6-43a5-ab09-c728d447f3af", + "name": "opentrons_6_tuberack_nest_50ml_conical_B1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8c7064c1-f6da-4af8-b477-454e91e39cde", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 113.05, + "width": 19.764, + "height": 19.764 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 25.618, + "y": 15.358, + "z": 7.3 + }, + "position3d": { + "x": 25.618, + "y": 15.358, + "z": 7.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 19.764, + "size_y": 19.764, + "size_z": 113.05, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 25.618, + "y": 15.358, + "z": 7.3 + } + }, + { + "id": "opentrons_6_tuberack_nest_50ml_conical_A2", + "uuid": "da6dbb09-2058-4de5-8850-667d7fd480c3", + "name": "opentrons_6_tuberack_nest_50ml_conical_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8c7064c1-f6da-4af8-b477-454e91e39cde", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 113.05, + "width": 19.764, + "height": 19.764 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 60.618, + "y": 50.358, + "z": 7.3 + }, + "position3d": { + "x": 60.618, + "y": 50.358, + "z": 7.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 19.764, + "size_y": 19.764, + "size_z": 113.05, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 60.618, + "y": 50.358, + "z": 7.3 + } + }, + { + "id": "opentrons_6_tuberack_nest_50ml_conical_B2", + "uuid": "cd6b9f18-c235-45cf-a637-02eb3d772d46", + "name": "opentrons_6_tuberack_nest_50ml_conical_B2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8c7064c1-f6da-4af8-b477-454e91e39cde", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 113.05, + "width": 19.764, + "height": 19.764 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 60.618, + "y": 15.358, + "z": 7.3 + }, + "position3d": { + "x": 60.618, + "y": 15.358, + "z": 7.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 19.764, + "size_y": 19.764, + "size_z": 113.05, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 60.618, + "y": 15.358, + "z": 7.3 + } + }, + { + "id": "opentrons_6_tuberack_nest_50ml_conical_A3", + "uuid": "994d7fa9-c09e-4993-b165-59d896dc6bcf", + "name": "opentrons_6_tuberack_nest_50ml_conical_A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8c7064c1-f6da-4af8-b477-454e91e39cde", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 113.05, + "width": 19.764, + "height": 19.764 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 95.618, + "y": 50.358, + "z": 7.3 + }, + "position3d": { + "x": 95.618, + "y": 50.358, + "z": 7.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 19.764, + "size_y": 19.764, + "size_z": 113.05, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 95.618, + "y": 50.358, + "z": 7.3 + } + }, + { + "id": "opentrons_6_tuberack_nest_50ml_conical_B3", + "uuid": "20b1863f-6c41-4128-a988-bbed4595e5cb", + "name": "opentrons_6_tuberack_nest_50ml_conical_B3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8c7064c1-f6da-4af8-b477-454e91e39cde", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 113.05, + "width": 19.764, + "height": 19.764 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 95.618, + "y": 15.358, + "z": 7.3 + }, + "position3d": { + "x": 95.618, + "y": 15.358, + "z": 7.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 19.764, + "size_y": 19.764, + "size_z": 113.05, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 95.618, + "y": 15.358, + "z": 7.3 + } + } + ] + }, + { + "id": "opentrons_96_well_aluminum_block", + "category": [ + "tube_racks" + ], + "class": { + "module": "pylabrobot.resources.opentrons.tube_racks:opentrons_96_well_aluminum_block", + "type": "pylabrobot" + }, + "description": "Opentrons 96 well aluminum block", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/opentrons/tube_racks.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "opentrons_96_well_aluminum_block", + "uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "name": "opentrons_96_well_aluminum_block", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "", + "class": "", + "pose": { + "size": { + "depth": 18.16, + "width": 127.76, + "height": 85.48 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TubeRack", + "size_x": 127.76, + "size_y": 85.48, + "size_z": 18.16, + "category": null, + "model": "Opentrons 96 Well Aluminum Block", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "opentrons_96_well_aluminum_block_A1", + "B1": "opentrons_96_well_aluminum_block_B1", + "C1": "opentrons_96_well_aluminum_block_C1", + "D1": "opentrons_96_well_aluminum_block_D1", + "E1": "opentrons_96_well_aluminum_block_E1", + "F1": "opentrons_96_well_aluminum_block_F1", + "G1": "opentrons_96_well_aluminum_block_G1", + "H1": "opentrons_96_well_aluminum_block_H1", + "A2": "opentrons_96_well_aluminum_block_A2", + "B2": "opentrons_96_well_aluminum_block_B2", + "C2": "opentrons_96_well_aluminum_block_C2", + "D2": "opentrons_96_well_aluminum_block_D2", + "E2": "opentrons_96_well_aluminum_block_E2", + "F2": "opentrons_96_well_aluminum_block_F2", + "G2": "opentrons_96_well_aluminum_block_G2", + "H2": "opentrons_96_well_aluminum_block_H2", + "A3": "opentrons_96_well_aluminum_block_A3", + "B3": "opentrons_96_well_aluminum_block_B3", + "C3": "opentrons_96_well_aluminum_block_C3", + "D3": "opentrons_96_well_aluminum_block_D3", + "E3": "opentrons_96_well_aluminum_block_E3", + "F3": "opentrons_96_well_aluminum_block_F3", + "G3": "opentrons_96_well_aluminum_block_G3", + "H3": "opentrons_96_well_aluminum_block_H3", + "A4": "opentrons_96_well_aluminum_block_A4", + "B4": "opentrons_96_well_aluminum_block_B4", + "C4": "opentrons_96_well_aluminum_block_C4", + "D4": "opentrons_96_well_aluminum_block_D4", + "E4": "opentrons_96_well_aluminum_block_E4", + "F4": "opentrons_96_well_aluminum_block_F4", + "G4": "opentrons_96_well_aluminum_block_G4", + "H4": "opentrons_96_well_aluminum_block_H4", + "A5": "opentrons_96_well_aluminum_block_A5", + "B5": "opentrons_96_well_aluminum_block_B5", + "C5": "opentrons_96_well_aluminum_block_C5", + "D5": "opentrons_96_well_aluminum_block_D5", + "E5": "opentrons_96_well_aluminum_block_E5", + "F5": "opentrons_96_well_aluminum_block_F5", + "G5": "opentrons_96_well_aluminum_block_G5", + "H5": "opentrons_96_well_aluminum_block_H5", + "A6": "opentrons_96_well_aluminum_block_A6", + "B6": "opentrons_96_well_aluminum_block_B6", + "C6": "opentrons_96_well_aluminum_block_C6", + "D6": "opentrons_96_well_aluminum_block_D6", + "E6": "opentrons_96_well_aluminum_block_E6", + "F6": "opentrons_96_well_aluminum_block_F6", + "G6": "opentrons_96_well_aluminum_block_G6", + "H6": "opentrons_96_well_aluminum_block_H6", + "A7": "opentrons_96_well_aluminum_block_A7", + "B7": "opentrons_96_well_aluminum_block_B7", + "C7": "opentrons_96_well_aluminum_block_C7", + "D7": "opentrons_96_well_aluminum_block_D7", + "E7": "opentrons_96_well_aluminum_block_E7", + "F7": "opentrons_96_well_aluminum_block_F7", + "G7": "opentrons_96_well_aluminum_block_G7", + "H7": "opentrons_96_well_aluminum_block_H7", + "A8": "opentrons_96_well_aluminum_block_A8", + "B8": "opentrons_96_well_aluminum_block_B8", + "C8": "opentrons_96_well_aluminum_block_C8", + "D8": "opentrons_96_well_aluminum_block_D8", + "E8": "opentrons_96_well_aluminum_block_E8", + "F8": "opentrons_96_well_aluminum_block_F8", + "G8": "opentrons_96_well_aluminum_block_G8", + "H8": "opentrons_96_well_aluminum_block_H8", + "A9": "opentrons_96_well_aluminum_block_A9", + "B9": "opentrons_96_well_aluminum_block_B9", + "C9": "opentrons_96_well_aluminum_block_C9", + "D9": "opentrons_96_well_aluminum_block_D9", + "E9": "opentrons_96_well_aluminum_block_E9", + "F9": "opentrons_96_well_aluminum_block_F9", + "G9": "opentrons_96_well_aluminum_block_G9", + "H9": "opentrons_96_well_aluminum_block_H9", + "A10": "opentrons_96_well_aluminum_block_A10", + "B10": "opentrons_96_well_aluminum_block_B10", + "C10": "opentrons_96_well_aluminum_block_C10", + "D10": "opentrons_96_well_aluminum_block_D10", + "E10": "opentrons_96_well_aluminum_block_E10", + "F10": "opentrons_96_well_aluminum_block_F10", + "G10": "opentrons_96_well_aluminum_block_G10", + "H10": "opentrons_96_well_aluminum_block_H10", + "A11": "opentrons_96_well_aluminum_block_A11", + "B11": "opentrons_96_well_aluminum_block_B11", + "C11": "opentrons_96_well_aluminum_block_C11", + "D11": "opentrons_96_well_aluminum_block_D11", + "E11": "opentrons_96_well_aluminum_block_E11", + "F11": "opentrons_96_well_aluminum_block_F11", + "G11": "opentrons_96_well_aluminum_block_G11", + "H11": "opentrons_96_well_aluminum_block_H11", + "A12": "opentrons_96_well_aluminum_block_A12", + "B12": "opentrons_96_well_aluminum_block_B12", + "C12": "opentrons_96_well_aluminum_block_C12", + "D12": "opentrons_96_well_aluminum_block_D12", + "E12": "opentrons_96_well_aluminum_block_E12", + "F12": "opentrons_96_well_aluminum_block_F12", + "G12": "opentrons_96_well_aluminum_block_G12", + "H12": "opentrons_96_well_aluminum_block_H12" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "opentrons_96_well_aluminum_block_A1", + "uuid": "c7216b7b-9802-42ab-bac2-f4f30dcba950", + "name": "opentrons_96_well_aluminum_block_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 12.492, + "y": 72.352, + "z": 3.38 + }, + "position3d": { + "x": 12.492, + "y": 72.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 12.492, + "y": 72.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_B1", + "uuid": "7aeb5de1-e6d3-4708-bb73-9ce41da9e7ce", + "name": "opentrons_96_well_aluminum_block_B1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 12.492, + "y": 63.352, + "z": 3.38 + }, + "position3d": { + "x": 12.492, + "y": 63.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 12.492, + "y": 63.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_C1", + "uuid": "4d4d4ed0-6694-481b-975a-8029051575ac", + "name": "opentrons_96_well_aluminum_block_C1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 12.492, + "y": 54.352, + "z": 3.38 + }, + "position3d": { + "x": 12.492, + "y": 54.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 12.492, + "y": 54.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_D1", + "uuid": "39d0d40a-b3a4-453c-bee2-931857070289", + "name": "opentrons_96_well_aluminum_block_D1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 12.492, + "y": 45.352, + "z": 3.38 + }, + "position3d": { + "x": 12.492, + "y": 45.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 12.492, + "y": 45.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_E1", + "uuid": "e1d05925-0e13-43ec-87fb-a76eca92ec21", + "name": "opentrons_96_well_aluminum_block_E1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 12.492, + "y": 36.352, + "z": 3.38 + }, + "position3d": { + "x": 12.492, + "y": 36.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 12.492, + "y": 36.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_F1", + "uuid": "25d0945f-8caa-46cf-b05e-71550e7098f5", + "name": "opentrons_96_well_aluminum_block_F1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 12.492, + "y": 27.352, + "z": 3.38 + }, + "position3d": { + "x": 12.492, + "y": 27.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 12.492, + "y": 27.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_G1", + "uuid": "64e46516-364f-4d32-a128-3807decdb689", + "name": "opentrons_96_well_aluminum_block_G1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 12.492, + "y": 18.352, + "z": 3.38 + }, + "position3d": { + "x": 12.492, + "y": 18.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 12.492, + "y": 18.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_H1", + "uuid": "d5af1ee4-1e58-47fa-9d0b-b99790d04982", + "name": "opentrons_96_well_aluminum_block_H1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 12.492, + "y": 9.352, + "z": 3.38 + }, + "position3d": { + "x": 12.492, + "y": 9.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 12.492, + "y": 9.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_A2", + "uuid": "932c97af-85f4-40ae-b334-91040bf3d733", + "name": "opentrons_96_well_aluminum_block_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 21.492, + "y": 72.352, + "z": 3.38 + }, + "position3d": { + "x": 21.492, + "y": 72.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 21.492, + "y": 72.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_B2", + "uuid": "a4e5068a-b186-41e0-84a3-6ec81c6f4a23", + "name": "opentrons_96_well_aluminum_block_B2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 21.492, + "y": 63.352, + "z": 3.38 + }, + "position3d": { + "x": 21.492, + "y": 63.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 21.492, + "y": 63.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_C2", + "uuid": "74cfa9f5-9d61-4963-b9a0-5e9b06bb4174", + "name": "opentrons_96_well_aluminum_block_C2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 21.492, + "y": 54.352, + "z": 3.38 + }, + "position3d": { + "x": 21.492, + "y": 54.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 21.492, + "y": 54.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_D2", + "uuid": "67e9d732-dd22-4024-a2c4-ff753d044d62", + "name": "opentrons_96_well_aluminum_block_D2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 21.492, + "y": 45.352, + "z": 3.38 + }, + "position3d": { + "x": 21.492, + "y": 45.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 21.492, + "y": 45.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_E2", + "uuid": "657ab6db-fa0f-4582-a96c-1b79a9d60aab", + "name": "opentrons_96_well_aluminum_block_E2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 21.492, + "y": 36.352, + "z": 3.38 + }, + "position3d": { + "x": 21.492, + "y": 36.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 21.492, + "y": 36.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_F2", + "uuid": "c0834c26-54b6-4876-93da-02ba2528fa69", + "name": "opentrons_96_well_aluminum_block_F2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 21.492, + "y": 27.352, + "z": 3.38 + }, + "position3d": { + "x": 21.492, + "y": 27.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 21.492, + "y": 27.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_G2", + "uuid": "01c9709c-b698-459a-98ef-38c66ebde66c", + "name": "opentrons_96_well_aluminum_block_G2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 21.492, + "y": 18.352, + "z": 3.38 + }, + "position3d": { + "x": 21.492, + "y": 18.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 21.492, + "y": 18.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_H2", + "uuid": "893babc3-f636-41d3-b554-a33c6daf23c1", + "name": "opentrons_96_well_aluminum_block_H2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 21.492, + "y": 9.352, + "z": 3.38 + }, + "position3d": { + "x": 21.492, + "y": 9.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 21.492, + "y": 9.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_A3", + "uuid": "b3fee18d-fce0-4bf5-910d-d5a6509c198d", + "name": "opentrons_96_well_aluminum_block_A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 30.492, + "y": 72.352, + "z": 3.38 + }, + "position3d": { + "x": 30.492, + "y": 72.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 30.492, + "y": 72.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_B3", + "uuid": "0673a69c-5bd0-4cc5-84e5-3a0e2dc50c8b", + "name": "opentrons_96_well_aluminum_block_B3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 30.492, + "y": 63.352, + "z": 3.38 + }, + "position3d": { + "x": 30.492, + "y": 63.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 30.492, + "y": 63.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_C3", + "uuid": "ba21fa59-c29e-498c-80a0-ed1a8e8c698d", + "name": "opentrons_96_well_aluminum_block_C3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 30.492, + "y": 54.352, + "z": 3.38 + }, + "position3d": { + "x": 30.492, + "y": 54.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 30.492, + "y": 54.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_D3", + "uuid": "ae9ffcfb-00a3-4772-ae4a-7da4b0841610", + "name": "opentrons_96_well_aluminum_block_D3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 30.492, + "y": 45.352, + "z": 3.38 + }, + "position3d": { + "x": 30.492, + "y": 45.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 30.492, + "y": 45.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_E3", + "uuid": "7dda7dfd-9ef1-4b36-85ef-2be7eeccf78e", + "name": "opentrons_96_well_aluminum_block_E3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 30.492, + "y": 36.352, + "z": 3.38 + }, + "position3d": { + "x": 30.492, + "y": 36.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 30.492, + "y": 36.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_F3", + "uuid": "4845499b-7298-4847-8137-ee2b497ea848", + "name": "opentrons_96_well_aluminum_block_F3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 30.492, + "y": 27.352, + "z": 3.38 + }, + "position3d": { + "x": 30.492, + "y": 27.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 30.492, + "y": 27.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_G3", + "uuid": "400df2bf-494d-48db-b8de-0b131bfebddd", + "name": "opentrons_96_well_aluminum_block_G3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 30.492, + "y": 18.352, + "z": 3.38 + }, + "position3d": { + "x": 30.492, + "y": 18.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 30.492, + "y": 18.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_H3", + "uuid": "ba07dd9b-91fd-4215-9e73-3fc7b10b6aae", + "name": "opentrons_96_well_aluminum_block_H3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 30.492, + "y": 9.352, + "z": 3.38 + }, + "position3d": { + "x": 30.492, + "y": 9.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 30.492, + "y": 9.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_A4", + "uuid": "30bef5d3-eecb-45c6-9085-71a14fa4555c", + "name": "opentrons_96_well_aluminum_block_A4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 39.492, + "y": 72.352, + "z": 3.38 + }, + "position3d": { + "x": 39.492, + "y": 72.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 39.492, + "y": 72.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_B4", + "uuid": "293b8504-fbd1-4696-be7b-39de9924b523", + "name": "opentrons_96_well_aluminum_block_B4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 39.492, + "y": 63.352, + "z": 3.38 + }, + "position3d": { + "x": 39.492, + "y": 63.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 39.492, + "y": 63.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_C4", + "uuid": "9c22dea9-5f36-4120-9873-f40421b2909d", + "name": "opentrons_96_well_aluminum_block_C4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 39.492, + "y": 54.352, + "z": 3.38 + }, + "position3d": { + "x": 39.492, + "y": 54.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 39.492, + "y": 54.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_D4", + "uuid": "af61b31e-b881-4cd1-8cf8-1058657c8a77", + "name": "opentrons_96_well_aluminum_block_D4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 39.492, + "y": 45.352, + "z": 3.38 + }, + "position3d": { + "x": 39.492, + "y": 45.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 39.492, + "y": 45.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_E4", + "uuid": "1c71c621-df1d-4d70-b55e-ba9ca5c79c38", + "name": "opentrons_96_well_aluminum_block_E4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 39.492, + "y": 36.352, + "z": 3.38 + }, + "position3d": { + "x": 39.492, + "y": 36.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 39.492, + "y": 36.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_F4", + "uuid": "5ffa40a7-a2da-4be3-bec3-d48a878894ef", + "name": "opentrons_96_well_aluminum_block_F4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 39.492, + "y": 27.352, + "z": 3.38 + }, + "position3d": { + "x": 39.492, + "y": 27.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 39.492, + "y": 27.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_G4", + "uuid": "53ab3756-1de3-4d73-b2ba-75f08d4e09e8", + "name": "opentrons_96_well_aluminum_block_G4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 39.492, + "y": 18.352, + "z": 3.38 + }, + "position3d": { + "x": 39.492, + "y": 18.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 39.492, + "y": 18.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_H4", + "uuid": "03e4b3c9-3ff4-4a5a-ae4d-33d3fe08b882", + "name": "opentrons_96_well_aluminum_block_H4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 39.492, + "y": 9.352, + "z": 3.38 + }, + "position3d": { + "x": 39.492, + "y": 9.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 39.492, + "y": 9.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_A5", + "uuid": "d212dc85-115a-4215-8519-3ae719ad4344", + "name": "opentrons_96_well_aluminum_block_A5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 48.492, + "y": 72.352, + "z": 3.38 + }, + "position3d": { + "x": 48.492, + "y": 72.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 48.492, + "y": 72.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_B5", + "uuid": "6ad79028-ae7c-4fbc-806a-71745efee25e", + "name": "opentrons_96_well_aluminum_block_B5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 48.492, + "y": 63.352, + "z": 3.38 + }, + "position3d": { + "x": 48.492, + "y": 63.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 48.492, + "y": 63.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_C5", + "uuid": "360181f5-9cd8-4a0c-8000-6d4fd12a1f0e", + "name": "opentrons_96_well_aluminum_block_C5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 48.492, + "y": 54.352, + "z": 3.38 + }, + "position3d": { + "x": 48.492, + "y": 54.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 48.492, + "y": 54.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_D5", + "uuid": "d24207dd-d8c5-4682-8745-8f7a7404ce52", + "name": "opentrons_96_well_aluminum_block_D5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 48.492, + "y": 45.352, + "z": 3.38 + }, + "position3d": { + "x": 48.492, + "y": 45.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 48.492, + "y": 45.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_E5", + "uuid": "18c6461a-2132-4d3c-b184-809a340a2a4a", + "name": "opentrons_96_well_aluminum_block_E5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 48.492, + "y": 36.352, + "z": 3.38 + }, + "position3d": { + "x": 48.492, + "y": 36.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 48.492, + "y": 36.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_F5", + "uuid": "159d9e65-0a3b-4639-9ab0-e0ca6ee57ff8", + "name": "opentrons_96_well_aluminum_block_F5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 48.492, + "y": 27.352, + "z": 3.38 + }, + "position3d": { + "x": 48.492, + "y": 27.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 48.492, + "y": 27.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_G5", + "uuid": "5420e299-838d-4d50-9fe4-a33cf30c8b2e", + "name": "opentrons_96_well_aluminum_block_G5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 48.492, + "y": 18.352, + "z": 3.38 + }, + "position3d": { + "x": 48.492, + "y": 18.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 48.492, + "y": 18.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_H5", + "uuid": "5c9b3f22-9274-45df-91ee-bed6d661cae2", + "name": "opentrons_96_well_aluminum_block_H5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 48.492, + "y": 9.352, + "z": 3.38 + }, + "position3d": { + "x": 48.492, + "y": 9.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 48.492, + "y": 9.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_A6", + "uuid": "ca5c04b2-8c0f-493c-9633-73a4c507bb0a", + "name": "opentrons_96_well_aluminum_block_A6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 57.492, + "y": 72.352, + "z": 3.38 + }, + "position3d": { + "x": 57.492, + "y": 72.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 57.492, + "y": 72.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_B6", + "uuid": "8a1b4d6a-a134-4837-8ccb-8033c2290939", + "name": "opentrons_96_well_aluminum_block_B6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 57.492, + "y": 63.352, + "z": 3.38 + }, + "position3d": { + "x": 57.492, + "y": 63.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 57.492, + "y": 63.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_C6", + "uuid": "a20c71b6-8517-4197-9c5e-9c7fcb066313", + "name": "opentrons_96_well_aluminum_block_C6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 57.492, + "y": 54.352, + "z": 3.38 + }, + "position3d": { + "x": 57.492, + "y": 54.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 57.492, + "y": 54.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_D6", + "uuid": "ae1afd9e-3ad3-435d-b3e8-7209d47bbab6", + "name": "opentrons_96_well_aluminum_block_D6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 57.492, + "y": 45.352, + "z": 3.38 + }, + "position3d": { + "x": 57.492, + "y": 45.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 57.492, + "y": 45.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_E6", + "uuid": "5c3e4c37-153c-4130-a0d0-d7f35cf35b1f", + "name": "opentrons_96_well_aluminum_block_E6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 57.492, + "y": 36.352, + "z": 3.38 + }, + "position3d": { + "x": 57.492, + "y": 36.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 57.492, + "y": 36.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_F6", + "uuid": "b39c2565-4d88-45ea-a1b1-c435bf5c30e4", + "name": "opentrons_96_well_aluminum_block_F6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 57.492, + "y": 27.352, + "z": 3.38 + }, + "position3d": { + "x": 57.492, + "y": 27.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 57.492, + "y": 27.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_G6", + "uuid": "66478beb-2ea4-4962-a7b6-ca206faf808a", + "name": "opentrons_96_well_aluminum_block_G6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 57.492, + "y": 18.352, + "z": 3.38 + }, + "position3d": { + "x": 57.492, + "y": 18.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 57.492, + "y": 18.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_H6", + "uuid": "8768f566-ef6a-4e33-8c6e-6b7411e95cd6", + "name": "opentrons_96_well_aluminum_block_H6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 57.492, + "y": 9.352, + "z": 3.38 + }, + "position3d": { + "x": 57.492, + "y": 9.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 57.492, + "y": 9.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_A7", + "uuid": "4f85709d-9544-47f0-9749-dc6ce6b1dafb", + "name": "opentrons_96_well_aluminum_block_A7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 66.492, + "y": 72.352, + "z": 3.38 + }, + "position3d": { + "x": 66.492, + "y": 72.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 66.492, + "y": 72.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_B7", + "uuid": "d05c0669-13ec-475a-b548-42b995591b5f", + "name": "opentrons_96_well_aluminum_block_B7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 66.492, + "y": 63.352, + "z": 3.38 + }, + "position3d": { + "x": 66.492, + "y": 63.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 66.492, + "y": 63.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_C7", + "uuid": "c0974c49-4479-4098-a732-2acd7cc1a71c", + "name": "opentrons_96_well_aluminum_block_C7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 66.492, + "y": 54.352, + "z": 3.38 + }, + "position3d": { + "x": 66.492, + "y": 54.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 66.492, + "y": 54.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_D7", + "uuid": "4c51fc68-c1bb-4f3f-95b2-c146d06fcf84", + "name": "opentrons_96_well_aluminum_block_D7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 66.492, + "y": 45.352, + "z": 3.38 + }, + "position3d": { + "x": 66.492, + "y": 45.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 66.492, + "y": 45.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_E7", + "uuid": "bc9b1c8e-7693-4975-aea3-ae490a87db67", + "name": "opentrons_96_well_aluminum_block_E7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 66.492, + "y": 36.352, + "z": 3.38 + }, + "position3d": { + "x": 66.492, + "y": 36.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 66.492, + "y": 36.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_F7", + "uuid": "7a651e79-eed2-4bb8-817d-d23b934a2f17", + "name": "opentrons_96_well_aluminum_block_F7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 66.492, + "y": 27.352, + "z": 3.38 + }, + "position3d": { + "x": 66.492, + "y": 27.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 66.492, + "y": 27.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_G7", + "uuid": "7344c241-0eea-4b02-b2f4-515d1d03a157", + "name": "opentrons_96_well_aluminum_block_G7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 66.492, + "y": 18.352, + "z": 3.38 + }, + "position3d": { + "x": 66.492, + "y": 18.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 66.492, + "y": 18.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_H7", + "uuid": "507f0ae2-27ae-4b79-87ec-d07df5bde7b1", + "name": "opentrons_96_well_aluminum_block_H7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 66.492, + "y": 9.352, + "z": 3.38 + }, + "position3d": { + "x": 66.492, + "y": 9.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 66.492, + "y": 9.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_A8", + "uuid": "01e1ca76-da75-40f0-8ae7-73e8bcb980b5", + "name": "opentrons_96_well_aluminum_block_A8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 75.492, + "y": 72.352, + "z": 3.38 + }, + "position3d": { + "x": 75.492, + "y": 72.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 75.492, + "y": 72.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_B8", + "uuid": "44c1b048-83b7-4e94-9658-4cffb9365637", + "name": "opentrons_96_well_aluminum_block_B8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 75.492, + "y": 63.352, + "z": 3.38 + }, + "position3d": { + "x": 75.492, + "y": 63.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 75.492, + "y": 63.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_C8", + "uuid": "aa436f6b-912d-45ec-819f-42db0a98d341", + "name": "opentrons_96_well_aluminum_block_C8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 75.492, + "y": 54.352, + "z": 3.38 + }, + "position3d": { + "x": 75.492, + "y": 54.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 75.492, + "y": 54.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_D8", + "uuid": "77a58ad4-f80c-4b2b-9996-2dc534ca097c", + "name": "opentrons_96_well_aluminum_block_D8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 75.492, + "y": 45.352, + "z": 3.38 + }, + "position3d": { + "x": 75.492, + "y": 45.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 75.492, + "y": 45.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_E8", + "uuid": "453d9128-c605-4a22-849a-4d123c2dc0ee", + "name": "opentrons_96_well_aluminum_block_E8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 75.492, + "y": 36.352, + "z": 3.38 + }, + "position3d": { + "x": 75.492, + "y": 36.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 75.492, + "y": 36.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_F8", + "uuid": "eaf4f433-9b45-4206-8eb6-3fae1d57ec64", + "name": "opentrons_96_well_aluminum_block_F8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 75.492, + "y": 27.352, + "z": 3.38 + }, + "position3d": { + "x": 75.492, + "y": 27.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 75.492, + "y": 27.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_G8", + "uuid": "2adc4b5e-6891-4a5a-b177-b42efd02ce6b", + "name": "opentrons_96_well_aluminum_block_G8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 75.492, + "y": 18.352, + "z": 3.38 + }, + "position3d": { + "x": 75.492, + "y": 18.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 75.492, + "y": 18.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_H8", + "uuid": "0b7195a6-87db-49e8-8294-3c00a92202f9", + "name": "opentrons_96_well_aluminum_block_H8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 75.492, + "y": 9.352, + "z": 3.38 + }, + "position3d": { + "x": 75.492, + "y": 9.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 75.492, + "y": 9.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_A9", + "uuid": "9fd44012-6884-4690-9e3a-65685db7d5f1", + "name": "opentrons_96_well_aluminum_block_A9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 84.492, + "y": 72.352, + "z": 3.38 + }, + "position3d": { + "x": 84.492, + "y": 72.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 84.492, + "y": 72.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_B9", + "uuid": "e31e960f-591e-43e2-bbb6-dd942b6b470e", + "name": "opentrons_96_well_aluminum_block_B9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 84.492, + "y": 63.352, + "z": 3.38 + }, + "position3d": { + "x": 84.492, + "y": 63.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 84.492, + "y": 63.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_C9", + "uuid": "a185d665-64bb-4b99-a3d3-c417fa22d256", + "name": "opentrons_96_well_aluminum_block_C9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 84.492, + "y": 54.352, + "z": 3.38 + }, + "position3d": { + "x": 84.492, + "y": 54.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 84.492, + "y": 54.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_D9", + "uuid": "a787966c-1e83-4514-8bea-9eca88d37978", + "name": "opentrons_96_well_aluminum_block_D9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 84.492, + "y": 45.352, + "z": 3.38 + }, + "position3d": { + "x": 84.492, + "y": 45.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 84.492, + "y": 45.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_E9", + "uuid": "4610ca55-904c-4c70-a1b8-06a6f6b2802d", + "name": "opentrons_96_well_aluminum_block_E9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 84.492, + "y": 36.352, + "z": 3.38 + }, + "position3d": { + "x": 84.492, + "y": 36.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 84.492, + "y": 36.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_F9", + "uuid": "2ced462b-d429-474f-8a30-3134618ecd80", + "name": "opentrons_96_well_aluminum_block_F9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 84.492, + "y": 27.352, + "z": 3.38 + }, + "position3d": { + "x": 84.492, + "y": 27.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 84.492, + "y": 27.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_G9", + "uuid": "5eee50de-aa57-47a5-9086-8cd741f8be1e", + "name": "opentrons_96_well_aluminum_block_G9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 84.492, + "y": 18.352, + "z": 3.38 + }, + "position3d": { + "x": 84.492, + "y": 18.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 84.492, + "y": 18.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_H9", + "uuid": "f2870da1-a958-464f-b79c-352468577898", + "name": "opentrons_96_well_aluminum_block_H9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 84.492, + "y": 9.352, + "z": 3.38 + }, + "position3d": { + "x": 84.492, + "y": 9.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 84.492, + "y": 9.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_A10", + "uuid": "4475b911-944e-4774-9632-b7f0368dbdf2", + "name": "opentrons_96_well_aluminum_block_A10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 93.492, + "y": 72.352, + "z": 3.38 + }, + "position3d": { + "x": 93.492, + "y": 72.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 93.492, + "y": 72.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_B10", + "uuid": "efb6a693-b66a-40c2-8a13-1a84cef05fcd", + "name": "opentrons_96_well_aluminum_block_B10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 93.492, + "y": 63.352, + "z": 3.38 + }, + "position3d": { + "x": 93.492, + "y": 63.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 93.492, + "y": 63.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_C10", + "uuid": "ee860521-7973-43d9-87a5-65e8b17ffcc4", + "name": "opentrons_96_well_aluminum_block_C10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 93.492, + "y": 54.352, + "z": 3.38 + }, + "position3d": { + "x": 93.492, + "y": 54.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 93.492, + "y": 54.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_D10", + "uuid": "6e9ab6ae-0502-467f-8e89-71cb608e8fa1", + "name": "opentrons_96_well_aluminum_block_D10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 93.492, + "y": 45.352, + "z": 3.38 + }, + "position3d": { + "x": 93.492, + "y": 45.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 93.492, + "y": 45.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_E10", + "uuid": "aada8049-fdf8-40e9-9a17-84ee1627adcc", + "name": "opentrons_96_well_aluminum_block_E10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 93.492, + "y": 36.352, + "z": 3.38 + }, + "position3d": { + "x": 93.492, + "y": 36.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 93.492, + "y": 36.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_F10", + "uuid": "b67fb010-ae67-4d73-b23d-db1188493cbf", + "name": "opentrons_96_well_aluminum_block_F10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 93.492, + "y": 27.352, + "z": 3.38 + }, + "position3d": { + "x": 93.492, + "y": 27.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 93.492, + "y": 27.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_G10", + "uuid": "8efd23df-63a6-4058-9aa0-366e3fab2973", + "name": "opentrons_96_well_aluminum_block_G10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 93.492, + "y": 18.352, + "z": 3.38 + }, + "position3d": { + "x": 93.492, + "y": 18.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 93.492, + "y": 18.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_H10", + "uuid": "d2bef456-a5d9-4468-b273-9505c17861a4", + "name": "opentrons_96_well_aluminum_block_H10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 93.492, + "y": 9.352, + "z": 3.38 + }, + "position3d": { + "x": 93.492, + "y": 9.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 93.492, + "y": 9.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_A11", + "uuid": "45d4ace5-fa5a-4e22-98b8-801d9ae3252f", + "name": "opentrons_96_well_aluminum_block_A11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 102.492, + "y": 72.352, + "z": 3.38 + }, + "position3d": { + "x": 102.492, + "y": 72.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 102.492, + "y": 72.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_B11", + "uuid": "9ed67e55-b154-47d1-b39e-213fee047f4f", + "name": "opentrons_96_well_aluminum_block_B11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 102.492, + "y": 63.352, + "z": 3.38 + }, + "position3d": { + "x": 102.492, + "y": 63.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 102.492, + "y": 63.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_C11", + "uuid": "f31a9b4e-aeef-4ed6-92b8-e4df9d5c43f8", + "name": "opentrons_96_well_aluminum_block_C11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 102.492, + "y": 54.352, + "z": 3.38 + }, + "position3d": { + "x": 102.492, + "y": 54.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 102.492, + "y": 54.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_D11", + "uuid": "016f393a-a7b5-42e5-bc7c-1389ca3da815", + "name": "opentrons_96_well_aluminum_block_D11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 102.492, + "y": 45.352, + "z": 3.38 + }, + "position3d": { + "x": 102.492, + "y": 45.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 102.492, + "y": 45.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_E11", + "uuid": "8e49f1a2-6862-45a8-87fc-1ebd9abf03f6", + "name": "opentrons_96_well_aluminum_block_E11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 102.492, + "y": 36.352, + "z": 3.38 + }, + "position3d": { + "x": 102.492, + "y": 36.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 102.492, + "y": 36.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_F11", + "uuid": "dcde40e0-b06a-4298-ada8-7f5b36b45c68", + "name": "opentrons_96_well_aluminum_block_F11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 102.492, + "y": 27.352, + "z": 3.38 + }, + "position3d": { + "x": 102.492, + "y": 27.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 102.492, + "y": 27.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_G11", + "uuid": "abba9447-d85f-44e7-ae30-8a0c41b4e8d8", + "name": "opentrons_96_well_aluminum_block_G11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 102.492, + "y": 18.352, + "z": 3.38 + }, + "position3d": { + "x": 102.492, + "y": 18.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 102.492, + "y": 18.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_H11", + "uuid": "8781736d-5613-46e7-a276-66c5f2eb7db5", + "name": "opentrons_96_well_aluminum_block_H11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 102.492, + "y": 9.352, + "z": 3.38 + }, + "position3d": { + "x": 102.492, + "y": 9.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 102.492, + "y": 9.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_A12", + "uuid": "85754a25-49a3-46cf-a278-09a26319612d", + "name": "opentrons_96_well_aluminum_block_A12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 111.492, + "y": 72.352, + "z": 3.38 + }, + "position3d": { + "x": 111.492, + "y": 72.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 111.492, + "y": 72.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_B12", + "uuid": "26f999ee-1872-479d-9280-f8fc055bcfa6", + "name": "opentrons_96_well_aluminum_block_B12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 111.492, + "y": 63.352, + "z": 3.38 + }, + "position3d": { + "x": 111.492, + "y": 63.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 111.492, + "y": 63.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_C12", + "uuid": "8b6584ca-87ff-4189-9720-10917124b826", + "name": "opentrons_96_well_aluminum_block_C12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 111.492, + "y": 54.352, + "z": 3.38 + }, + "position3d": { + "x": 111.492, + "y": 54.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 111.492, + "y": 54.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_D12", + "uuid": "ca18a972-a4d9-4689-960b-dac67882cc8b", + "name": "opentrons_96_well_aluminum_block_D12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 111.492, + "y": 45.352, + "z": 3.38 + }, + "position3d": { + "x": 111.492, + "y": 45.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 111.492, + "y": 45.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_E12", + "uuid": "a523e1eb-aa27-427d-813b-c873f59c86c1", + "name": "opentrons_96_well_aluminum_block_E12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 111.492, + "y": 36.352, + "z": 3.38 + }, + "position3d": { + "x": 111.492, + "y": 36.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 111.492, + "y": 36.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_F12", + "uuid": "026e9453-6035-4259-a1ab-d69134a2399b", + "name": "opentrons_96_well_aluminum_block_F12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 111.492, + "y": 27.352, + "z": 3.38 + }, + "position3d": { + "x": 111.492, + "y": 27.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 111.492, + "y": 27.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_G12", + "uuid": "35736256-9c1c-4fb2-ac65-6835f990627a", + "name": "opentrons_96_well_aluminum_block_G12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 111.492, + "y": 18.352, + "z": 3.38 + }, + "position3d": { + "x": 111.492, + "y": 18.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 111.492, + "y": 18.352, + "z": 3.38 + } + }, + { + "id": "opentrons_96_well_aluminum_block_H12", + "uuid": "3698634e-7f30-442b-8abb-0b01020c6bec", + "name": "opentrons_96_well_aluminum_block_H12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1b50d452-54e5-451b-ac5c-712b6d700180", + "type": "resource_holder", + "class": "", + "pose": { + "size": { + "depth": 14.78, + "width": 3.776, + "height": 3.776 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 111.492, + "y": 9.352, + "z": 3.38 + }, + "position3d": { + "x": 111.492, + "y": 9.352, + "z": 3.38 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ResourceHolder", + "size_x": 3.776, + "size_y": 3.776, + "size_z": 14.78, + "category": "resource_holder", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "child_location": { + "x": 0, + "y": 0, + "z": 0, + "type": "Coordinate" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 111.492, + "y": 9.352, + "z": 3.38 + } + } + ] + }, + { + "id": "POST_PROCESS_Raw_1BottleCarrier", + "category": [ + "bottle_carriers" + ], + "class": { + "module": "unilabos.devices.workstation.post_process.bottle_carriers:POST_PROCESS_Raw_1BottleCarrier", + "type": "pylabrobot" + }, + "description": "POST_PROCESS_Raw_1BottleCarrier", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/post_process/bottle_carriers.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "POST_PROCESS_Raw_1BottleCarrier", + "uuid": "9eec9c53-bcdb-4e2e-a41c-310954b9310f", + "name": "POST_PROCESS_Raw_1BottleCarrier", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "bottle_carrier", + "class": "", + "pose": { + "size": { + "depth": 20.0, + "width": 127.8, + "height": 85.5 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "BottleCarrier", + "size_x": 127.8, + "size_y": 85.5, + "size_z": 20.0, + "category": "bottle_carrier", + "model": "POST_PROCESS_Raw_1BottleCarrier", + "barcode": null, + "preferred_pickup_location": null, + "num_items_x": 1, + "num_items_y": 1, + "num_items_z": 1, + "layout": "x-y", + "sites": [ + { + "label": "0", + "visible": true, + "occupied_by": "POST_PROCESS_Raw_1BottleCarrier_flask_1", + "position": { + "x": 33.9, + "y": 12.75, + "z": 5.0 + }, + "size": { + "width": 60.0, + "height": 60.0, + "depth": 0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + } + ] + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "POST_PROCESS_Raw_1BottleCarrier_flask_1", + "uuid": "d0a5d508-f9d0-4caf-9d58-3f5ecd51345e", + "name": "POST_PROCESS_Raw_1BottleCarrier_flask_1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "9eec9c53-bcdb-4e2e-a41c-310954b9310f", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 120.0, + "width": 70.0, + "height": 70.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 33.9, + "y": 12.75, + "z": 5.0 + }, + "position3d": { + "x": 33.9, + "y": 12.75, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 70.0, + "size_y": 70.0, + "size_z": 120.0, + "category": "container", + "model": "POST_PROCESS_PolymerStation_Reagent_Bottle", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 500000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 70.0, + "height": 120.0 + }, + "data": { + "thing": "POST_PROCESS_Raw_1BottleCarrier_flask_1_volume_tracker", + "max_volume": 500000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 33.9, + "y": 12.75, + "z": 5.0 + } + } + ] + }, + { + "id": "POST_PROCESS_Reaction_1BottleCarrier", + "category": [ + "bottle_carriers" + ], + "class": { + "module": "unilabos.devices.workstation.post_process.bottle_carriers:POST_PROCESS_Reaction_1BottleCarrier", + "type": "pylabrobot" + }, + "description": "POST_PROCESS_Reaction_1BottleCarrier", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/post_process/bottle_carriers.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "POST_PROCESS_Reaction_1BottleCarrier", + "uuid": "ec97a681-e5e1-43fd-8dfe-f5e2caa69bbd", + "name": "POST_PROCESS_Reaction_1BottleCarrier", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "bottle_carrier", + "class": "", + "pose": { + "size": { + "depth": 20.0, + "width": 127.8, + "height": 85.5 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "BottleCarrier", + "size_x": 127.8, + "size_y": 85.5, + "size_z": 20.0, + "category": "bottle_carrier", + "model": "POST_PROCESS_Reaction_1BottleCarrier", + "barcode": null, + "preferred_pickup_location": null, + "num_items_x": 1, + "num_items_y": 1, + "num_items_z": 1, + "layout": "x-y", + "sites": [ + { + "label": "0", + "visible": true, + "occupied_by": "POST_PROCESS_Reaction_1BottleCarrier_flask_1", + "position": { + "x": 33.9, + "y": 12.75, + "z": 5.0 + }, + "size": { + "width": 60.0, + "height": 60.0, + "depth": 0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + } + ] + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "POST_PROCESS_Reaction_1BottleCarrier_flask_1", + "uuid": "5e7a6a98-1274-46c7-ad1d-2d2ea2269f2b", + "name": "POST_PROCESS_Reaction_1BottleCarrier_flask_1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ec97a681-e5e1-43fd-8dfe-f5e2caa69bbd", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 120.0, + "width": 70.0, + "height": 70.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 33.9, + "y": 12.75, + "z": 5.0 + }, + "position3d": { + "x": 33.9, + "y": 12.75, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 70.0, + "size_y": 70.0, + "size_z": 120.0, + "category": "container", + "model": "POST_PROCESS_PolymerStation_Reagent_Bottle", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 500000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 70.0, + "height": 120.0 + }, + "data": { + "thing": "POST_PROCESS_Reaction_1BottleCarrier_flask_1_volume_tracker", + "max_volume": 500000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 33.9, + "y": 12.75, + "z": 5.0 + } + } + ] + }, + { + "id": "POST_PROCESS_PolymerStation_Reagent_Bottle", + "category": [ + "bottles" + ], + "class": { + "module": "unilabos.devices.workstation.post_process.bottles:POST_PROCESS_PolymerStation_Reagent_Bottle", + "type": "pylabrobot" + }, + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/post_process/bottles.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "POST_PROCESS_PolymerStation_Reagent_Bottle", + "uuid": "0b7a98cc-40ff-432a-8236-05a21de612a1", + "name": "POST_PROCESS_PolymerStation_Reagent_Bottle", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 120.0, + "width": 70.0, + "height": 70.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 70.0, + "size_y": 70.0, + "size_z": 120.0, + "category": "container", + "model": "POST_PROCESS_PolymerStation_Reagent_Bottle", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 500000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 70.0, + "height": 120.0 + }, + "data": { + "thing": "POST_PROCESS_PolymerStation_Reagent_Bottle_volume_tracker", + "max_volume": 500000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + ] + }, + { + "id": "post_process_deck", + "category": [ + "post_process_deck", + "deck" + ], + "class": { + "module": "unilabos.devices.workstation.post_process.decks:post_process_deck", + "type": "pylabrobot" + }, + "description": "post_process_deck", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/post_process/deck.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [] + }, + { + "id": "PRCXI_30mm_Adapter", + "category": [ + "prcxi", + "plate_adapters" + ], + "class": { + "module": "unilabos.devices.liquid_handling.prcxi.prcxi_labware:PRCXI_30mm_Adapter", + "type": "pylabrobot" + }, + "description": "30mm适配器 (Code: ZX-58-30)", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/prcxi/plate_adapters.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "PRCXI_30mm_Adapter", + "uuid": "e0c22aea-c6eb-485a-a0d5-9fdbc9b210e2", + "name": "PRCXI_30mm_Adapter", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "plate_adapter", + "class": "", + "pose": { + "size": { + "depth": 30.0, + "width": 132.0, + "height": 93.5 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "PRCXI9300PlateAdapter", + "size_x": 132, + "size_y": 93.5, + "size_z": 30, + "category": "plate_adapter", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "dx": 2.1199999999999974, + "dy": 4.009999999999998, + "dz": 0.0, + "adapter_hole_size_x": 127.76, + "adapter_hole_size_y": 85.48, + "adapter_hole_dx": 9.0, + "adapter_hole_dy": 9.0, + "plate_z_offset": 0.0 + }, + "data": { + "Material": { + "uuid": "a0757a90d8e44e81a68f306a608694f2", + "Code": "ZX-58-30", + "Name": "30mm适配器", + "SupplyType": 2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + ] + }, + { + "id": "PRCXI_Adapter", + "category": [ + "prcxi", + "plate_adapters" + ], + "class": { + "module": "unilabos.devices.liquid_handling.prcxi.prcxi_labware:PRCXI_Adapter", + "type": "pylabrobot" + }, + "description": "适配器 (Code: Fhh478)", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/prcxi/plate_adapters.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "PRCXI_Adapter", + "uuid": "7127060f-f3cd-4f04-a34e-be469cc0c863", + "name": "PRCXI_Adapter", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "plate_adapter", + "class": "", + "pose": { + "size": { + "depth": 86.0, + "width": 120.0, + "height": 90.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "PRCXI9300PlateAdapter", + "size_x": 120, + "size_y": 90, + "size_z": 86, + "category": "plate_adapter", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "dx": -3.8800000000000026, + "dy": 2.259999999999998, + "dz": 0.0, + "adapter_hole_size_x": 127.76, + "adapter_hole_size_y": 85.48, + "adapter_hole_dx": 9.0, + "adapter_hole_dy": 9.0, + "plate_z_offset": 0.0 + }, + "data": { + "Material": { + "uuid": "adfabfffa8f24af5abfbba67b8d0f973", + "Code": "Fhh478", + "Name": "适配器", + "SupplyType": 2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + ] + }, + { + "id": "PRCXI_Deep10_Adapter", + "category": [ + "prcxi", + "plate_adapters" + ], + "class": { + "module": "unilabos.devices.liquid_handling.prcxi.prcxi_labware:PRCXI_Deep10_Adapter", + "type": "pylabrobot" + }, + "description": "10ul专用深孔板适配器 (Code: ZX-002-10)", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/prcxi/plate_adapters.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "PRCXI_Deep10_Adapter", + "uuid": "dbaafe31-a3e3-499d-a90e-ffd5f3f243c7", + "name": "PRCXI_Deep10_Adapter", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "plate_adapter", + "class": "", + "pose": { + "size": { + "depth": 121.5, + "width": 136.5, + "height": 93.8 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "PRCXI9300PlateAdapter", + "size_x": 136.5, + "size_y": 93.8, + "size_z": 121.5, + "category": "plate_adapter", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "dx": 4.369999999999997, + "dy": 4.159999999999997, + "dz": 0.0, + "adapter_hole_size_x": 127.76, + "adapter_hole_size_y": 85.48, + "adapter_hole_dx": 9.0, + "adapter_hole_dy": 9.0, + "plate_z_offset": 0.0 + }, + "data": { + "Material": { + "uuid": "4dc8d6ecfd0449549683b8ef815a861b", + "Code": "ZX-002-10", + "Name": "10ul专用深孔板适配器", + "SupplyType": 2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + ] + }, + { + "id": "PRCXI_Deep300_Adapter", + "category": [ + "prcxi", + "plate_adapters" + ], + "class": { + "module": "unilabos.devices.liquid_handling.prcxi.prcxi_labware:PRCXI_Deep300_Adapter", + "type": "pylabrobot" + }, + "description": "300ul深孔板适配器 (Code: ZX-002-300)", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/prcxi/plate_adapters.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "PRCXI_Deep300_Adapter", + "uuid": "0b0573dd-6553-493c-8b72-328e6a820a88", + "name": "PRCXI_Deep300_Adapter", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "plate_adapter", + "class": "", + "pose": { + "size": { + "depth": 96.0, + "width": 136.4, + "height": 93.8 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "PRCXI9300PlateAdapter", + "size_x": 136.4, + "size_y": 93.8, + "size_z": 96, + "category": "plate_adapter", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "dx": 4.32, + "dy": 4.159999999999997, + "dz": 0.0, + "adapter_hole_size_x": 127.76, + "adapter_hole_size_y": 85.48, + "adapter_hole_dx": 9.0, + "adapter_hole_dy": 9.0, + "plate_z_offset": 0.0 + }, + "data": { + "Material": { + "uuid": "9a439bed8f3344549643d6b3bc5a5eb4", + "Code": "ZX-002-300", + "Name": "300ul深孔板适配器", + "SupplyType": 2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + ] + }, + { + "id": "PRCXI_PCR_Adapter", + "category": [ + "prcxi", + "plate_adapters" + ], + "class": { + "module": "unilabos.devices.liquid_handling.prcxi.prcxi_labware:PRCXI_PCR_Adapter", + "type": "pylabrobot" + }, + "description": "全裙边 PCR适配器 (Code: ZX-58-0001)", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/prcxi/plate_adapters.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "PRCXI_PCR_Adapter", + "uuid": "9ecc47fc-8498-496a-85ce-7234c990d310", + "name": "PRCXI_PCR_Adapter", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "plate_adapter", + "class": "", + "pose": { + "size": { + "depth": 21.69, + "width": 127.76, + "height": 85.48 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "PRCXI9300PlateAdapter", + "size_x": 127.76, + "size_y": 85.48, + "size_z": 21.69, + "category": "plate_adapter", + "model": "PRCXI_PCR_Adapter", + "barcode": null, + "preferred_pickup_location": null, + "dx": 0.0, + "dy": 0.0, + "dz": 0.0, + "adapter_hole_size_x": 127.76, + "adapter_hole_size_y": 85.48, + "adapter_hole_dx": 9.0, + "adapter_hole_dy": 9.0, + "plate_z_offset": 0.0 + }, + "data": { + "Material": { + "uuid": "4a043a07c65a4f9bb97745e1f129b165", + "Code": "ZX-58-0001", + "Name": "全裙边 PCR适配器", + "materialEnum": 3, + "SupplyType": 2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + ] + }, + { + "id": "PRCXI_Reservoir_Adapter", + "category": [ + "prcxi", + "plate_adapters" + ], + "class": { + "module": "unilabos.devices.liquid_handling.prcxi.prcxi_labware:PRCXI_Reservoir_Adapter", + "type": "pylabrobot" + }, + "description": "储液槽 适配器 (Code: ZX-ADP-001)", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/prcxi/plate_adapters.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "PRCXI_Reservoir_Adapter", + "uuid": "03b06ea4-81ed-42bd-9dd8-4c6ed96e062c", + "name": "PRCXI_Reservoir_Adapter", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "plate_adapter", + "class": "", + "pose": { + "size": { + "depth": 70.0, + "width": 133.0, + "height": 91.8 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "PRCXI9300PlateAdapter", + "size_x": 133, + "size_y": 91.8, + "size_z": 70, + "category": "plate_adapter", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "dx": 2.6199999999999974, + "dy": 3.1599999999999966, + "dz": 0.0, + "adapter_hole_size_x": 127.76, + "adapter_hole_size_y": 85.48, + "adapter_hole_dx": 9.0, + "adapter_hole_dy": 9.0, + "plate_z_offset": 0.0 + }, + "data": { + "Material": { + "uuid": "6bdfdd7069df453896b0806df50f2f4d", + "Code": "ZX-ADP-001", + "Name": "储液槽 适配器", + "SupplyType": 2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + ] + }, + { + "id": "PRCXI_Tip10_Adapter", + "category": [ + "prcxi", + "plate_adapters" + ], + "class": { + "module": "unilabos.devices.liquid_handling.prcxi.prcxi_labware:PRCXI_Tip10_Adapter", + "type": "pylabrobot" + }, + "description": "吸头10ul 适配器 (Code: ZX-58-10)", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/prcxi/plate_adapters.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "PRCXI_Tip10_Adapter", + "uuid": "c6699ece-bce9-408b-8b15-29ac464902da", + "name": "PRCXI_Tip10_Adapter", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "plate_adapter", + "class": "", + "pose": { + "size": { + "depth": 72.3, + "width": 128.0, + "height": 85.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "PRCXI9300PlateAdapter", + "size_x": 128, + "size_y": 85, + "size_z": 72.3, + "category": "plate_adapter", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "dx": 0.11999999999999744, + "dy": -0.240000000000002, + "dz": 0.0, + "adapter_hole_size_x": 127.76, + "adapter_hole_size_y": 85.48, + "adapter_hole_dx": 9.0, + "adapter_hole_dy": 9.0, + "plate_z_offset": 0.0 + }, + "data": { + "Material": { + "uuid": "8cc3dce884ac41c09f4570d0bcbfb01c", + "Code": "ZX-58-10", + "Name": "吸头10ul 适配器", + "SupplyType": 2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + ] + }, + { + "id": "PRCXI_Tip1250_Adapter", + "category": [ + "prcxi", + "plate_adapters" + ], + "class": { + "module": "unilabos.devices.liquid_handling.prcxi.prcxi_labware:PRCXI_Tip1250_Adapter", + "type": "pylabrobot" + }, + "description": "Tip头适配器 1250uL (Code: ZX-58-1250)", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/prcxi/plate_adapters.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "PRCXI_Tip1250_Adapter", + "uuid": "6bea2cc9-8dce-402b-ae6b-0c7d7286d960", + "name": "PRCXI_Tip1250_Adapter", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "plate_adapter", + "class": "", + "pose": { + "size": { + "depth": 20.0, + "width": 128.0, + "height": 85.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "PRCXI9300PlateAdapter", + "size_x": 128, + "size_y": 85, + "size_z": 20, + "category": "plate_adapter", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "dx": 0.11999999999999744, + "dy": -0.240000000000002, + "dz": 0.0, + "adapter_hole_size_x": 127.76, + "adapter_hole_size_y": 85.48, + "adapter_hole_dx": 9.0, + "adapter_hole_dy": 9.0, + "plate_z_offset": 0.0 + }, + "data": { + "Material": { + "uuid": "3b6f33ffbf734014bcc20e3c63e124d4", + "Code": "ZX-58-1250", + "Name": "Tip头适配器 1250uL", + "SupplyType": 2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + ] + }, + { + "id": "PRCXI_Tip300_Adapter", + "category": [ + "prcxi", + "plate_adapters" + ], + "class": { + "module": "unilabos.devices.liquid_handling.prcxi.prcxi_labware:PRCXI_Tip300_Adapter", + "type": "pylabrobot" + }, + "description": "ZHONGXI 适配器 300uL (Code: ZX-58-300)", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/prcxi/plate_adapters.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "PRCXI_Tip300_Adapter", + "uuid": "e08c7da9-6e75-436e-9d35-771da9801a7b", + "name": "PRCXI_Tip300_Adapter", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "plate_adapter", + "class": "", + "pose": { + "size": { + "depth": 81.0, + "width": 127.0, + "height": 85.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "PRCXI9300PlateAdapter", + "size_x": 127, + "size_y": 85, + "size_z": 81, + "category": "plate_adapter", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "dx": -0.38000000000000256, + "dy": -0.240000000000002, + "dz": 0.0, + "adapter_hole_size_x": 127.76, + "adapter_hole_size_y": 85.48, + "adapter_hole_dx": 9.0, + "adapter_hole_dy": 9.0, + "plate_z_offset": 0.0 + }, + "data": { + "Material": { + "uuid": "7c822592b360451fb59690e49ac6b181", + "Code": "ZX-58-300", + "Name": "ZHONGXI 适配器 300uL", + "SupplyType": 2 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + ] + }, + { + "id": "PRCXI_trash", + "category": [ + "prcxi", + "trash" + ], + "class": { + "module": "unilabos.devices.liquid_handling.prcxi.prcxi_labware:PRCXI_trash", + "type": "pylabrobot" + }, + "description": "废弃槽 (Code: q1)", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/prcxi/trash.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "trash", + "uuid": "911a17bd-ea8e-4ba5-a071-7cd33597bcaa", + "name": "trash", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "trash", + "class": "", + "pose": { + "size": { + "depth": 89.5, + "width": 126.59, + "height": 84.87 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "PRCXI9300Trash", + "size_x": 126.59, + "size_y": 84.87, + "size_z": 89.5, + "category": "trash", + "model": "PRCXI_trash", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": "Infinity", + "material_z_thickness": 0, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "trash_volume_tracker", + "max_volume": "Infinity", + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0, + "Material": { + "uuid": "730067cf07ae43849ddf4034299030e9", + "Code": "q1", + "Name": "废弃槽", + "materialEnum": 0, + "SupplyType": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + ] + }, + { + "id": "PRCXI_1000uL_Tips", + "category": [ + "prcxi", + "tip_racks" + ], + "class": { + "module": "unilabos.devices.liquid_handling.prcxi.prcxi_labware:PRCXI_1000uL_Tips", + "type": "pylabrobot" + }, + "description": "1000μL Tip头 (Code: ZX-001-1000)", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/prcxi/tip_racks.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "PRCXI_1000uL_Tips", + "uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "name": "PRCXI_1000uL_Tips", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "tip_rack", + "class": "", + "pose": { + "size": { + "depth": 98.0, + "width": 128.09, + "height": 85.8 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "PRCXI9300TipRack", + "size_x": 128.09, + "size_y": 85.8, + "size_z": 98, + "category": "tip_rack", + "model": "PRCXI_1000uL_Tips", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "PRCXI_1000uL_Tips_tipspot_A1", + "B1": "PRCXI_1000uL_Tips_tipspot_B1", + "C1": "PRCXI_1000uL_Tips_tipspot_C1", + "D1": "PRCXI_1000uL_Tips_tipspot_D1", + "E1": "PRCXI_1000uL_Tips_tipspot_E1", + "F1": "PRCXI_1000uL_Tips_tipspot_F1", + "G1": "PRCXI_1000uL_Tips_tipspot_G1", + "H1": "PRCXI_1000uL_Tips_tipspot_H1", + "A2": "PRCXI_1000uL_Tips_tipspot_A2", + "B2": "PRCXI_1000uL_Tips_tipspot_B2", + "C2": "PRCXI_1000uL_Tips_tipspot_C2", + "D2": "PRCXI_1000uL_Tips_tipspot_D2", + "E2": "PRCXI_1000uL_Tips_tipspot_E2", + "F2": "PRCXI_1000uL_Tips_tipspot_F2", + "G2": "PRCXI_1000uL_Tips_tipspot_G2", + "H2": "PRCXI_1000uL_Tips_tipspot_H2", + "A3": "PRCXI_1000uL_Tips_tipspot_A3", + "B3": "PRCXI_1000uL_Tips_tipspot_B3", + "C3": "PRCXI_1000uL_Tips_tipspot_C3", + "D3": "PRCXI_1000uL_Tips_tipspot_D3", + "E3": "PRCXI_1000uL_Tips_tipspot_E3", + "F3": "PRCXI_1000uL_Tips_tipspot_F3", + "G3": "PRCXI_1000uL_Tips_tipspot_G3", + "H3": "PRCXI_1000uL_Tips_tipspot_H3", + "A4": "PRCXI_1000uL_Tips_tipspot_A4", + "B4": "PRCXI_1000uL_Tips_tipspot_B4", + "C4": "PRCXI_1000uL_Tips_tipspot_C4", + "D4": "PRCXI_1000uL_Tips_tipspot_D4", + "E4": "PRCXI_1000uL_Tips_tipspot_E4", + "F4": "PRCXI_1000uL_Tips_tipspot_F4", + "G4": "PRCXI_1000uL_Tips_tipspot_G4", + "H4": "PRCXI_1000uL_Tips_tipspot_H4", + "A5": "PRCXI_1000uL_Tips_tipspot_A5", + "B5": "PRCXI_1000uL_Tips_tipspot_B5", + "C5": "PRCXI_1000uL_Tips_tipspot_C5", + "D5": "PRCXI_1000uL_Tips_tipspot_D5", + "E5": "PRCXI_1000uL_Tips_tipspot_E5", + "F5": "PRCXI_1000uL_Tips_tipspot_F5", + "G5": "PRCXI_1000uL_Tips_tipspot_G5", + "H5": "PRCXI_1000uL_Tips_tipspot_H5", + "A6": "PRCXI_1000uL_Tips_tipspot_A6", + "B6": "PRCXI_1000uL_Tips_tipspot_B6", + "C6": "PRCXI_1000uL_Tips_tipspot_C6", + "D6": "PRCXI_1000uL_Tips_tipspot_D6", + "E6": "PRCXI_1000uL_Tips_tipspot_E6", + "F6": "PRCXI_1000uL_Tips_tipspot_F6", + "G6": "PRCXI_1000uL_Tips_tipspot_G6", + "H6": "PRCXI_1000uL_Tips_tipspot_H6", + "A7": "PRCXI_1000uL_Tips_tipspot_A7", + "B7": "PRCXI_1000uL_Tips_tipspot_B7", + "C7": "PRCXI_1000uL_Tips_tipspot_C7", + "D7": "PRCXI_1000uL_Tips_tipspot_D7", + "E7": "PRCXI_1000uL_Tips_tipspot_E7", + "F7": "PRCXI_1000uL_Tips_tipspot_F7", + "G7": "PRCXI_1000uL_Tips_tipspot_G7", + "H7": "PRCXI_1000uL_Tips_tipspot_H7", + "A8": "PRCXI_1000uL_Tips_tipspot_A8", + "B8": "PRCXI_1000uL_Tips_tipspot_B8", + "C8": "PRCXI_1000uL_Tips_tipspot_C8", + "D8": "PRCXI_1000uL_Tips_tipspot_D8", + "E8": "PRCXI_1000uL_Tips_tipspot_E8", + "F8": "PRCXI_1000uL_Tips_tipspot_F8", + "G8": "PRCXI_1000uL_Tips_tipspot_G8", + "H8": "PRCXI_1000uL_Tips_tipspot_H8", + "A9": "PRCXI_1000uL_Tips_tipspot_A9", + "B9": "PRCXI_1000uL_Tips_tipspot_B9", + "C9": "PRCXI_1000uL_Tips_tipspot_C9", + "D9": "PRCXI_1000uL_Tips_tipspot_D9", + "E9": "PRCXI_1000uL_Tips_tipspot_E9", + "F9": "PRCXI_1000uL_Tips_tipspot_F9", + "G9": "PRCXI_1000uL_Tips_tipspot_G9", + "H9": "PRCXI_1000uL_Tips_tipspot_H9", + "A10": "PRCXI_1000uL_Tips_tipspot_A10", + "B10": "PRCXI_1000uL_Tips_tipspot_B10", + "C10": "PRCXI_1000uL_Tips_tipspot_C10", + "D10": "PRCXI_1000uL_Tips_tipspot_D10", + "E10": "PRCXI_1000uL_Tips_tipspot_E10", + "F10": "PRCXI_1000uL_Tips_tipspot_F10", + "G10": "PRCXI_1000uL_Tips_tipspot_G10", + "H10": "PRCXI_1000uL_Tips_tipspot_H10", + "A11": "PRCXI_1000uL_Tips_tipspot_A11", + "B11": "PRCXI_1000uL_Tips_tipspot_B11", + "C11": "PRCXI_1000uL_Tips_tipspot_C11", + "D11": "PRCXI_1000uL_Tips_tipspot_D11", + "E11": "PRCXI_1000uL_Tips_tipspot_E11", + "F11": "PRCXI_1000uL_Tips_tipspot_F11", + "G11": "PRCXI_1000uL_Tips_tipspot_G11", + "H11": "PRCXI_1000uL_Tips_tipspot_H11", + "A12": "PRCXI_1000uL_Tips_tipspot_A12", + "B12": "PRCXI_1000uL_Tips_tipspot_B12", + "C12": "PRCXI_1000uL_Tips_tipspot_C12", + "D12": "PRCXI_1000uL_Tips_tipspot_D12", + "E12": "PRCXI_1000uL_Tips_tipspot_E12", + "F12": "PRCXI_1000uL_Tips_tipspot_F12", + "G12": "PRCXI_1000uL_Tips_tipspot_G12", + "H12": "PRCXI_1000uL_Tips_tipspot_H12" + } + }, + "data": { + "Material": { + "uuid": "80652665f6a54402b2408d50b40398df", + "Code": "ZX-001-1000", + "Name": "1000μL Tip头", + "SupplyType": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_A1", + "uuid": "fc6d7472-d664-4e1a-9921-ae82c9bf5337", + "name": "PRCXI_1000uL_Tips_tipspot_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.525, + "y": 70.425, + "z": 2.0 + }, + "position3d": { + "x": 10.525, + "y": 70.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_A1#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_A1#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_A1#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_A1#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.525, + "y": 70.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_B1", + "uuid": "10a68dae-4a70-4266-9445-18c4927f170d", + "name": "PRCXI_1000uL_Tips_tipspot_B1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.525, + "y": 61.425, + "z": 2.0 + }, + "position3d": { + "x": 10.525, + "y": 61.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_B1#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_B1#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_B1#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_B1#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.525, + "y": 61.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_C1", + "uuid": "65abc08a-0344-4cdc-bebb-58c63a360e2c", + "name": "PRCXI_1000uL_Tips_tipspot_C1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.525, + "y": 52.425, + "z": 2.0 + }, + "position3d": { + "x": 10.525, + "y": 52.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_C1#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_C1#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_C1#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_C1#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.525, + "y": 52.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_D1", + "uuid": "93c7d657-5a0b-403c-9c50-38fdd698d377", + "name": "PRCXI_1000uL_Tips_tipspot_D1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.525, + "y": 43.425, + "z": 2.0 + }, + "position3d": { + "x": 10.525, + "y": 43.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_D1#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_D1#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_D1#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_D1#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.525, + "y": 43.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_E1", + "uuid": "a6f38476-4902-4a3b-b536-69abb93380d6", + "name": "PRCXI_1000uL_Tips_tipspot_E1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.525, + "y": 34.425, + "z": 2.0 + }, + "position3d": { + "x": 10.525, + "y": 34.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_E1#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_E1#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_E1#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_E1#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.525, + "y": 34.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_F1", + "uuid": "0a966ea7-fa51-4538-b1ef-63c0fdcebde2", + "name": "PRCXI_1000uL_Tips_tipspot_F1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.525, + "y": 25.425, + "z": 2.0 + }, + "position3d": { + "x": 10.525, + "y": 25.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_F1#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_F1#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_F1#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_F1#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.525, + "y": 25.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_G1", + "uuid": "c4cb3ce8-b0b7-4c9e-8a23-7d580bc8cd8f", + "name": "PRCXI_1000uL_Tips_tipspot_G1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.525, + "y": 16.425, + "z": 2.0 + }, + "position3d": { + "x": 10.525, + "y": 16.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_G1#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_G1#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_G1#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_G1#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.525, + "y": 16.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_H1", + "uuid": "715b9450-2326-4e24-b46e-ed5403e8de8b", + "name": "PRCXI_1000uL_Tips_tipspot_H1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.525, + "y": 7.425, + "z": 2.0 + }, + "position3d": { + "x": 10.525, + "y": 7.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_H1#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_H1#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_H1#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_H1#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.525, + "y": 7.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_A2", + "uuid": "970739d5-f868-4d1f-9cfd-d38617f3ffeb", + "name": "PRCXI_1000uL_Tips_tipspot_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 19.525, + "y": 70.425, + "z": 2.0 + }, + "position3d": { + "x": 19.525, + "y": 70.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_A2#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_A2#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_A2#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_A2#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 19.525, + "y": 70.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_B2", + "uuid": "8a89830a-e3de-4b29-b82c-25196c23a00a", + "name": "PRCXI_1000uL_Tips_tipspot_B2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 19.525, + "y": 61.425, + "z": 2.0 + }, + "position3d": { + "x": 19.525, + "y": 61.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_B2#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_B2#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_B2#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_B2#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 19.525, + "y": 61.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_C2", + "uuid": "9f60f316-d5be-4608-aba9-cf9ce1c179a0", + "name": "PRCXI_1000uL_Tips_tipspot_C2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 19.525, + "y": 52.425, + "z": 2.0 + }, + "position3d": { + "x": 19.525, + "y": 52.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_C2#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_C2#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_C2#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_C2#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 19.525, + "y": 52.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_D2", + "uuid": "0c16e04b-c23a-48e7-acda-e2a86d759656", + "name": "PRCXI_1000uL_Tips_tipspot_D2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 19.525, + "y": 43.425, + "z": 2.0 + }, + "position3d": { + "x": 19.525, + "y": 43.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_D2#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_D2#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_D2#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_D2#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 19.525, + "y": 43.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_E2", + "uuid": "53d2d31b-6871-47bb-9301-707e192d9dae", + "name": "PRCXI_1000uL_Tips_tipspot_E2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 19.525, + "y": 34.425, + "z": 2.0 + }, + "position3d": { + "x": 19.525, + "y": 34.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_E2#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_E2#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_E2#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_E2#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 19.525, + "y": 34.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_F2", + "uuid": "47d407ad-24dd-4265-bb43-143fec60dfc2", + "name": "PRCXI_1000uL_Tips_tipspot_F2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 19.525, + "y": 25.425, + "z": 2.0 + }, + "position3d": { + "x": 19.525, + "y": 25.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_F2#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_F2#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_F2#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_F2#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 19.525, + "y": 25.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_G2", + "uuid": "06d745ab-9218-4960-bab4-7dfc456f993a", + "name": "PRCXI_1000uL_Tips_tipspot_G2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 19.525, + "y": 16.425, + "z": 2.0 + }, + "position3d": { + "x": 19.525, + "y": 16.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_G2#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_G2#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_G2#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_G2#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 19.525, + "y": 16.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_H2", + "uuid": "4ac04cac-7052-4e0a-809f-2c166c538a84", + "name": "PRCXI_1000uL_Tips_tipspot_H2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 19.525, + "y": 7.425, + "z": 2.0 + }, + "position3d": { + "x": 19.525, + "y": 7.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_H2#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_H2#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_H2#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_H2#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 19.525, + "y": 7.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_A3", + "uuid": "88b4e1b5-a3bd-4c2c-9c9c-a83f07f11a44", + "name": "PRCXI_1000uL_Tips_tipspot_A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.525, + "y": 70.425, + "z": 2.0 + }, + "position3d": { + "x": 28.525, + "y": 70.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_A3#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_A3#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_A3#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_A3#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.525, + "y": 70.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_B3", + "uuid": "f3f6e29f-ac61-477d-9036-2a8b6a9f51ec", + "name": "PRCXI_1000uL_Tips_tipspot_B3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.525, + "y": 61.425, + "z": 2.0 + }, + "position3d": { + "x": 28.525, + "y": 61.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_B3#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_B3#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_B3#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_B3#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.525, + "y": 61.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_C3", + "uuid": "60b83cca-e034-4c8a-83d0-1bb47f900b65", + "name": "PRCXI_1000uL_Tips_tipspot_C3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.525, + "y": 52.425, + "z": 2.0 + }, + "position3d": { + "x": 28.525, + "y": 52.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_C3#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_C3#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_C3#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_C3#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.525, + "y": 52.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_D3", + "uuid": "d7b8dd15-4ee7-40a3-b210-15160b950853", + "name": "PRCXI_1000uL_Tips_tipspot_D3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.525, + "y": 43.425, + "z": 2.0 + }, + "position3d": { + "x": 28.525, + "y": 43.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_D3#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_D3#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_D3#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_D3#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.525, + "y": 43.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_E3", + "uuid": "474b6a6b-55df-4c19-bba2-7a3d32f289f5", + "name": "PRCXI_1000uL_Tips_tipspot_E3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.525, + "y": 34.425, + "z": 2.0 + }, + "position3d": { + "x": 28.525, + "y": 34.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_E3#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_E3#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_E3#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_E3#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.525, + "y": 34.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_F3", + "uuid": "0c0de886-7358-4b3c-b124-38ef388cd7a3", + "name": "PRCXI_1000uL_Tips_tipspot_F3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.525, + "y": 25.425, + "z": 2.0 + }, + "position3d": { + "x": 28.525, + "y": 25.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_F3#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_F3#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_F3#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_F3#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.525, + "y": 25.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_G3", + "uuid": "319e0159-5f62-45b4-b644-d22b6e448361", + "name": "PRCXI_1000uL_Tips_tipspot_G3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.525, + "y": 16.425, + "z": 2.0 + }, + "position3d": { + "x": 28.525, + "y": 16.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_G3#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_G3#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_G3#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_G3#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.525, + "y": 16.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_H3", + "uuid": "9fdda3a5-e98e-4abe-bf2b-b3aeb979948d", + "name": "PRCXI_1000uL_Tips_tipspot_H3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.525, + "y": 7.425, + "z": 2.0 + }, + "position3d": { + "x": 28.525, + "y": 7.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_H3#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_H3#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_H3#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_H3#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.525, + "y": 7.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_A4", + "uuid": "90842f7f-429b-4d23-b76d-7aa48d390199", + "name": "PRCXI_1000uL_Tips_tipspot_A4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.525, + "y": 70.425, + "z": 2.0 + }, + "position3d": { + "x": 37.525, + "y": 70.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_A4#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_A4#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_A4#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_A4#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.525, + "y": 70.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_B4", + "uuid": "bdfe2e3f-249c-4346-a444-79b80bd0a300", + "name": "PRCXI_1000uL_Tips_tipspot_B4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.525, + "y": 61.425, + "z": 2.0 + }, + "position3d": { + "x": 37.525, + "y": 61.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_B4#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_B4#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_B4#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_B4#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.525, + "y": 61.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_C4", + "uuid": "aeb2f056-aedc-419b-95cb-f91afdd65097", + "name": "PRCXI_1000uL_Tips_tipspot_C4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.525, + "y": 52.425, + "z": 2.0 + }, + "position3d": { + "x": 37.525, + "y": 52.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_C4#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_C4#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_C4#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_C4#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.525, + "y": 52.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_D4", + "uuid": "296f6d8e-291e-48d6-8da9-cc0c121c131d", + "name": "PRCXI_1000uL_Tips_tipspot_D4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.525, + "y": 43.425, + "z": 2.0 + }, + "position3d": { + "x": 37.525, + "y": 43.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_D4#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_D4#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_D4#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_D4#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.525, + "y": 43.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_E4", + "uuid": "cee98629-f1f0-4225-841b-22f1a4b8a791", + "name": "PRCXI_1000uL_Tips_tipspot_E4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.525, + "y": 34.425, + "z": 2.0 + }, + "position3d": { + "x": 37.525, + "y": 34.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_E4#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_E4#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_E4#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_E4#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.525, + "y": 34.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_F4", + "uuid": "4c6c95b9-8cf0-4ab4-a808-41972280cc4e", + "name": "PRCXI_1000uL_Tips_tipspot_F4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.525, + "y": 25.425, + "z": 2.0 + }, + "position3d": { + "x": 37.525, + "y": 25.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_F4#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_F4#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_F4#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_F4#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.525, + "y": 25.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_G4", + "uuid": "20616f67-a489-4c53-8c29-f4b50be0a27c", + "name": "PRCXI_1000uL_Tips_tipspot_G4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.525, + "y": 16.425, + "z": 2.0 + }, + "position3d": { + "x": 37.525, + "y": 16.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_G4#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_G4#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_G4#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_G4#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.525, + "y": 16.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_H4", + "uuid": "69533916-24a0-4b81-8b3d-408e1244e5c5", + "name": "PRCXI_1000uL_Tips_tipspot_H4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.525, + "y": 7.425, + "z": 2.0 + }, + "position3d": { + "x": 37.525, + "y": 7.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_H4#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_H4#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_H4#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_H4#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.525, + "y": 7.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_A5", + "uuid": "60def863-3319-4e8a-98cb-ce6cc9f7691e", + "name": "PRCXI_1000uL_Tips_tipspot_A5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.525, + "y": 70.425, + "z": 2.0 + }, + "position3d": { + "x": 46.525, + "y": 70.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_A5#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_A5#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_A5#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_A5#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.525, + "y": 70.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_B5", + "uuid": "9fc012a3-0ed2-4e87-9144-3e6cb0740949", + "name": "PRCXI_1000uL_Tips_tipspot_B5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.525, + "y": 61.425, + "z": 2.0 + }, + "position3d": { + "x": 46.525, + "y": 61.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_B5#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_B5#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_B5#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_B5#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.525, + "y": 61.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_C5", + "uuid": "d9e02b11-295a-48da-9720-a3f987d81630", + "name": "PRCXI_1000uL_Tips_tipspot_C5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.525, + "y": 52.425, + "z": 2.0 + }, + "position3d": { + "x": 46.525, + "y": 52.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_C5#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_C5#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_C5#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_C5#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.525, + "y": 52.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_D5", + "uuid": "1c1f9f38-26f8-4c0c-88a7-392603ec847b", + "name": "PRCXI_1000uL_Tips_tipspot_D5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.525, + "y": 43.425, + "z": 2.0 + }, + "position3d": { + "x": 46.525, + "y": 43.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_D5#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_D5#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_D5#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_D5#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.525, + "y": 43.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_E5", + "uuid": "5a8c67d8-c0a5-422c-a126-3c222e2f86d8", + "name": "PRCXI_1000uL_Tips_tipspot_E5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.525, + "y": 34.425, + "z": 2.0 + }, + "position3d": { + "x": 46.525, + "y": 34.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_E5#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_E5#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_E5#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_E5#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.525, + "y": 34.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_F5", + "uuid": "a1123894-82fb-4777-9d7d-1591aed43459", + "name": "PRCXI_1000uL_Tips_tipspot_F5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.525, + "y": 25.425, + "z": 2.0 + }, + "position3d": { + "x": 46.525, + "y": 25.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_F5#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_F5#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_F5#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_F5#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.525, + "y": 25.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_G5", + "uuid": "d69dfece-242b-47dd-91a6-ad5b14adbb7c", + "name": "PRCXI_1000uL_Tips_tipspot_G5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.525, + "y": 16.425, + "z": 2.0 + }, + "position3d": { + "x": 46.525, + "y": 16.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_G5#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_G5#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_G5#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_G5#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.525, + "y": 16.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_H5", + "uuid": "bde49dfa-d118-425f-974b-ea51ff6b46df", + "name": "PRCXI_1000uL_Tips_tipspot_H5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.525, + "y": 7.425, + "z": 2.0 + }, + "position3d": { + "x": 46.525, + "y": 7.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_H5#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_H5#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_H5#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_H5#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.525, + "y": 7.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_A6", + "uuid": "eef55d0e-950f-4254-b48c-6a2df57261e0", + "name": "PRCXI_1000uL_Tips_tipspot_A6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.525, + "y": 70.425, + "z": 2.0 + }, + "position3d": { + "x": 55.525, + "y": 70.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_A6#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_A6#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_A6#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_A6#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.525, + "y": 70.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_B6", + "uuid": "6f5a5c80-a394-4d2f-ae78-8e39df677591", + "name": "PRCXI_1000uL_Tips_tipspot_B6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.525, + "y": 61.425, + "z": 2.0 + }, + "position3d": { + "x": 55.525, + "y": 61.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_B6#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_B6#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_B6#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_B6#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.525, + "y": 61.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_C6", + "uuid": "e92c0a6a-41ec-4c95-a66c-64a0ff19655b", + "name": "PRCXI_1000uL_Tips_tipspot_C6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.525, + "y": 52.425, + "z": 2.0 + }, + "position3d": { + "x": 55.525, + "y": 52.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_C6#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_C6#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_C6#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_C6#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.525, + "y": 52.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_D6", + "uuid": "f478c862-1481-4bea-b85d-408e7e45e1af", + "name": "PRCXI_1000uL_Tips_tipspot_D6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.525, + "y": 43.425, + "z": 2.0 + }, + "position3d": { + "x": 55.525, + "y": 43.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_D6#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_D6#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_D6#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_D6#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.525, + "y": 43.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_E6", + "uuid": "7091a777-bd17-44fb-944a-019e66cef562", + "name": "PRCXI_1000uL_Tips_tipspot_E6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.525, + "y": 34.425, + "z": 2.0 + }, + "position3d": { + "x": 55.525, + "y": 34.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_E6#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_E6#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_E6#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_E6#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.525, + "y": 34.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_F6", + "uuid": "3da7f9e7-fb74-4ba0-8fd4-a2dddac0fce0", + "name": "PRCXI_1000uL_Tips_tipspot_F6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.525, + "y": 25.425, + "z": 2.0 + }, + "position3d": { + "x": 55.525, + "y": 25.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_F6#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_F6#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_F6#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_F6#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.525, + "y": 25.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_G6", + "uuid": "c7999e6d-751c-4dd6-9e94-fca194d82906", + "name": "PRCXI_1000uL_Tips_tipspot_G6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.525, + "y": 16.425, + "z": 2.0 + }, + "position3d": { + "x": 55.525, + "y": 16.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_G6#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_G6#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_G6#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_G6#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.525, + "y": 16.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_H6", + "uuid": "7558cfd6-d2bd-41c8-9dd8-f177ac40e439", + "name": "PRCXI_1000uL_Tips_tipspot_H6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.525, + "y": 7.425, + "z": 2.0 + }, + "position3d": { + "x": 55.525, + "y": 7.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_H6#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_H6#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_H6#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_H6#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.525, + "y": 7.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_A7", + "uuid": "f8cb1159-53f4-467c-976d-25c6b3bde535", + "name": "PRCXI_1000uL_Tips_tipspot_A7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.525, + "y": 70.425, + "z": 2.0 + }, + "position3d": { + "x": 64.525, + "y": 70.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_A7#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_A7#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_A7#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_A7#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.525, + "y": 70.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_B7", + "uuid": "8c4ace03-d272-4f4d-ae97-9443ec9f0923", + "name": "PRCXI_1000uL_Tips_tipspot_B7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.525, + "y": 61.425, + "z": 2.0 + }, + "position3d": { + "x": 64.525, + "y": 61.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_B7#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_B7#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_B7#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_B7#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.525, + "y": 61.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_C7", + "uuid": "c846d060-80e6-48b3-9704-e5da55e50ead", + "name": "PRCXI_1000uL_Tips_tipspot_C7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.525, + "y": 52.425, + "z": 2.0 + }, + "position3d": { + "x": 64.525, + "y": 52.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_C7#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_C7#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_C7#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_C7#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.525, + "y": 52.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_D7", + "uuid": "48167744-6938-4596-b3c8-337f4b7a2070", + "name": "PRCXI_1000uL_Tips_tipspot_D7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.525, + "y": 43.425, + "z": 2.0 + }, + "position3d": { + "x": 64.525, + "y": 43.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_D7#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_D7#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_D7#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_D7#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.525, + "y": 43.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_E7", + "uuid": "6e8dbc63-9dfc-4a05-b50e-fdd46166d217", + "name": "PRCXI_1000uL_Tips_tipspot_E7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.525, + "y": 34.425, + "z": 2.0 + }, + "position3d": { + "x": 64.525, + "y": 34.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_E7#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_E7#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_E7#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_E7#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.525, + "y": 34.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_F7", + "uuid": "25766db7-7ea4-4fdc-b584-6583b5456f64", + "name": "PRCXI_1000uL_Tips_tipspot_F7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.525, + "y": 25.425, + "z": 2.0 + }, + "position3d": { + "x": 64.525, + "y": 25.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_F7#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_F7#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_F7#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_F7#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.525, + "y": 25.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_G7", + "uuid": "1a567250-27bf-4b60-a462-fc6d59abd79f", + "name": "PRCXI_1000uL_Tips_tipspot_G7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.525, + "y": 16.425, + "z": 2.0 + }, + "position3d": { + "x": 64.525, + "y": 16.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_G7#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_G7#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_G7#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_G7#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.525, + "y": 16.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_H7", + "uuid": "ff3dde9e-8d42-437d-8b27-c88e24ab1d60", + "name": "PRCXI_1000uL_Tips_tipspot_H7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.525, + "y": 7.425, + "z": 2.0 + }, + "position3d": { + "x": 64.525, + "y": 7.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_H7#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_H7#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_H7#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_H7#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.525, + "y": 7.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_A8", + "uuid": "66681a33-aed9-40c0-93f3-92e9f48a2351", + "name": "PRCXI_1000uL_Tips_tipspot_A8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.525, + "y": 70.425, + "z": 2.0 + }, + "position3d": { + "x": 73.525, + "y": 70.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_A8#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_A8#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_A8#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_A8#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.525, + "y": 70.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_B8", + "uuid": "3e44b0a7-b948-43e7-a90c-bd27e5241c4c", + "name": "PRCXI_1000uL_Tips_tipspot_B8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.525, + "y": 61.425, + "z": 2.0 + }, + "position3d": { + "x": 73.525, + "y": 61.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_B8#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_B8#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_B8#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_B8#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.525, + "y": 61.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_C8", + "uuid": "5d47c62e-b03d-40b6-8603-0ba08c3a80c2", + "name": "PRCXI_1000uL_Tips_tipspot_C8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.525, + "y": 52.425, + "z": 2.0 + }, + "position3d": { + "x": 73.525, + "y": 52.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_C8#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_C8#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_C8#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_C8#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.525, + "y": 52.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_D8", + "uuid": "c32aff3f-3054-4e1d-b21e-5f7b50b31a11", + "name": "PRCXI_1000uL_Tips_tipspot_D8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.525, + "y": 43.425, + "z": 2.0 + }, + "position3d": { + "x": 73.525, + "y": 43.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_D8#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_D8#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_D8#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_D8#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.525, + "y": 43.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_E8", + "uuid": "92d1d6ed-b76e-49c0-89ef-4cfcb3fc6224", + "name": "PRCXI_1000uL_Tips_tipspot_E8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.525, + "y": 34.425, + "z": 2.0 + }, + "position3d": { + "x": 73.525, + "y": 34.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_E8#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_E8#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_E8#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_E8#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.525, + "y": 34.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_F8", + "uuid": "cef37d25-9fa6-4761-ab3b-bc51a8cffcdb", + "name": "PRCXI_1000uL_Tips_tipspot_F8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.525, + "y": 25.425, + "z": 2.0 + }, + "position3d": { + "x": 73.525, + "y": 25.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_F8#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_F8#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_F8#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_F8#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.525, + "y": 25.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_G8", + "uuid": "30edf444-4708-42df-bf2e-90e252896199", + "name": "PRCXI_1000uL_Tips_tipspot_G8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.525, + "y": 16.425, + "z": 2.0 + }, + "position3d": { + "x": 73.525, + "y": 16.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_G8#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_G8#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_G8#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_G8#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.525, + "y": 16.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_H8", + "uuid": "d4bc4059-3848-48f6-9573-c9f2e0a2b84b", + "name": "PRCXI_1000uL_Tips_tipspot_H8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.525, + "y": 7.425, + "z": 2.0 + }, + "position3d": { + "x": 73.525, + "y": 7.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_H8#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_H8#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_H8#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_H8#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.525, + "y": 7.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_A9", + "uuid": "779710e2-0af2-4acb-8e6f-f31550112554", + "name": "PRCXI_1000uL_Tips_tipspot_A9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.525, + "y": 70.425, + "z": 2.0 + }, + "position3d": { + "x": 82.525, + "y": 70.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_A9#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_A9#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_A9#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_A9#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.525, + "y": 70.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_B9", + "uuid": "850a80a2-73ba-4866-9c30-357e866ba586", + "name": "PRCXI_1000uL_Tips_tipspot_B9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.525, + "y": 61.425, + "z": 2.0 + }, + "position3d": { + "x": 82.525, + "y": 61.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_B9#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_B9#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_B9#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_B9#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.525, + "y": 61.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_C9", + "uuid": "2a8acf2e-170b-41da-8c79-05c982719d68", + "name": "PRCXI_1000uL_Tips_tipspot_C9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.525, + "y": 52.425, + "z": 2.0 + }, + "position3d": { + "x": 82.525, + "y": 52.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_C9#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_C9#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_C9#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_C9#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.525, + "y": 52.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_D9", + "uuid": "87351ce3-6ee2-4b16-9580-6ceb82555ec5", + "name": "PRCXI_1000uL_Tips_tipspot_D9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.525, + "y": 43.425, + "z": 2.0 + }, + "position3d": { + "x": 82.525, + "y": 43.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_D9#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_D9#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_D9#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_D9#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.525, + "y": 43.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_E9", + "uuid": "18fbbdee-5ae9-447b-b696-7ad341e0a446", + "name": "PRCXI_1000uL_Tips_tipspot_E9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.525, + "y": 34.425, + "z": 2.0 + }, + "position3d": { + "x": 82.525, + "y": 34.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_E9#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_E9#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_E9#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_E9#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.525, + "y": 34.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_F9", + "uuid": "137ea8ba-28f4-4194-a540-74b148055943", + "name": "PRCXI_1000uL_Tips_tipspot_F9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.525, + "y": 25.425, + "z": 2.0 + }, + "position3d": { + "x": 82.525, + "y": 25.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_F9#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_F9#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_F9#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_F9#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.525, + "y": 25.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_G9", + "uuid": "b6124f44-ccbb-4697-91cd-03abd8d2a486", + "name": "PRCXI_1000uL_Tips_tipspot_G9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.525, + "y": 16.425, + "z": 2.0 + }, + "position3d": { + "x": 82.525, + "y": 16.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_G9#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_G9#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_G9#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_G9#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.525, + "y": 16.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_H9", + "uuid": "2c294a91-0aae-42f9-828c-1e77038be37a", + "name": "PRCXI_1000uL_Tips_tipspot_H9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.525, + "y": 7.425, + "z": 2.0 + }, + "position3d": { + "x": 82.525, + "y": 7.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_H9#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_H9#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_H9#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_H9#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.525, + "y": 7.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_A10", + "uuid": "70dbebc4-4157-4e8a-9d92-8bd32b796566", + "name": "PRCXI_1000uL_Tips_tipspot_A10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.525, + "y": 70.425, + "z": 2.0 + }, + "position3d": { + "x": 91.525, + "y": 70.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_A10#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_A10#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_A10#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_A10#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.525, + "y": 70.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_B10", + "uuid": "013a383e-e6d2-42e4-b616-3d06dab6c2bf", + "name": "PRCXI_1000uL_Tips_tipspot_B10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.525, + "y": 61.425, + "z": 2.0 + }, + "position3d": { + "x": 91.525, + "y": 61.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_B10#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_B10#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_B10#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_B10#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.525, + "y": 61.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_C10", + "uuid": "2b42f5ec-c0f2-4939-a7d1-a84900b440de", + "name": "PRCXI_1000uL_Tips_tipspot_C10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.525, + "y": 52.425, + "z": 2.0 + }, + "position3d": { + "x": 91.525, + "y": 52.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_C10#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_C10#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_C10#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_C10#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.525, + "y": 52.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_D10", + "uuid": "b7d5018a-7d87-4ad9-9dab-922f7abf1091", + "name": "PRCXI_1000uL_Tips_tipspot_D10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.525, + "y": 43.425, + "z": 2.0 + }, + "position3d": { + "x": 91.525, + "y": 43.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_D10#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_D10#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_D10#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_D10#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.525, + "y": 43.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_E10", + "uuid": "0f0f906d-b548-4adb-a679-e018b39988ae", + "name": "PRCXI_1000uL_Tips_tipspot_E10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.525, + "y": 34.425, + "z": 2.0 + }, + "position3d": { + "x": 91.525, + "y": 34.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_E10#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_E10#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_E10#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_E10#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.525, + "y": 34.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_F10", + "uuid": "5142224e-eeb2-4b10-8c20-1d2d30a23029", + "name": "PRCXI_1000uL_Tips_tipspot_F10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.525, + "y": 25.425, + "z": 2.0 + }, + "position3d": { + "x": 91.525, + "y": 25.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_F10#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_F10#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_F10#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_F10#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.525, + "y": 25.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_G10", + "uuid": "36a7f0f5-9c0c-4da1-9d0d-926ca78b2c47", + "name": "PRCXI_1000uL_Tips_tipspot_G10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.525, + "y": 16.425, + "z": 2.0 + }, + "position3d": { + "x": 91.525, + "y": 16.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_G10#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_G10#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_G10#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_G10#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.525, + "y": 16.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_H10", + "uuid": "fce352de-7433-49b8-b015-51bf638cbfe1", + "name": "PRCXI_1000uL_Tips_tipspot_H10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.525, + "y": 7.425, + "z": 2.0 + }, + "position3d": { + "x": 91.525, + "y": 7.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_H10#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_H10#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_H10#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_H10#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.525, + "y": 7.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_A11", + "uuid": "d02d2bc7-a96c-4e5e-8d10-01e356d8112a", + "name": "PRCXI_1000uL_Tips_tipspot_A11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.525, + "y": 70.425, + "z": 2.0 + }, + "position3d": { + "x": 100.525, + "y": 70.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_A11#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_A11#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_A11#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_A11#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.525, + "y": 70.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_B11", + "uuid": "82950969-0b18-4b53-913b-141c48a85a6c", + "name": "PRCXI_1000uL_Tips_tipspot_B11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.525, + "y": 61.425, + "z": 2.0 + }, + "position3d": { + "x": 100.525, + "y": 61.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_B11#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_B11#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_B11#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_B11#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.525, + "y": 61.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_C11", + "uuid": "c798bd04-241e-4a4e-bcc7-96c1051920b9", + "name": "PRCXI_1000uL_Tips_tipspot_C11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.525, + "y": 52.425, + "z": 2.0 + }, + "position3d": { + "x": 100.525, + "y": 52.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_C11#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_C11#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_C11#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_C11#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.525, + "y": 52.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_D11", + "uuid": "6d45bfd9-5726-42bc-9a00-f55d4238822f", + "name": "PRCXI_1000uL_Tips_tipspot_D11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.525, + "y": 43.425, + "z": 2.0 + }, + "position3d": { + "x": 100.525, + "y": 43.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_D11#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_D11#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_D11#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_D11#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.525, + "y": 43.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_E11", + "uuid": "0c6cb4b6-d5d4-42c9-bdd2-355cadc07b79", + "name": "PRCXI_1000uL_Tips_tipspot_E11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.525, + "y": 34.425, + "z": 2.0 + }, + "position3d": { + "x": 100.525, + "y": 34.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_E11#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_E11#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_E11#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_E11#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.525, + "y": 34.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_F11", + "uuid": "27e648a3-02d7-4008-9af3-a521add0fb20", + "name": "PRCXI_1000uL_Tips_tipspot_F11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.525, + "y": 25.425, + "z": 2.0 + }, + "position3d": { + "x": 100.525, + "y": 25.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_F11#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_F11#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_F11#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_F11#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.525, + "y": 25.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_G11", + "uuid": "ede8f4be-1c27-4d07-a2c2-e6b8289bc842", + "name": "PRCXI_1000uL_Tips_tipspot_G11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.525, + "y": 16.425, + "z": 2.0 + }, + "position3d": { + "x": 100.525, + "y": 16.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_G11#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_G11#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_G11#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_G11#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.525, + "y": 16.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_H11", + "uuid": "735d8e80-8443-481a-84de-1de7186487db", + "name": "PRCXI_1000uL_Tips_tipspot_H11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.525, + "y": 7.425, + "z": 2.0 + }, + "position3d": { + "x": 100.525, + "y": 7.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_H11#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_H11#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_H11#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_H11#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.525, + "y": 7.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_A12", + "uuid": "22e10313-3807-47ed-9e75-c3ee729d54a3", + "name": "PRCXI_1000uL_Tips_tipspot_A12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.525, + "y": 70.425, + "z": 2.0 + }, + "position3d": { + "x": 109.525, + "y": 70.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_A12#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_A12#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_A12#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_A12#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.525, + "y": 70.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_B12", + "uuid": "92c979a6-927c-4c66-a903-0373caef4915", + "name": "PRCXI_1000uL_Tips_tipspot_B12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.525, + "y": 61.425, + "z": 2.0 + }, + "position3d": { + "x": 109.525, + "y": 61.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_B12#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_B12#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_B12#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_B12#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.525, + "y": 61.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_C12", + "uuid": "129db47b-6de1-47a7-a3c8-94742ea4fabf", + "name": "PRCXI_1000uL_Tips_tipspot_C12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.525, + "y": 52.425, + "z": 2.0 + }, + "position3d": { + "x": 109.525, + "y": 52.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_C12#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_C12#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_C12#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_C12#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.525, + "y": 52.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_D12", + "uuid": "19f0159c-739b-49b0-9f10-035cc2349e20", + "name": "PRCXI_1000uL_Tips_tipspot_D12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.525, + "y": 43.425, + "z": 2.0 + }, + "position3d": { + "x": 109.525, + "y": 43.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_D12#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_D12#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_D12#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_D12#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.525, + "y": 43.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_E12", + "uuid": "3958f0fa-2374-433a-8039-9d64bfa9907a", + "name": "PRCXI_1000uL_Tips_tipspot_E12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.525, + "y": 34.425, + "z": 2.0 + }, + "position3d": { + "x": 109.525, + "y": 34.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_E12#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_E12#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_E12#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_E12#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.525, + "y": 34.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_F12", + "uuid": "d5fd4aff-e004-43ec-8b7c-e00da7c2bfee", + "name": "PRCXI_1000uL_Tips_tipspot_F12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.525, + "y": 25.425, + "z": 2.0 + }, + "position3d": { + "x": 109.525, + "y": 25.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_F12#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_F12#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_F12#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_F12#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.525, + "y": 25.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_G12", + "uuid": "d036e956-9a0c-44db-9539-cdff983f3a5a", + "name": "PRCXI_1000uL_Tips_tipspot_G12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.525, + "y": 16.425, + "z": 2.0 + }, + "position3d": { + "x": 109.525, + "y": 16.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_G12#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_G12#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_G12#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_G12#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.525, + "y": 16.425, + "z": 2.0 + } + }, + { + "id": "PRCXI_1000uL_Tips_tipspot_H12", + "uuid": "15bb4a09-6e01-4788-aaf9-564ab4548cf9", + "name": "PRCXI_1000uL_Tips_tipspot_H12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0cb4efed-21d3-44fc-9b72-cd5e5f1f1ec6", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.525, + "y": 7.425, + "z": 2.0 + }, + "position3d": { + "x": 109.525, + "y": 7.425, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_H12#1", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_H12#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1000uL_Tips_tipspot_H12#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1000uL_Tips_tipspot_H12#0", + "total_tip_length": 55.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.525, + "y": 7.425, + "z": 2.0 + } + } + ] + }, + { + "id": "PRCXI_10uL_Tips", + "category": [ + "prcxi", + "tip_racks" + ], + "class": { + "module": "unilabos.devices.liquid_handling.prcxi.prcxi_labware:PRCXI_10uL_Tips", + "type": "pylabrobot" + }, + "description": "10μL Tip头 (Code: ZX-001-10)", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/prcxi/tip_racks.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "PRCXI_10uL_Tips", + "uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "name": "PRCXI_10uL_Tips", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "tip_rack", + "class": "", + "pose": { + "size": { + "depth": 67.0, + "width": 120.98, + "height": 82.12 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "PRCXI9300TipRack", + "size_x": 120.98, + "size_y": 82.12, + "size_z": 67, + "category": "tip_rack", + "model": "PRCXI_10uL_Tips", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "PRCXI_10uL_Tips_tipspot_A1", + "B1": "PRCXI_10uL_Tips_tipspot_B1", + "C1": "PRCXI_10uL_Tips_tipspot_C1", + "D1": "PRCXI_10uL_Tips_tipspot_D1", + "E1": "PRCXI_10uL_Tips_tipspot_E1", + "F1": "PRCXI_10uL_Tips_tipspot_F1", + "G1": "PRCXI_10uL_Tips_tipspot_G1", + "H1": "PRCXI_10uL_Tips_tipspot_H1", + "A2": "PRCXI_10uL_Tips_tipspot_A2", + "B2": "PRCXI_10uL_Tips_tipspot_B2", + "C2": "PRCXI_10uL_Tips_tipspot_C2", + "D2": "PRCXI_10uL_Tips_tipspot_D2", + "E2": "PRCXI_10uL_Tips_tipspot_E2", + "F2": "PRCXI_10uL_Tips_tipspot_F2", + "G2": "PRCXI_10uL_Tips_tipspot_G2", + "H2": "PRCXI_10uL_Tips_tipspot_H2", + "A3": "PRCXI_10uL_Tips_tipspot_A3", + "B3": "PRCXI_10uL_Tips_tipspot_B3", + "C3": "PRCXI_10uL_Tips_tipspot_C3", + "D3": "PRCXI_10uL_Tips_tipspot_D3", + "E3": "PRCXI_10uL_Tips_tipspot_E3", + "F3": "PRCXI_10uL_Tips_tipspot_F3", + "G3": "PRCXI_10uL_Tips_tipspot_G3", + "H3": "PRCXI_10uL_Tips_tipspot_H3", + "A4": "PRCXI_10uL_Tips_tipspot_A4", + "B4": "PRCXI_10uL_Tips_tipspot_B4", + "C4": "PRCXI_10uL_Tips_tipspot_C4", + "D4": "PRCXI_10uL_Tips_tipspot_D4", + "E4": "PRCXI_10uL_Tips_tipspot_E4", + "F4": "PRCXI_10uL_Tips_tipspot_F4", + "G4": "PRCXI_10uL_Tips_tipspot_G4", + "H4": "PRCXI_10uL_Tips_tipspot_H4", + "A5": "PRCXI_10uL_Tips_tipspot_A5", + "B5": "PRCXI_10uL_Tips_tipspot_B5", + "C5": "PRCXI_10uL_Tips_tipspot_C5", + "D5": "PRCXI_10uL_Tips_tipspot_D5", + "E5": "PRCXI_10uL_Tips_tipspot_E5", + "F5": "PRCXI_10uL_Tips_tipspot_F5", + "G5": "PRCXI_10uL_Tips_tipspot_G5", + "H5": "PRCXI_10uL_Tips_tipspot_H5", + "A6": "PRCXI_10uL_Tips_tipspot_A6", + "B6": "PRCXI_10uL_Tips_tipspot_B6", + "C6": "PRCXI_10uL_Tips_tipspot_C6", + "D6": "PRCXI_10uL_Tips_tipspot_D6", + "E6": "PRCXI_10uL_Tips_tipspot_E6", + "F6": "PRCXI_10uL_Tips_tipspot_F6", + "G6": "PRCXI_10uL_Tips_tipspot_G6", + "H6": "PRCXI_10uL_Tips_tipspot_H6", + "A7": "PRCXI_10uL_Tips_tipspot_A7", + "B7": "PRCXI_10uL_Tips_tipspot_B7", + "C7": "PRCXI_10uL_Tips_tipspot_C7", + "D7": "PRCXI_10uL_Tips_tipspot_D7", + "E7": "PRCXI_10uL_Tips_tipspot_E7", + "F7": "PRCXI_10uL_Tips_tipspot_F7", + "G7": "PRCXI_10uL_Tips_tipspot_G7", + "H7": "PRCXI_10uL_Tips_tipspot_H7", + "A8": "PRCXI_10uL_Tips_tipspot_A8", + "B8": "PRCXI_10uL_Tips_tipspot_B8", + "C8": "PRCXI_10uL_Tips_tipspot_C8", + "D8": "PRCXI_10uL_Tips_tipspot_D8", + "E8": "PRCXI_10uL_Tips_tipspot_E8", + "F8": "PRCXI_10uL_Tips_tipspot_F8", + "G8": "PRCXI_10uL_Tips_tipspot_G8", + "H8": "PRCXI_10uL_Tips_tipspot_H8", + "A9": "PRCXI_10uL_Tips_tipspot_A9", + "B9": "PRCXI_10uL_Tips_tipspot_B9", + "C9": "PRCXI_10uL_Tips_tipspot_C9", + "D9": "PRCXI_10uL_Tips_tipspot_D9", + "E9": "PRCXI_10uL_Tips_tipspot_E9", + "F9": "PRCXI_10uL_Tips_tipspot_F9", + "G9": "PRCXI_10uL_Tips_tipspot_G9", + "H9": "PRCXI_10uL_Tips_tipspot_H9", + "A10": "PRCXI_10uL_Tips_tipspot_A10", + "B10": "PRCXI_10uL_Tips_tipspot_B10", + "C10": "PRCXI_10uL_Tips_tipspot_C10", + "D10": "PRCXI_10uL_Tips_tipspot_D10", + "E10": "PRCXI_10uL_Tips_tipspot_E10", + "F10": "PRCXI_10uL_Tips_tipspot_F10", + "G10": "PRCXI_10uL_Tips_tipspot_G10", + "H10": "PRCXI_10uL_Tips_tipspot_H10", + "A11": "PRCXI_10uL_Tips_tipspot_A11", + "B11": "PRCXI_10uL_Tips_tipspot_B11", + "C11": "PRCXI_10uL_Tips_tipspot_C11", + "D11": "PRCXI_10uL_Tips_tipspot_D11", + "E11": "PRCXI_10uL_Tips_tipspot_E11", + "F11": "PRCXI_10uL_Tips_tipspot_F11", + "G11": "PRCXI_10uL_Tips_tipspot_G11", + "H11": "PRCXI_10uL_Tips_tipspot_H11", + "A12": "PRCXI_10uL_Tips_tipspot_A12", + "B12": "PRCXI_10uL_Tips_tipspot_B12", + "C12": "PRCXI_10uL_Tips_tipspot_C12", + "D12": "PRCXI_10uL_Tips_tipspot_D12", + "E12": "PRCXI_10uL_Tips_tipspot_E12", + "F12": "PRCXI_10uL_Tips_tipspot_F12", + "G12": "PRCXI_10uL_Tips_tipspot_G12", + "H12": "PRCXI_10uL_Tips_tipspot_H12" + } + }, + "data": { + "Material": { + "uuid": "45f2ed3ad925484d96463d675a0ebf66", + "Code": "ZX-001-10", + "Name": "10μL Tip头", + "SupplyType": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_A1", + "uuid": "2b0a40cf-8f82-46dc-a410-663de7f9c7f8", + "name": "PRCXI_10uL_Tips_tipspot_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 8.49, + "y": 70.06, + "z": 2.0 + }, + "position3d": { + "x": 8.49, + "y": 70.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_A1#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_A1#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_A1#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_A1#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 8.49, + "y": 70.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_B1", + "uuid": "3456c5cf-6676-4353-82c1-d7e4b3228fcc", + "name": "PRCXI_10uL_Tips_tipspot_B1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 8.49, + "y": 61.06, + "z": 2.0 + }, + "position3d": { + "x": 8.49, + "y": 61.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_B1#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_B1#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_B1#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_B1#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 8.49, + "y": 61.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_C1", + "uuid": "ef95363d-3b2f-4197-bce1-095b1b144214", + "name": "PRCXI_10uL_Tips_tipspot_C1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 8.49, + "y": 52.06, + "z": 2.0 + }, + "position3d": { + "x": 8.49, + "y": 52.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_C1#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_C1#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_C1#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_C1#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 8.49, + "y": 52.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_D1", + "uuid": "7f129d90-aed7-4444-8fe7-13448678b451", + "name": "PRCXI_10uL_Tips_tipspot_D1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 8.49, + "y": 43.06, + "z": 2.0 + }, + "position3d": { + "x": 8.49, + "y": 43.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_D1#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_D1#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_D1#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_D1#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 8.49, + "y": 43.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_E1", + "uuid": "5e0b0612-3ea9-4912-bcea-3ee33d9f28f1", + "name": "PRCXI_10uL_Tips_tipspot_E1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 8.49, + "y": 34.06, + "z": 2.0 + }, + "position3d": { + "x": 8.49, + "y": 34.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_E1#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_E1#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_E1#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_E1#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 8.49, + "y": 34.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_F1", + "uuid": "f6115f74-331c-4db2-b5a0-2800cea6de41", + "name": "PRCXI_10uL_Tips_tipspot_F1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 8.49, + "y": 25.06, + "z": 2.0 + }, + "position3d": { + "x": 8.49, + "y": 25.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_F1#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_F1#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_F1#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_F1#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 8.49, + "y": 25.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_G1", + "uuid": "240100ba-7bda-492a-885b-f722afc796ef", + "name": "PRCXI_10uL_Tips_tipspot_G1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 8.49, + "y": 16.06, + "z": 2.0 + }, + "position3d": { + "x": 8.49, + "y": 16.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_G1#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_G1#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_G1#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_G1#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 8.49, + "y": 16.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_H1", + "uuid": "7a3926f0-95c8-4546-953a-919df1cc4207", + "name": "PRCXI_10uL_Tips_tipspot_H1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 8.49, + "y": 7.06, + "z": 2.0 + }, + "position3d": { + "x": 8.49, + "y": 7.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_H1#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_H1#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_H1#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_H1#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 8.49, + "y": 7.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_A2", + "uuid": "3a92b98c-8132-4429-814f-1826a503a570", + "name": "PRCXI_10uL_Tips_tipspot_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 17.49, + "y": 70.06, + "z": 2.0 + }, + "position3d": { + "x": 17.49, + "y": 70.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_A2#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_A2#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_A2#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_A2#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 17.49, + "y": 70.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_B2", + "uuid": "282d9957-b8d8-4da2-9b5c-d333006954e4", + "name": "PRCXI_10uL_Tips_tipspot_B2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 17.49, + "y": 61.06, + "z": 2.0 + }, + "position3d": { + "x": 17.49, + "y": 61.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_B2#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_B2#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_B2#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_B2#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 17.49, + "y": 61.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_C2", + "uuid": "3e7ba017-f853-43fd-95c0-2d7ad33c6c67", + "name": "PRCXI_10uL_Tips_tipspot_C2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 17.49, + "y": 52.06, + "z": 2.0 + }, + "position3d": { + "x": 17.49, + "y": 52.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_C2#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_C2#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_C2#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_C2#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 17.49, + "y": 52.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_D2", + "uuid": "a7d01655-ec96-4750-884f-e975f4e6b747", + "name": "PRCXI_10uL_Tips_tipspot_D2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 17.49, + "y": 43.06, + "z": 2.0 + }, + "position3d": { + "x": 17.49, + "y": 43.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_D2#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_D2#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_D2#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_D2#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 17.49, + "y": 43.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_E2", + "uuid": "ecd36ee6-7fc6-4209-ab8b-3ba1729819af", + "name": "PRCXI_10uL_Tips_tipspot_E2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 17.49, + "y": 34.06, + "z": 2.0 + }, + "position3d": { + "x": 17.49, + "y": 34.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_E2#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_E2#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_E2#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_E2#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 17.49, + "y": 34.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_F2", + "uuid": "022c966a-c0c0-42a2-b5f3-5196f97a5f0d", + "name": "PRCXI_10uL_Tips_tipspot_F2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 17.49, + "y": 25.06, + "z": 2.0 + }, + "position3d": { + "x": 17.49, + "y": 25.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_F2#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_F2#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_F2#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_F2#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 17.49, + "y": 25.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_G2", + "uuid": "08a17c7e-ac7b-420f-8f97-aa64938ad21a", + "name": "PRCXI_10uL_Tips_tipspot_G2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 17.49, + "y": 16.06, + "z": 2.0 + }, + "position3d": { + "x": 17.49, + "y": 16.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_G2#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_G2#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_G2#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_G2#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 17.49, + "y": 16.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_H2", + "uuid": "528ac170-97a7-4e6c-9c81-3f2d45da1b46", + "name": "PRCXI_10uL_Tips_tipspot_H2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 17.49, + "y": 7.06, + "z": 2.0 + }, + "position3d": { + "x": 17.49, + "y": 7.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_H2#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_H2#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_H2#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_H2#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 17.49, + "y": 7.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_A3", + "uuid": "d8d72d4a-a1fb-4ba7-89e2-89e63d99009f", + "name": "PRCXI_10uL_Tips_tipspot_A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 26.49, + "y": 70.06, + "z": 2.0 + }, + "position3d": { + "x": 26.49, + "y": 70.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_A3#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_A3#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_A3#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_A3#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 26.49, + "y": 70.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_B3", + "uuid": "0b52ef69-7211-4634-bf25-5acca04c5a79", + "name": "PRCXI_10uL_Tips_tipspot_B3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 26.49, + "y": 61.06, + "z": 2.0 + }, + "position3d": { + "x": 26.49, + "y": 61.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_B3#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_B3#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_B3#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_B3#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 26.49, + "y": 61.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_C3", + "uuid": "a56e0028-77fc-4061-9251-ef8cdce92f26", + "name": "PRCXI_10uL_Tips_tipspot_C3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 26.49, + "y": 52.06, + "z": 2.0 + }, + "position3d": { + "x": 26.49, + "y": 52.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_C3#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_C3#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_C3#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_C3#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 26.49, + "y": 52.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_D3", + "uuid": "d6bc9757-02d3-4732-bf9d-ca4e21a910b3", + "name": "PRCXI_10uL_Tips_tipspot_D3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 26.49, + "y": 43.06, + "z": 2.0 + }, + "position3d": { + "x": 26.49, + "y": 43.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_D3#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_D3#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_D3#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_D3#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 26.49, + "y": 43.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_E3", + "uuid": "34d6d915-0598-4992-83fb-defd1a0ec6ef", + "name": "PRCXI_10uL_Tips_tipspot_E3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 26.49, + "y": 34.06, + "z": 2.0 + }, + "position3d": { + "x": 26.49, + "y": 34.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_E3#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_E3#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_E3#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_E3#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 26.49, + "y": 34.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_F3", + "uuid": "2df33f59-52b6-46ef-bdfe-b5556393e45f", + "name": "PRCXI_10uL_Tips_tipspot_F3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 26.49, + "y": 25.06, + "z": 2.0 + }, + "position3d": { + "x": 26.49, + "y": 25.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_F3#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_F3#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_F3#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_F3#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 26.49, + "y": 25.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_G3", + "uuid": "2d7371f9-04e0-4724-b2c4-1dd1b740ac58", + "name": "PRCXI_10uL_Tips_tipspot_G3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 26.49, + "y": 16.06, + "z": 2.0 + }, + "position3d": { + "x": 26.49, + "y": 16.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_G3#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_G3#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_G3#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_G3#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 26.49, + "y": 16.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_H3", + "uuid": "bbcb4914-0eb2-404d-9725-2609d2765ad1", + "name": "PRCXI_10uL_Tips_tipspot_H3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 26.49, + "y": 7.06, + "z": 2.0 + }, + "position3d": { + "x": 26.49, + "y": 7.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_H3#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_H3#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_H3#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_H3#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 26.49, + "y": 7.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_A4", + "uuid": "2dfbc99b-7cd7-40f7-b0b7-ca24dfbde948", + "name": "PRCXI_10uL_Tips_tipspot_A4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 35.49, + "y": 70.06, + "z": 2.0 + }, + "position3d": { + "x": 35.49, + "y": 70.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_A4#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_A4#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_A4#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_A4#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 35.49, + "y": 70.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_B4", + "uuid": "90952254-9d79-48ae-baed-0a912c9863b5", + "name": "PRCXI_10uL_Tips_tipspot_B4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 35.49, + "y": 61.06, + "z": 2.0 + }, + "position3d": { + "x": 35.49, + "y": 61.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_B4#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_B4#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_B4#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_B4#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 35.49, + "y": 61.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_C4", + "uuid": "5895f18c-f7dd-4fcf-b26f-6887be2b66d1", + "name": "PRCXI_10uL_Tips_tipspot_C4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 35.49, + "y": 52.06, + "z": 2.0 + }, + "position3d": { + "x": 35.49, + "y": 52.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_C4#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_C4#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_C4#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_C4#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 35.49, + "y": 52.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_D4", + "uuid": "3ec8bd37-5303-4c4d-8e85-2e09bbf5236d", + "name": "PRCXI_10uL_Tips_tipspot_D4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 35.49, + "y": 43.06, + "z": 2.0 + }, + "position3d": { + "x": 35.49, + "y": 43.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_D4#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_D4#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_D4#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_D4#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 35.49, + "y": 43.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_E4", + "uuid": "59d3bb69-32b5-46dd-8da6-eac81ae4ca60", + "name": "PRCXI_10uL_Tips_tipspot_E4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 35.49, + "y": 34.06, + "z": 2.0 + }, + "position3d": { + "x": 35.49, + "y": 34.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_E4#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_E4#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_E4#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_E4#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 35.49, + "y": 34.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_F4", + "uuid": "463dd419-db77-4495-93cf-655271a72726", + "name": "PRCXI_10uL_Tips_tipspot_F4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 35.49, + "y": 25.06, + "z": 2.0 + }, + "position3d": { + "x": 35.49, + "y": 25.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_F4#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_F4#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_F4#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_F4#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 35.49, + "y": 25.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_G4", + "uuid": "5ca5834f-6112-4be3-a202-29b3e78ce2bb", + "name": "PRCXI_10uL_Tips_tipspot_G4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 35.49, + "y": 16.06, + "z": 2.0 + }, + "position3d": { + "x": 35.49, + "y": 16.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_G4#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_G4#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_G4#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_G4#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 35.49, + "y": 16.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_H4", + "uuid": "4592954d-78b7-4118-bf24-4532596717e4", + "name": "PRCXI_10uL_Tips_tipspot_H4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 35.49, + "y": 7.06, + "z": 2.0 + }, + "position3d": { + "x": 35.49, + "y": 7.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_H4#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_H4#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_H4#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_H4#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 35.49, + "y": 7.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_A5", + "uuid": "a4790a7e-c967-4570-87ab-81266b1da107", + "name": "PRCXI_10uL_Tips_tipspot_A5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 44.49, + "y": 70.06, + "z": 2.0 + }, + "position3d": { + "x": 44.49, + "y": 70.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_A5#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_A5#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_A5#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_A5#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 44.49, + "y": 70.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_B5", + "uuid": "15a7ece7-6947-4aa5-8992-3a0bfeed1d98", + "name": "PRCXI_10uL_Tips_tipspot_B5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 44.49, + "y": 61.06, + "z": 2.0 + }, + "position3d": { + "x": 44.49, + "y": 61.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_B5#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_B5#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_B5#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_B5#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 44.49, + "y": 61.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_C5", + "uuid": "a4f431bc-9803-4d61-8065-fc93813f572f", + "name": "PRCXI_10uL_Tips_tipspot_C5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 44.49, + "y": 52.06, + "z": 2.0 + }, + "position3d": { + "x": 44.49, + "y": 52.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_C5#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_C5#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_C5#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_C5#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 44.49, + "y": 52.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_D5", + "uuid": "184d78ab-a14b-4aad-afe5-d8f56721a4b5", + "name": "PRCXI_10uL_Tips_tipspot_D5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 44.49, + "y": 43.06, + "z": 2.0 + }, + "position3d": { + "x": 44.49, + "y": 43.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_D5#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_D5#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_D5#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_D5#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 44.49, + "y": 43.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_E5", + "uuid": "466091bb-7b3e-4dde-83e8-71d28cd1300d", + "name": "PRCXI_10uL_Tips_tipspot_E5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 44.49, + "y": 34.06, + "z": 2.0 + }, + "position3d": { + "x": 44.49, + "y": 34.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_E5#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_E5#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_E5#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_E5#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 44.49, + "y": 34.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_F5", + "uuid": "a81d483a-a37b-4ead-8e82-5834ca241805", + "name": "PRCXI_10uL_Tips_tipspot_F5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 44.49, + "y": 25.06, + "z": 2.0 + }, + "position3d": { + "x": 44.49, + "y": 25.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_F5#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_F5#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_F5#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_F5#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 44.49, + "y": 25.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_G5", + "uuid": "e819ae20-5843-4d58-ba03-986d73bd8412", + "name": "PRCXI_10uL_Tips_tipspot_G5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 44.49, + "y": 16.06, + "z": 2.0 + }, + "position3d": { + "x": 44.49, + "y": 16.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_G5#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_G5#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_G5#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_G5#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 44.49, + "y": 16.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_H5", + "uuid": "7ecc2ac8-fde1-40fd-baad-ea89eaf56106", + "name": "PRCXI_10uL_Tips_tipspot_H5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 44.49, + "y": 7.06, + "z": 2.0 + }, + "position3d": { + "x": 44.49, + "y": 7.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_H5#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_H5#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_H5#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_H5#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 44.49, + "y": 7.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_A6", + "uuid": "37367315-9396-4bfc-a6ae-488133045f40", + "name": "PRCXI_10uL_Tips_tipspot_A6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 53.49, + "y": 70.06, + "z": 2.0 + }, + "position3d": { + "x": 53.49, + "y": 70.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_A6#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_A6#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_A6#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_A6#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 53.49, + "y": 70.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_B6", + "uuid": "0d785d4b-a66f-48e1-b1e2-a96f20c015bc", + "name": "PRCXI_10uL_Tips_tipspot_B6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 53.49, + "y": 61.06, + "z": 2.0 + }, + "position3d": { + "x": 53.49, + "y": 61.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_B6#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_B6#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_B6#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_B6#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 53.49, + "y": 61.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_C6", + "uuid": "99819f60-a593-4f85-acdc-79f9bc3ac236", + "name": "PRCXI_10uL_Tips_tipspot_C6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 53.49, + "y": 52.06, + "z": 2.0 + }, + "position3d": { + "x": 53.49, + "y": 52.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_C6#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_C6#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_C6#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_C6#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 53.49, + "y": 52.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_D6", + "uuid": "eca509b1-66ba-4376-a0ec-43ae9219f0cd", + "name": "PRCXI_10uL_Tips_tipspot_D6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 53.49, + "y": 43.06, + "z": 2.0 + }, + "position3d": { + "x": 53.49, + "y": 43.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_D6#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_D6#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_D6#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_D6#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 53.49, + "y": 43.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_E6", + "uuid": "82b070eb-f3f8-4970-876b-311afdd3f025", + "name": "PRCXI_10uL_Tips_tipspot_E6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 53.49, + "y": 34.06, + "z": 2.0 + }, + "position3d": { + "x": 53.49, + "y": 34.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_E6#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_E6#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_E6#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_E6#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 53.49, + "y": 34.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_F6", + "uuid": "12ae0868-29dc-478d-ada2-f76570c724e3", + "name": "PRCXI_10uL_Tips_tipspot_F6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 53.49, + "y": 25.06, + "z": 2.0 + }, + "position3d": { + "x": 53.49, + "y": 25.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_F6#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_F6#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_F6#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_F6#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 53.49, + "y": 25.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_G6", + "uuid": "3408474e-dd9f-463c-9d07-229d37c9f719", + "name": "PRCXI_10uL_Tips_tipspot_G6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 53.49, + "y": 16.06, + "z": 2.0 + }, + "position3d": { + "x": 53.49, + "y": 16.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_G6#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_G6#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_G6#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_G6#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 53.49, + "y": 16.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_H6", + "uuid": "c110c471-faab-44ad-986e-541864b93923", + "name": "PRCXI_10uL_Tips_tipspot_H6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 53.49, + "y": 7.06, + "z": 2.0 + }, + "position3d": { + "x": 53.49, + "y": 7.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_H6#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_H6#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_H6#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_H6#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 53.49, + "y": 7.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_A7", + "uuid": "c8dfa6d6-f011-4da7-babe-355890392c3b", + "name": "PRCXI_10uL_Tips_tipspot_A7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 62.49, + "y": 70.06, + "z": 2.0 + }, + "position3d": { + "x": 62.49, + "y": 70.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_A7#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_A7#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_A7#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_A7#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 62.49, + "y": 70.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_B7", + "uuid": "d59cf40f-1e40-416b-b657-a0a433214103", + "name": "PRCXI_10uL_Tips_tipspot_B7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 62.49, + "y": 61.06, + "z": 2.0 + }, + "position3d": { + "x": 62.49, + "y": 61.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_B7#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_B7#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_B7#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_B7#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 62.49, + "y": 61.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_C7", + "uuid": "0e137d5c-5bdd-42f1-89fb-543532e523a5", + "name": "PRCXI_10uL_Tips_tipspot_C7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 62.49, + "y": 52.06, + "z": 2.0 + }, + "position3d": { + "x": 62.49, + "y": 52.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_C7#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_C7#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_C7#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_C7#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 62.49, + "y": 52.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_D7", + "uuid": "21552cd6-db5a-4dfd-aad1-412ef9bae63e", + "name": "PRCXI_10uL_Tips_tipspot_D7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 62.49, + "y": 43.06, + "z": 2.0 + }, + "position3d": { + "x": 62.49, + "y": 43.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_D7#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_D7#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_D7#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_D7#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 62.49, + "y": 43.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_E7", + "uuid": "92e5ed9f-a2f8-4171-8620-300b35104bcb", + "name": "PRCXI_10uL_Tips_tipspot_E7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 62.49, + "y": 34.06, + "z": 2.0 + }, + "position3d": { + "x": 62.49, + "y": 34.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_E7#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_E7#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_E7#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_E7#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 62.49, + "y": 34.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_F7", + "uuid": "0455cd53-254c-428e-b339-4ba666f022ff", + "name": "PRCXI_10uL_Tips_tipspot_F7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 62.49, + "y": 25.06, + "z": 2.0 + }, + "position3d": { + "x": 62.49, + "y": 25.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_F7#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_F7#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_F7#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_F7#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 62.49, + "y": 25.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_G7", + "uuid": "c6e6c081-22c5-4ef2-a618-ffd9fcba9197", + "name": "PRCXI_10uL_Tips_tipspot_G7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 62.49, + "y": 16.06, + "z": 2.0 + }, + "position3d": { + "x": 62.49, + "y": 16.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_G7#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_G7#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_G7#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_G7#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 62.49, + "y": 16.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_H7", + "uuid": "27203aa3-a5c0-4b34-877c-0491e1698153", + "name": "PRCXI_10uL_Tips_tipspot_H7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 62.49, + "y": 7.06, + "z": 2.0 + }, + "position3d": { + "x": 62.49, + "y": 7.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_H7#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_H7#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_H7#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_H7#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 62.49, + "y": 7.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_A8", + "uuid": "37682f3a-763a-40ba-b2b5-0e264205246d", + "name": "PRCXI_10uL_Tips_tipspot_A8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 71.49, + "y": 70.06, + "z": 2.0 + }, + "position3d": { + "x": 71.49, + "y": 70.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_A8#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_A8#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_A8#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_A8#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 71.49, + "y": 70.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_B8", + "uuid": "006d8802-f045-48f6-9642-996193de16b8", + "name": "PRCXI_10uL_Tips_tipspot_B8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 71.49, + "y": 61.06, + "z": 2.0 + }, + "position3d": { + "x": 71.49, + "y": 61.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_B8#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_B8#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_B8#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_B8#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 71.49, + "y": 61.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_C8", + "uuid": "c85ef2e2-f6e6-45c7-9cd1-306a14629591", + "name": "PRCXI_10uL_Tips_tipspot_C8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 71.49, + "y": 52.06, + "z": 2.0 + }, + "position3d": { + "x": 71.49, + "y": 52.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_C8#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_C8#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_C8#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_C8#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 71.49, + "y": 52.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_D8", + "uuid": "03dfc433-d75e-4ec7-8805-a7f9f206f5b7", + "name": "PRCXI_10uL_Tips_tipspot_D8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 71.49, + "y": 43.06, + "z": 2.0 + }, + "position3d": { + "x": 71.49, + "y": 43.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_D8#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_D8#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_D8#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_D8#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 71.49, + "y": 43.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_E8", + "uuid": "70a348d5-36f7-4a0f-9375-187264c3357a", + "name": "PRCXI_10uL_Tips_tipspot_E8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 71.49, + "y": 34.06, + "z": 2.0 + }, + "position3d": { + "x": 71.49, + "y": 34.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_E8#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_E8#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_E8#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_E8#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 71.49, + "y": 34.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_F8", + "uuid": "e95b6ff1-9b0a-4692-9ebd-69a38dc202b4", + "name": "PRCXI_10uL_Tips_tipspot_F8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 71.49, + "y": 25.06, + "z": 2.0 + }, + "position3d": { + "x": 71.49, + "y": 25.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_F8#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_F8#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_F8#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_F8#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 71.49, + "y": 25.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_G8", + "uuid": "84218ee6-2dcd-4e72-b573-28f9e80c85ee", + "name": "PRCXI_10uL_Tips_tipspot_G8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 71.49, + "y": 16.06, + "z": 2.0 + }, + "position3d": { + "x": 71.49, + "y": 16.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_G8#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_G8#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_G8#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_G8#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 71.49, + "y": 16.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_H8", + "uuid": "8d0b9c71-18c1-439f-bade-060cff8c7bd6", + "name": "PRCXI_10uL_Tips_tipspot_H8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 71.49, + "y": 7.06, + "z": 2.0 + }, + "position3d": { + "x": 71.49, + "y": 7.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_H8#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_H8#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_H8#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_H8#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 71.49, + "y": 7.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_A9", + "uuid": "b0394413-5f6c-43a8-9c39-5cb2d398ef5f", + "name": "PRCXI_10uL_Tips_tipspot_A9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 80.49, + "y": 70.06, + "z": 2.0 + }, + "position3d": { + "x": 80.49, + "y": 70.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_A9#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_A9#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_A9#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_A9#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 80.49, + "y": 70.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_B9", + "uuid": "7de8aa98-619b-4b4d-a50a-cbb63b8039b9", + "name": "PRCXI_10uL_Tips_tipspot_B9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 80.49, + "y": 61.06, + "z": 2.0 + }, + "position3d": { + "x": 80.49, + "y": 61.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_B9#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_B9#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_B9#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_B9#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 80.49, + "y": 61.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_C9", + "uuid": "3adf7c93-157e-4377-9c42-103941899a73", + "name": "PRCXI_10uL_Tips_tipspot_C9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 80.49, + "y": 52.06, + "z": 2.0 + }, + "position3d": { + "x": 80.49, + "y": 52.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_C9#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_C9#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_C9#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_C9#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 80.49, + "y": 52.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_D9", + "uuid": "3dc20a4a-2e00-4202-8b3f-b5d1bb09c885", + "name": "PRCXI_10uL_Tips_tipspot_D9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 80.49, + "y": 43.06, + "z": 2.0 + }, + "position3d": { + "x": 80.49, + "y": 43.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_D9#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_D9#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_D9#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_D9#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 80.49, + "y": 43.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_E9", + "uuid": "afac53a8-e8b0-4940-bb1d-6d3a159d605f", + "name": "PRCXI_10uL_Tips_tipspot_E9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 80.49, + "y": 34.06, + "z": 2.0 + }, + "position3d": { + "x": 80.49, + "y": 34.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_E9#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_E9#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_E9#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_E9#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 80.49, + "y": 34.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_F9", + "uuid": "89170bfc-7522-4245-af11-3b49ad668ce8", + "name": "PRCXI_10uL_Tips_tipspot_F9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 80.49, + "y": 25.06, + "z": 2.0 + }, + "position3d": { + "x": 80.49, + "y": 25.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_F9#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_F9#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_F9#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_F9#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 80.49, + "y": 25.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_G9", + "uuid": "0e20de91-0e4d-4a77-825a-e3e50119b0bb", + "name": "PRCXI_10uL_Tips_tipspot_G9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 80.49, + "y": 16.06, + "z": 2.0 + }, + "position3d": { + "x": 80.49, + "y": 16.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_G9#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_G9#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_G9#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_G9#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 80.49, + "y": 16.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_H9", + "uuid": "821969c8-635f-48ae-b9f1-0ad420b76a82", + "name": "PRCXI_10uL_Tips_tipspot_H9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 80.49, + "y": 7.06, + "z": 2.0 + }, + "position3d": { + "x": 80.49, + "y": 7.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_H9#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_H9#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_H9#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_H9#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 80.49, + "y": 7.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_A10", + "uuid": "059f13ef-3883-49cf-8c9a-0b17c1a72175", + "name": "PRCXI_10uL_Tips_tipspot_A10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 89.49, + "y": 70.06, + "z": 2.0 + }, + "position3d": { + "x": 89.49, + "y": 70.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_A10#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_A10#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_A10#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_A10#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 89.49, + "y": 70.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_B10", + "uuid": "28245204-f51e-447d-913f-e0acf7ef6cfa", + "name": "PRCXI_10uL_Tips_tipspot_B10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 89.49, + "y": 61.06, + "z": 2.0 + }, + "position3d": { + "x": 89.49, + "y": 61.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_B10#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_B10#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_B10#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_B10#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 89.49, + "y": 61.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_C10", + "uuid": "5477cb28-353f-47a4-b71c-581335c4edaf", + "name": "PRCXI_10uL_Tips_tipspot_C10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 89.49, + "y": 52.06, + "z": 2.0 + }, + "position3d": { + "x": 89.49, + "y": 52.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_C10#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_C10#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_C10#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_C10#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 89.49, + "y": 52.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_D10", + "uuid": "76d4267b-4635-4a8a-a972-72b6bbfd60ba", + "name": "PRCXI_10uL_Tips_tipspot_D10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 89.49, + "y": 43.06, + "z": 2.0 + }, + "position3d": { + "x": 89.49, + "y": 43.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_D10#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_D10#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_D10#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_D10#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 89.49, + "y": 43.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_E10", + "uuid": "200dda5a-bed9-478e-8b7b-6e85b629522d", + "name": "PRCXI_10uL_Tips_tipspot_E10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 89.49, + "y": 34.06, + "z": 2.0 + }, + "position3d": { + "x": 89.49, + "y": 34.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_E10#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_E10#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_E10#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_E10#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 89.49, + "y": 34.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_F10", + "uuid": "3b530434-d7f3-419a-8b9c-d195642a1fd9", + "name": "PRCXI_10uL_Tips_tipspot_F10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 89.49, + "y": 25.06, + "z": 2.0 + }, + "position3d": { + "x": 89.49, + "y": 25.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_F10#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_F10#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_F10#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_F10#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 89.49, + "y": 25.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_G10", + "uuid": "39d569d7-0986-4733-a53b-1faeae8a422d", + "name": "PRCXI_10uL_Tips_tipspot_G10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 89.49, + "y": 16.06, + "z": 2.0 + }, + "position3d": { + "x": 89.49, + "y": 16.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_G10#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_G10#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_G10#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_G10#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 89.49, + "y": 16.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_H10", + "uuid": "de84f662-1545-41bc-a88c-6f472271232b", + "name": "PRCXI_10uL_Tips_tipspot_H10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 89.49, + "y": 7.06, + "z": 2.0 + }, + "position3d": { + "x": 89.49, + "y": 7.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_H10#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_H10#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_H10#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_H10#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 89.49, + "y": 7.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_A11", + "uuid": "3f542e42-a5a3-4e84-a658-a7ad9cd7d2a5", + "name": "PRCXI_10uL_Tips_tipspot_A11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 98.49, + "y": 70.06, + "z": 2.0 + }, + "position3d": { + "x": 98.49, + "y": 70.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_A11#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_A11#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_A11#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_A11#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 98.49, + "y": 70.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_B11", + "uuid": "485c0436-e7fa-4f61-b9f1-2f943e422d1f", + "name": "PRCXI_10uL_Tips_tipspot_B11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 98.49, + "y": 61.06, + "z": 2.0 + }, + "position3d": { + "x": 98.49, + "y": 61.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_B11#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_B11#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_B11#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_B11#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 98.49, + "y": 61.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_C11", + "uuid": "fb3a53a7-8115-4a06-bfdf-4fa5f3d405b9", + "name": "PRCXI_10uL_Tips_tipspot_C11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 98.49, + "y": 52.06, + "z": 2.0 + }, + "position3d": { + "x": 98.49, + "y": 52.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_C11#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_C11#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_C11#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_C11#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 98.49, + "y": 52.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_D11", + "uuid": "80e390e0-2504-4f5a-985e-4a72efcf4281", + "name": "PRCXI_10uL_Tips_tipspot_D11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 98.49, + "y": 43.06, + "z": 2.0 + }, + "position3d": { + "x": 98.49, + "y": 43.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_D11#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_D11#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_D11#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_D11#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 98.49, + "y": 43.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_E11", + "uuid": "84a7df3f-1823-40ab-9978-1bd914610449", + "name": "PRCXI_10uL_Tips_tipspot_E11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 98.49, + "y": 34.06, + "z": 2.0 + }, + "position3d": { + "x": 98.49, + "y": 34.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_E11#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_E11#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_E11#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_E11#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 98.49, + "y": 34.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_F11", + "uuid": "a80bbcd4-3e5a-4676-bb2e-581031091f1b", + "name": "PRCXI_10uL_Tips_tipspot_F11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 98.49, + "y": 25.06, + "z": 2.0 + }, + "position3d": { + "x": 98.49, + "y": 25.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_F11#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_F11#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_F11#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_F11#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 98.49, + "y": 25.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_G11", + "uuid": "8e59c388-224b-482a-aee6-669241754a09", + "name": "PRCXI_10uL_Tips_tipspot_G11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 98.49, + "y": 16.06, + "z": 2.0 + }, + "position3d": { + "x": 98.49, + "y": 16.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_G11#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_G11#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_G11#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_G11#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 98.49, + "y": 16.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_H11", + "uuid": "0daae554-fc5a-4cce-bea6-fde95cda1c88", + "name": "PRCXI_10uL_Tips_tipspot_H11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 98.49, + "y": 7.06, + "z": 2.0 + }, + "position3d": { + "x": 98.49, + "y": 7.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_H11#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_H11#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_H11#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_H11#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 98.49, + "y": 7.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_A12", + "uuid": "82c06d15-2efe-42ab-a5f3-1e9394ef8cd4", + "name": "PRCXI_10uL_Tips_tipspot_A12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 107.49, + "y": 70.06, + "z": 2.0 + }, + "position3d": { + "x": 107.49, + "y": 70.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_A12#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_A12#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_A12#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_A12#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 107.49, + "y": 70.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_B12", + "uuid": "b92e4bd0-9c93-4fbc-aa4c-a6e55d637ffc", + "name": "PRCXI_10uL_Tips_tipspot_B12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 107.49, + "y": 61.06, + "z": 2.0 + }, + "position3d": { + "x": 107.49, + "y": 61.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_B12#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_B12#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_B12#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_B12#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 107.49, + "y": 61.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_C12", + "uuid": "eacbf8f5-f3bd-46db-b4d5-f3080b93749f", + "name": "PRCXI_10uL_Tips_tipspot_C12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 107.49, + "y": 52.06, + "z": 2.0 + }, + "position3d": { + "x": 107.49, + "y": 52.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_C12#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_C12#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_C12#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_C12#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 107.49, + "y": 52.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_D12", + "uuid": "91334088-82ca-4f91-8aa8-ffa2980e19dd", + "name": "PRCXI_10uL_Tips_tipspot_D12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 107.49, + "y": 43.06, + "z": 2.0 + }, + "position3d": { + "x": 107.49, + "y": 43.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_D12#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_D12#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_D12#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_D12#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 107.49, + "y": 43.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_E12", + "uuid": "fea94073-649c-40d2-ad55-f96c8ce2a6c2", + "name": "PRCXI_10uL_Tips_tipspot_E12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 107.49, + "y": 34.06, + "z": 2.0 + }, + "position3d": { + "x": 107.49, + "y": 34.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_E12#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_E12#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_E12#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_E12#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 107.49, + "y": 34.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_F12", + "uuid": "e364130f-f0fe-4f92-8135-fb94fa7d2029", + "name": "PRCXI_10uL_Tips_tipspot_F12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 107.49, + "y": 25.06, + "z": 2.0 + }, + "position3d": { + "x": 107.49, + "y": 25.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_F12#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_F12#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_F12#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_F12#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 107.49, + "y": 25.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_G12", + "uuid": "b434a50b-966b-469c-8a5b-1f7027ed456c", + "name": "PRCXI_10uL_Tips_tipspot_G12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 107.49, + "y": 16.06, + "z": 2.0 + }, + "position3d": { + "x": 107.49, + "y": 16.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_G12#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_G12#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_G12#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_G12#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 107.49, + "y": 16.06, + "z": 2.0 + } + }, + { + "id": "PRCXI_10uL_Tips_tipspot_H12", + "uuid": "51ab40c7-0abc-4500-a4c5-0d7d3db2bada", + "name": "PRCXI_10uL_Tips_tipspot_H12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f18a46b0-6435-4ea2-b4f9-0fe4cc082f55", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 107.49, + "y": 7.06, + "z": 2.0 + }, + "position3d": { + "x": 107.49, + "y": 7.06, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_H12#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_H12#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_10uL_Tips_tipspot_H12#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10uL_Tips_tipspot_H12#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 107.49, + "y": 7.06, + "z": 2.0 + } + } + ] + }, + { + "id": "PRCXI_10ul_eTips", + "category": [ + "prcxi", + "tip_racks" + ], + "class": { + "module": "unilabos.devices.liquid_handling.prcxi.prcxi_labware:PRCXI_10ul_eTips", + "type": "pylabrobot" + }, + "description": "10μL加长 Tip头 (Code: ZX-001-10+)", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/prcxi/tip_racks.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "PRCXI_10ul_eTips", + "uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "name": "PRCXI_10ul_eTips", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "tip_rack", + "class": "", + "pose": { + "size": { + "depth": 58.23, + "width": 122.11, + "height": 85.48 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "PRCXI9300TipRack", + "size_x": 122.11, + "size_y": 85.48, + "size_z": 58.23, + "category": "tip_rack", + "model": "PRCXI_10ul_eTips", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "PRCXI_10ul_eTips_tipspot_A1", + "B1": "PRCXI_10ul_eTips_tipspot_B1", + "C1": "PRCXI_10ul_eTips_tipspot_C1", + "D1": "PRCXI_10ul_eTips_tipspot_D1", + "E1": "PRCXI_10ul_eTips_tipspot_E1", + "F1": "PRCXI_10ul_eTips_tipspot_F1", + "G1": "PRCXI_10ul_eTips_tipspot_G1", + "H1": "PRCXI_10ul_eTips_tipspot_H1", + "A2": "PRCXI_10ul_eTips_tipspot_A2", + "B2": "PRCXI_10ul_eTips_tipspot_B2", + "C2": "PRCXI_10ul_eTips_tipspot_C2", + "D2": "PRCXI_10ul_eTips_tipspot_D2", + "E2": "PRCXI_10ul_eTips_tipspot_E2", + "F2": "PRCXI_10ul_eTips_tipspot_F2", + "G2": "PRCXI_10ul_eTips_tipspot_G2", + "H2": "PRCXI_10ul_eTips_tipspot_H2", + "A3": "PRCXI_10ul_eTips_tipspot_A3", + "B3": "PRCXI_10ul_eTips_tipspot_B3", + "C3": "PRCXI_10ul_eTips_tipspot_C3", + "D3": "PRCXI_10ul_eTips_tipspot_D3", + "E3": "PRCXI_10ul_eTips_tipspot_E3", + "F3": "PRCXI_10ul_eTips_tipspot_F3", + "G3": "PRCXI_10ul_eTips_tipspot_G3", + "H3": "PRCXI_10ul_eTips_tipspot_H3", + "A4": "PRCXI_10ul_eTips_tipspot_A4", + "B4": "PRCXI_10ul_eTips_tipspot_B4", + "C4": "PRCXI_10ul_eTips_tipspot_C4", + "D4": "PRCXI_10ul_eTips_tipspot_D4", + "E4": "PRCXI_10ul_eTips_tipspot_E4", + "F4": "PRCXI_10ul_eTips_tipspot_F4", + "G4": "PRCXI_10ul_eTips_tipspot_G4", + "H4": "PRCXI_10ul_eTips_tipspot_H4", + "A5": "PRCXI_10ul_eTips_tipspot_A5", + "B5": "PRCXI_10ul_eTips_tipspot_B5", + "C5": "PRCXI_10ul_eTips_tipspot_C5", + "D5": "PRCXI_10ul_eTips_tipspot_D5", + "E5": "PRCXI_10ul_eTips_tipspot_E5", + "F5": "PRCXI_10ul_eTips_tipspot_F5", + "G5": "PRCXI_10ul_eTips_tipspot_G5", + "H5": "PRCXI_10ul_eTips_tipspot_H5", + "A6": "PRCXI_10ul_eTips_tipspot_A6", + "B6": "PRCXI_10ul_eTips_tipspot_B6", + "C6": "PRCXI_10ul_eTips_tipspot_C6", + "D6": "PRCXI_10ul_eTips_tipspot_D6", + "E6": "PRCXI_10ul_eTips_tipspot_E6", + "F6": "PRCXI_10ul_eTips_tipspot_F6", + "G6": "PRCXI_10ul_eTips_tipspot_G6", + "H6": "PRCXI_10ul_eTips_tipspot_H6", + "A7": "PRCXI_10ul_eTips_tipspot_A7", + "B7": "PRCXI_10ul_eTips_tipspot_B7", + "C7": "PRCXI_10ul_eTips_tipspot_C7", + "D7": "PRCXI_10ul_eTips_tipspot_D7", + "E7": "PRCXI_10ul_eTips_tipspot_E7", + "F7": "PRCXI_10ul_eTips_tipspot_F7", + "G7": "PRCXI_10ul_eTips_tipspot_G7", + "H7": "PRCXI_10ul_eTips_tipspot_H7", + "A8": "PRCXI_10ul_eTips_tipspot_A8", + "B8": "PRCXI_10ul_eTips_tipspot_B8", + "C8": "PRCXI_10ul_eTips_tipspot_C8", + "D8": "PRCXI_10ul_eTips_tipspot_D8", + "E8": "PRCXI_10ul_eTips_tipspot_E8", + "F8": "PRCXI_10ul_eTips_tipspot_F8", + "G8": "PRCXI_10ul_eTips_tipspot_G8", + "H8": "PRCXI_10ul_eTips_tipspot_H8", + "A9": "PRCXI_10ul_eTips_tipspot_A9", + "B9": "PRCXI_10ul_eTips_tipspot_B9", + "C9": "PRCXI_10ul_eTips_tipspot_C9", + "D9": "PRCXI_10ul_eTips_tipspot_D9", + "E9": "PRCXI_10ul_eTips_tipspot_E9", + "F9": "PRCXI_10ul_eTips_tipspot_F9", + "G9": "PRCXI_10ul_eTips_tipspot_G9", + "H9": "PRCXI_10ul_eTips_tipspot_H9", + "A10": "PRCXI_10ul_eTips_tipspot_A10", + "B10": "PRCXI_10ul_eTips_tipspot_B10", + "C10": "PRCXI_10ul_eTips_tipspot_C10", + "D10": "PRCXI_10ul_eTips_tipspot_D10", + "E10": "PRCXI_10ul_eTips_tipspot_E10", + "F10": "PRCXI_10ul_eTips_tipspot_F10", + "G10": "PRCXI_10ul_eTips_tipspot_G10", + "H10": "PRCXI_10ul_eTips_tipspot_H10", + "A11": "PRCXI_10ul_eTips_tipspot_A11", + "B11": "PRCXI_10ul_eTips_tipspot_B11", + "C11": "PRCXI_10ul_eTips_tipspot_C11", + "D11": "PRCXI_10ul_eTips_tipspot_D11", + "E11": "PRCXI_10ul_eTips_tipspot_E11", + "F11": "PRCXI_10ul_eTips_tipspot_F11", + "G11": "PRCXI_10ul_eTips_tipspot_G11", + "H11": "PRCXI_10ul_eTips_tipspot_H11", + "A12": "PRCXI_10ul_eTips_tipspot_A12", + "B12": "PRCXI_10ul_eTips_tipspot_B12", + "C12": "PRCXI_10ul_eTips_tipspot_C12", + "D12": "PRCXI_10ul_eTips_tipspot_D12", + "E12": "PRCXI_10ul_eTips_tipspot_E12", + "F12": "PRCXI_10ul_eTips_tipspot_F12", + "G12": "PRCXI_10ul_eTips_tipspot_G12", + "H12": "PRCXI_10ul_eTips_tipspot_H12" + } + }, + "data": { + "Material": { + "uuid": "068b3815e36b4a72a59bae017011b29f", + "Code": "ZX-001-10+", + "Name": "10μL加长 Tip头", + "SupplyType": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_A1", + "uuid": "5a30d93b-8c03-4541-a7ca-25bde6a69262", + "name": "PRCXI_10ul_eTips_tipspot_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 7.97, + "y": 68.0, + "z": 2.0 + }, + "position3d": { + "x": 7.97, + "y": 68.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_A1#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_A1#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_A1#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_A1#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 7.97, + "y": 68.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_B1", + "uuid": "cf82c0d4-4d93-46ad-9384-e23787739d28", + "name": "PRCXI_10ul_eTips_tipspot_B1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 7.97, + "y": 59.0, + "z": 2.0 + }, + "position3d": { + "x": 7.97, + "y": 59.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_B1#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_B1#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_B1#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_B1#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 7.97, + "y": 59.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_C1", + "uuid": "cc3b7ab9-e7fe-4ea7-95de-76dfbca33f3e", + "name": "PRCXI_10ul_eTips_tipspot_C1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 7.97, + "y": 50.0, + "z": 2.0 + }, + "position3d": { + "x": 7.97, + "y": 50.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_C1#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_C1#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_C1#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_C1#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 7.97, + "y": 50.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_D1", + "uuid": "5d101ba7-a39b-48d2-b740-772592a1f48a", + "name": "PRCXI_10ul_eTips_tipspot_D1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 7.97, + "y": 41.0, + "z": 2.0 + }, + "position3d": { + "x": 7.97, + "y": 41.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_D1#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_D1#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_D1#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_D1#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 7.97, + "y": 41.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_E1", + "uuid": "2aa4a78f-d5e9-4c11-b87b-0dff6382ee96", + "name": "PRCXI_10ul_eTips_tipspot_E1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 7.97, + "y": 32.0, + "z": 2.0 + }, + "position3d": { + "x": 7.97, + "y": 32.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_E1#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_E1#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_E1#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_E1#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 7.97, + "y": 32.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_F1", + "uuid": "990d6ecc-c53d-4669-ba3a-9d6d8697ac18", + "name": "PRCXI_10ul_eTips_tipspot_F1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 7.97, + "y": 23.0, + "z": 2.0 + }, + "position3d": { + "x": 7.97, + "y": 23.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_F1#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_F1#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_F1#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_F1#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 7.97, + "y": 23.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_G1", + "uuid": "f3333668-537b-44fb-8c85-df1d2670be57", + "name": "PRCXI_10ul_eTips_tipspot_G1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 7.97, + "y": 14.0, + "z": 2.0 + }, + "position3d": { + "x": 7.97, + "y": 14.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_G1#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_G1#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_G1#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_G1#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 7.97, + "y": 14.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_H1", + "uuid": "fa8bb2da-b4e7-4c4c-b492-c7874c0adb98", + "name": "PRCXI_10ul_eTips_tipspot_H1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 7.97, + "y": 5.0, + "z": 2.0 + }, + "position3d": { + "x": 7.97, + "y": 5.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_H1#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_H1#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_H1#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_H1#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 7.97, + "y": 5.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_A2", + "uuid": "f40d29e9-cf74-46ff-93b1-e3aff9cd1b96", + "name": "PRCXI_10ul_eTips_tipspot_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 16.97, + "y": 68.0, + "z": 2.0 + }, + "position3d": { + "x": 16.97, + "y": 68.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_A2#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_A2#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_A2#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_A2#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 16.97, + "y": 68.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_B2", + "uuid": "847a1b62-46fc-4bd4-8e03-53458f18c8d0", + "name": "PRCXI_10ul_eTips_tipspot_B2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 16.97, + "y": 59.0, + "z": 2.0 + }, + "position3d": { + "x": 16.97, + "y": 59.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_B2#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_B2#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_B2#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_B2#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 16.97, + "y": 59.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_C2", + "uuid": "f5a78f17-58c6-4dca-a398-6d05eb71630c", + "name": "PRCXI_10ul_eTips_tipspot_C2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 16.97, + "y": 50.0, + "z": 2.0 + }, + "position3d": { + "x": 16.97, + "y": 50.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_C2#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_C2#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_C2#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_C2#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 16.97, + "y": 50.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_D2", + "uuid": "3dd69e3a-806f-4f8e-b04a-a4af9ec06e2d", + "name": "PRCXI_10ul_eTips_tipspot_D2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 16.97, + "y": 41.0, + "z": 2.0 + }, + "position3d": { + "x": 16.97, + "y": 41.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_D2#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_D2#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_D2#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_D2#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 16.97, + "y": 41.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_E2", + "uuid": "a4b3d2d7-964e-4be7-b1e7-875bb714d5cd", + "name": "PRCXI_10ul_eTips_tipspot_E2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 16.97, + "y": 32.0, + "z": 2.0 + }, + "position3d": { + "x": 16.97, + "y": 32.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_E2#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_E2#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_E2#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_E2#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 16.97, + "y": 32.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_F2", + "uuid": "8e8dc9d4-ca14-410e-8791-6631944cae90", + "name": "PRCXI_10ul_eTips_tipspot_F2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 16.97, + "y": 23.0, + "z": 2.0 + }, + "position3d": { + "x": 16.97, + "y": 23.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_F2#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_F2#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_F2#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_F2#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 16.97, + "y": 23.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_G2", + "uuid": "4f85667d-5a08-46a7-8152-bccd2bac0d08", + "name": "PRCXI_10ul_eTips_tipspot_G2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 16.97, + "y": 14.0, + "z": 2.0 + }, + "position3d": { + "x": 16.97, + "y": 14.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_G2#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_G2#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_G2#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_G2#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 16.97, + "y": 14.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_H2", + "uuid": "d136d715-4d4d-4cb7-9004-536956f20cbc", + "name": "PRCXI_10ul_eTips_tipspot_H2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 16.97, + "y": 5.0, + "z": 2.0 + }, + "position3d": { + "x": 16.97, + "y": 5.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_H2#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_H2#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_H2#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_H2#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 16.97, + "y": 5.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_A3", + "uuid": "8f074a37-1d52-4a17-a6b8-e74609e840b6", + "name": "PRCXI_10ul_eTips_tipspot_A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 25.97, + "y": 68.0, + "z": 2.0 + }, + "position3d": { + "x": 25.97, + "y": 68.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_A3#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_A3#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_A3#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_A3#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 25.97, + "y": 68.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_B3", + "uuid": "98931515-3279-4810-a114-87de5f5f7d93", + "name": "PRCXI_10ul_eTips_tipspot_B3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 25.97, + "y": 59.0, + "z": 2.0 + }, + "position3d": { + "x": 25.97, + "y": 59.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_B3#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_B3#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_B3#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_B3#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 25.97, + "y": 59.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_C3", + "uuid": "45388c2a-bac3-4ec0-8fdc-7db1c094d944", + "name": "PRCXI_10ul_eTips_tipspot_C3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 25.97, + "y": 50.0, + "z": 2.0 + }, + "position3d": { + "x": 25.97, + "y": 50.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_C3#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_C3#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_C3#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_C3#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 25.97, + "y": 50.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_D3", + "uuid": "c25996b5-7967-4566-b025-f702adfed722", + "name": "PRCXI_10ul_eTips_tipspot_D3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 25.97, + "y": 41.0, + "z": 2.0 + }, + "position3d": { + "x": 25.97, + "y": 41.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_D3#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_D3#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_D3#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_D3#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 25.97, + "y": 41.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_E3", + "uuid": "713e4544-7909-4b22-8e20-e8ce9b791e5d", + "name": "PRCXI_10ul_eTips_tipspot_E3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 25.97, + "y": 32.0, + "z": 2.0 + }, + "position3d": { + "x": 25.97, + "y": 32.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_E3#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_E3#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_E3#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_E3#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 25.97, + "y": 32.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_F3", + "uuid": "9256e9e8-03f0-4e79-8b97-65a982c43c89", + "name": "PRCXI_10ul_eTips_tipspot_F3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 25.97, + "y": 23.0, + "z": 2.0 + }, + "position3d": { + "x": 25.97, + "y": 23.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_F3#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_F3#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_F3#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_F3#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 25.97, + "y": 23.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_G3", + "uuid": "6dc39bf5-dbd2-4799-bad7-3bcd29f07b7e", + "name": "PRCXI_10ul_eTips_tipspot_G3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 25.97, + "y": 14.0, + "z": 2.0 + }, + "position3d": { + "x": 25.97, + "y": 14.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_G3#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_G3#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_G3#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_G3#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 25.97, + "y": 14.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_H3", + "uuid": "edd57bfc-8242-4f1d-8b90-1e2d24627d4e", + "name": "PRCXI_10ul_eTips_tipspot_H3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 25.97, + "y": 5.0, + "z": 2.0 + }, + "position3d": { + "x": 25.97, + "y": 5.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_H3#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_H3#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_H3#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_H3#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 25.97, + "y": 5.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_A4", + "uuid": "9877df61-1630-4c42-ab54-11ee263e30a1", + "name": "PRCXI_10ul_eTips_tipspot_A4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 34.97, + "y": 68.0, + "z": 2.0 + }, + "position3d": { + "x": 34.97, + "y": 68.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_A4#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_A4#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_A4#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_A4#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 34.97, + "y": 68.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_B4", + "uuid": "e7bdb3ff-9136-46d4-9613-c13ae4795a33", + "name": "PRCXI_10ul_eTips_tipspot_B4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 34.97, + "y": 59.0, + "z": 2.0 + }, + "position3d": { + "x": 34.97, + "y": 59.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_B4#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_B4#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_B4#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_B4#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 34.97, + "y": 59.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_C4", + "uuid": "3aad4d4d-9377-46a5-aeaf-727b95f5a0f4", + "name": "PRCXI_10ul_eTips_tipspot_C4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 34.97, + "y": 50.0, + "z": 2.0 + }, + "position3d": { + "x": 34.97, + "y": 50.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_C4#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_C4#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_C4#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_C4#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 34.97, + "y": 50.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_D4", + "uuid": "eae68442-24b6-4f6a-b787-6d644ba4dfe7", + "name": "PRCXI_10ul_eTips_tipspot_D4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 34.97, + "y": 41.0, + "z": 2.0 + }, + "position3d": { + "x": 34.97, + "y": 41.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_D4#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_D4#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_D4#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_D4#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 34.97, + "y": 41.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_E4", + "uuid": "eb062d5f-7d9b-4057-934b-c4ba9b129b8b", + "name": "PRCXI_10ul_eTips_tipspot_E4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 34.97, + "y": 32.0, + "z": 2.0 + }, + "position3d": { + "x": 34.97, + "y": 32.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_E4#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_E4#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_E4#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_E4#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 34.97, + "y": 32.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_F4", + "uuid": "51610662-a547-4720-aa58-9c538e669a27", + "name": "PRCXI_10ul_eTips_tipspot_F4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 34.97, + "y": 23.0, + "z": 2.0 + }, + "position3d": { + "x": 34.97, + "y": 23.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_F4#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_F4#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_F4#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_F4#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 34.97, + "y": 23.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_G4", + "uuid": "0fe9f6aa-8cdc-49f0-ab8c-9983cda04fab", + "name": "PRCXI_10ul_eTips_tipspot_G4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 34.97, + "y": 14.0, + "z": 2.0 + }, + "position3d": { + "x": 34.97, + "y": 14.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_G4#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_G4#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_G4#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_G4#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 34.97, + "y": 14.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_H4", + "uuid": "ee199324-b953-4c4b-aacc-5efdaa11f945", + "name": "PRCXI_10ul_eTips_tipspot_H4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 34.97, + "y": 5.0, + "z": 2.0 + }, + "position3d": { + "x": 34.97, + "y": 5.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_H4#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_H4#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_H4#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_H4#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 34.97, + "y": 5.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_A5", + "uuid": "9c64a4d6-33dd-4499-bbe1-c84586758fad", + "name": "PRCXI_10ul_eTips_tipspot_A5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 43.97, + "y": 68.0, + "z": 2.0 + }, + "position3d": { + "x": 43.97, + "y": 68.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_A5#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_A5#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_A5#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_A5#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 43.97, + "y": 68.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_B5", + "uuid": "b4f1c256-133f-41a1-b359-c80a690b1ce0", + "name": "PRCXI_10ul_eTips_tipspot_B5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 43.97, + "y": 59.0, + "z": 2.0 + }, + "position3d": { + "x": 43.97, + "y": 59.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_B5#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_B5#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_B5#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_B5#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 43.97, + "y": 59.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_C5", + "uuid": "37c9de1e-eb5b-4c13-8028-5c7ad614f8d8", + "name": "PRCXI_10ul_eTips_tipspot_C5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 43.97, + "y": 50.0, + "z": 2.0 + }, + "position3d": { + "x": 43.97, + "y": 50.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_C5#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_C5#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_C5#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_C5#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 43.97, + "y": 50.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_D5", + "uuid": "b85ffbe6-8747-4305-9fa5-a100700a6b75", + "name": "PRCXI_10ul_eTips_tipspot_D5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 43.97, + "y": 41.0, + "z": 2.0 + }, + "position3d": { + "x": 43.97, + "y": 41.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_D5#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_D5#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_D5#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_D5#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 43.97, + "y": 41.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_E5", + "uuid": "d9d9aa0e-81e7-4535-8aa4-32ac198dd60f", + "name": "PRCXI_10ul_eTips_tipspot_E5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 43.97, + "y": 32.0, + "z": 2.0 + }, + "position3d": { + "x": 43.97, + "y": 32.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_E5#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_E5#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_E5#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_E5#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 43.97, + "y": 32.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_F5", + "uuid": "08010c00-2842-4bb1-97c8-dcde5bb45d08", + "name": "PRCXI_10ul_eTips_tipspot_F5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 43.97, + "y": 23.0, + "z": 2.0 + }, + "position3d": { + "x": 43.97, + "y": 23.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_F5#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_F5#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_F5#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_F5#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 43.97, + "y": 23.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_G5", + "uuid": "2c506da3-1c88-4247-9f50-5f79b669d001", + "name": "PRCXI_10ul_eTips_tipspot_G5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 43.97, + "y": 14.0, + "z": 2.0 + }, + "position3d": { + "x": 43.97, + "y": 14.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_G5#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_G5#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_G5#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_G5#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 43.97, + "y": 14.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_H5", + "uuid": "7eef57ac-19db-403f-9010-31189eb2053d", + "name": "PRCXI_10ul_eTips_tipspot_H5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 43.97, + "y": 5.0, + "z": 2.0 + }, + "position3d": { + "x": 43.97, + "y": 5.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_H5#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_H5#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_H5#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_H5#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 43.97, + "y": 5.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_A6", + "uuid": "3ae9384a-bfff-4abf-9522-313da5b6d0c7", + "name": "PRCXI_10ul_eTips_tipspot_A6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 52.97, + "y": 68.0, + "z": 2.0 + }, + "position3d": { + "x": 52.97, + "y": 68.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_A6#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_A6#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_A6#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_A6#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 52.97, + "y": 68.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_B6", + "uuid": "cb7a144b-317d-4ae5-a3ea-037cf3b5fbe0", + "name": "PRCXI_10ul_eTips_tipspot_B6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 52.97, + "y": 59.0, + "z": 2.0 + }, + "position3d": { + "x": 52.97, + "y": 59.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_B6#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_B6#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_B6#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_B6#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 52.97, + "y": 59.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_C6", + "uuid": "37de1d1c-f56b-4328-8aa5-76c8239dae00", + "name": "PRCXI_10ul_eTips_tipspot_C6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 52.97, + "y": 50.0, + "z": 2.0 + }, + "position3d": { + "x": 52.97, + "y": 50.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_C6#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_C6#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_C6#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_C6#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 52.97, + "y": 50.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_D6", + "uuid": "b860764e-da38-463d-928c-3862acc6994b", + "name": "PRCXI_10ul_eTips_tipspot_D6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 52.97, + "y": 41.0, + "z": 2.0 + }, + "position3d": { + "x": 52.97, + "y": 41.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_D6#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_D6#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_D6#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_D6#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 52.97, + "y": 41.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_E6", + "uuid": "82c7a20a-3f41-4f6c-90f7-412314153718", + "name": "PRCXI_10ul_eTips_tipspot_E6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 52.97, + "y": 32.0, + "z": 2.0 + }, + "position3d": { + "x": 52.97, + "y": 32.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_E6#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_E6#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_E6#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_E6#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 52.97, + "y": 32.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_F6", + "uuid": "253b35a0-e296-41d1-b2d7-8eb9b6578c9d", + "name": "PRCXI_10ul_eTips_tipspot_F6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 52.97, + "y": 23.0, + "z": 2.0 + }, + "position3d": { + "x": 52.97, + "y": 23.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_F6#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_F6#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_F6#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_F6#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 52.97, + "y": 23.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_G6", + "uuid": "cd24ba85-c578-4941-89be-382cde470832", + "name": "PRCXI_10ul_eTips_tipspot_G6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 52.97, + "y": 14.0, + "z": 2.0 + }, + "position3d": { + "x": 52.97, + "y": 14.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_G6#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_G6#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_G6#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_G6#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 52.97, + "y": 14.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_H6", + "uuid": "0fbce5ff-9ec6-413c-8fb1-d0ed71ee9074", + "name": "PRCXI_10ul_eTips_tipspot_H6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 52.97, + "y": 5.0, + "z": 2.0 + }, + "position3d": { + "x": 52.97, + "y": 5.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_H6#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_H6#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_H6#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_H6#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 52.97, + "y": 5.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_A7", + "uuid": "f2ff5d1c-6b65-4412-b9f6-5dba60941465", + "name": "PRCXI_10ul_eTips_tipspot_A7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 61.97, + "y": 68.0, + "z": 2.0 + }, + "position3d": { + "x": 61.97, + "y": 68.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_A7#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_A7#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_A7#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_A7#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 61.97, + "y": 68.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_B7", + "uuid": "65496994-a203-4608-98ef-920513b59814", + "name": "PRCXI_10ul_eTips_tipspot_B7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 61.97, + "y": 59.0, + "z": 2.0 + }, + "position3d": { + "x": 61.97, + "y": 59.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_B7#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_B7#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_B7#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_B7#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 61.97, + "y": 59.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_C7", + "uuid": "ebc31727-d4e8-4555-805e-0fe273cad72e", + "name": "PRCXI_10ul_eTips_tipspot_C7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 61.97, + "y": 50.0, + "z": 2.0 + }, + "position3d": { + "x": 61.97, + "y": 50.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_C7#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_C7#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_C7#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_C7#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 61.97, + "y": 50.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_D7", + "uuid": "755da6a8-51d5-45ff-87dc-d78e4d0c5580", + "name": "PRCXI_10ul_eTips_tipspot_D7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 61.97, + "y": 41.0, + "z": 2.0 + }, + "position3d": { + "x": 61.97, + "y": 41.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_D7#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_D7#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_D7#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_D7#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 61.97, + "y": 41.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_E7", + "uuid": "182f99ea-ec9d-4c1e-9a8d-6454dfe8bb9d", + "name": "PRCXI_10ul_eTips_tipspot_E7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 61.97, + "y": 32.0, + "z": 2.0 + }, + "position3d": { + "x": 61.97, + "y": 32.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_E7#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_E7#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_E7#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_E7#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 61.97, + "y": 32.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_F7", + "uuid": "42bbe7dc-2bc1-4a04-a5ed-1442054c03d1", + "name": "PRCXI_10ul_eTips_tipspot_F7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 61.97, + "y": 23.0, + "z": 2.0 + }, + "position3d": { + "x": 61.97, + "y": 23.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_F7#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_F7#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_F7#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_F7#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 61.97, + "y": 23.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_G7", + "uuid": "66938cbe-ace6-4ee2-a5d2-9d90f915488d", + "name": "PRCXI_10ul_eTips_tipspot_G7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 61.97, + "y": 14.0, + "z": 2.0 + }, + "position3d": { + "x": 61.97, + "y": 14.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_G7#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_G7#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_G7#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_G7#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 61.97, + "y": 14.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_H7", + "uuid": "b3e8d2c6-561b-4c97-bcfc-521ae85022b5", + "name": "PRCXI_10ul_eTips_tipspot_H7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 61.97, + "y": 5.0, + "z": 2.0 + }, + "position3d": { + "x": 61.97, + "y": 5.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_H7#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_H7#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_H7#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_H7#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 61.97, + "y": 5.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_A8", + "uuid": "fb745569-c228-4b27-a1f4-99d29c3c7747", + "name": "PRCXI_10ul_eTips_tipspot_A8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 70.97, + "y": 68.0, + "z": 2.0 + }, + "position3d": { + "x": 70.97, + "y": 68.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_A8#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_A8#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_A8#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_A8#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 70.97, + "y": 68.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_B8", + "uuid": "1c60034c-1094-4066-856f-f62b96aea732", + "name": "PRCXI_10ul_eTips_tipspot_B8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 70.97, + "y": 59.0, + "z": 2.0 + }, + "position3d": { + "x": 70.97, + "y": 59.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_B8#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_B8#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_B8#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_B8#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 70.97, + "y": 59.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_C8", + "uuid": "d86f50ad-71c6-4914-ac00-4dd716a1251a", + "name": "PRCXI_10ul_eTips_tipspot_C8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 70.97, + "y": 50.0, + "z": 2.0 + }, + "position3d": { + "x": 70.97, + "y": 50.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_C8#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_C8#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_C8#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_C8#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 70.97, + "y": 50.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_D8", + "uuid": "4ddc3544-6549-4b53-b8f2-89ee97b736dd", + "name": "PRCXI_10ul_eTips_tipspot_D8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 70.97, + "y": 41.0, + "z": 2.0 + }, + "position3d": { + "x": 70.97, + "y": 41.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_D8#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_D8#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_D8#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_D8#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 70.97, + "y": 41.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_E8", + "uuid": "2cdf8cc0-a273-4200-b1d3-ffc841d87901", + "name": "PRCXI_10ul_eTips_tipspot_E8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 70.97, + "y": 32.0, + "z": 2.0 + }, + "position3d": { + "x": 70.97, + "y": 32.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_E8#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_E8#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_E8#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_E8#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 70.97, + "y": 32.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_F8", + "uuid": "d8f5000a-8a5d-471c-a03e-ebc0c6cc636d", + "name": "PRCXI_10ul_eTips_tipspot_F8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 70.97, + "y": 23.0, + "z": 2.0 + }, + "position3d": { + "x": 70.97, + "y": 23.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_F8#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_F8#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_F8#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_F8#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 70.97, + "y": 23.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_G8", + "uuid": "df2dc163-9d36-420a-82fb-8cbf906e7ccc", + "name": "PRCXI_10ul_eTips_tipspot_G8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 70.97, + "y": 14.0, + "z": 2.0 + }, + "position3d": { + "x": 70.97, + "y": 14.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_G8#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_G8#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_G8#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_G8#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 70.97, + "y": 14.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_H8", + "uuid": "d01e5c67-6eda-4bbc-8841-056ee842f0f5", + "name": "PRCXI_10ul_eTips_tipspot_H8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 70.97, + "y": 5.0, + "z": 2.0 + }, + "position3d": { + "x": 70.97, + "y": 5.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_H8#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_H8#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_H8#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_H8#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 70.97, + "y": 5.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_A9", + "uuid": "ddfd6255-4283-4ba6-932f-e3c4cbf72abd", + "name": "PRCXI_10ul_eTips_tipspot_A9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 79.97, + "y": 68.0, + "z": 2.0 + }, + "position3d": { + "x": 79.97, + "y": 68.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_A9#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_A9#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_A9#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_A9#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 79.97, + "y": 68.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_B9", + "uuid": "96b92372-1139-4f65-bc9d-644514d6b42a", + "name": "PRCXI_10ul_eTips_tipspot_B9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 79.97, + "y": 59.0, + "z": 2.0 + }, + "position3d": { + "x": 79.97, + "y": 59.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_B9#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_B9#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_B9#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_B9#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 79.97, + "y": 59.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_C9", + "uuid": "546fc7a0-d5d4-442c-af35-397acdebc05c", + "name": "PRCXI_10ul_eTips_tipspot_C9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 79.97, + "y": 50.0, + "z": 2.0 + }, + "position3d": { + "x": 79.97, + "y": 50.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_C9#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_C9#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_C9#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_C9#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 79.97, + "y": 50.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_D9", + "uuid": "78ab22b8-a80e-4b1a-b088-c045b875c627", + "name": "PRCXI_10ul_eTips_tipspot_D9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 79.97, + "y": 41.0, + "z": 2.0 + }, + "position3d": { + "x": 79.97, + "y": 41.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_D9#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_D9#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_D9#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_D9#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 79.97, + "y": 41.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_E9", + "uuid": "59e106e5-87c1-49a9-9bcb-1a10ee863c7f", + "name": "PRCXI_10ul_eTips_tipspot_E9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 79.97, + "y": 32.0, + "z": 2.0 + }, + "position3d": { + "x": 79.97, + "y": 32.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_E9#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_E9#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_E9#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_E9#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 79.97, + "y": 32.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_F9", + "uuid": "c9af5457-a826-4061-b5fc-a7baa13f30c4", + "name": "PRCXI_10ul_eTips_tipspot_F9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 79.97, + "y": 23.0, + "z": 2.0 + }, + "position3d": { + "x": 79.97, + "y": 23.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_F9#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_F9#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_F9#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_F9#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 79.97, + "y": 23.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_G9", + "uuid": "54d0bc03-259d-4bc6-ba56-1968d70dd0b8", + "name": "PRCXI_10ul_eTips_tipspot_G9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 79.97, + "y": 14.0, + "z": 2.0 + }, + "position3d": { + "x": 79.97, + "y": 14.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_G9#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_G9#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_G9#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_G9#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 79.97, + "y": 14.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_H9", + "uuid": "4850ca72-2822-40ee-bbb3-28636c77cc7e", + "name": "PRCXI_10ul_eTips_tipspot_H9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 79.97, + "y": 5.0, + "z": 2.0 + }, + "position3d": { + "x": 79.97, + "y": 5.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_H9#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_H9#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_H9#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_H9#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 79.97, + "y": 5.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_A10", + "uuid": "96b1b3dc-cbd2-406d-8819-67ce7ee63619", + "name": "PRCXI_10ul_eTips_tipspot_A10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 88.97, + "y": 68.0, + "z": 2.0 + }, + "position3d": { + "x": 88.97, + "y": 68.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_A10#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_A10#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_A10#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_A10#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 88.97, + "y": 68.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_B10", + "uuid": "9940fd13-daea-4ba4-b535-077b533a8b4d", + "name": "PRCXI_10ul_eTips_tipspot_B10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 88.97, + "y": 59.0, + "z": 2.0 + }, + "position3d": { + "x": 88.97, + "y": 59.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_B10#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_B10#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_B10#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_B10#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 88.97, + "y": 59.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_C10", + "uuid": "d40f890f-2bef-41df-b385-72b189b2f851", + "name": "PRCXI_10ul_eTips_tipspot_C10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 88.97, + "y": 50.0, + "z": 2.0 + }, + "position3d": { + "x": 88.97, + "y": 50.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_C10#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_C10#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_C10#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_C10#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 88.97, + "y": 50.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_D10", + "uuid": "8cf7dc08-5663-4ea8-8dfb-aa6fcb7c9610", + "name": "PRCXI_10ul_eTips_tipspot_D10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 88.97, + "y": 41.0, + "z": 2.0 + }, + "position3d": { + "x": 88.97, + "y": 41.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_D10#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_D10#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_D10#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_D10#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 88.97, + "y": 41.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_E10", + "uuid": "034c31c4-095f-4525-ba9e-2948ab731412", + "name": "PRCXI_10ul_eTips_tipspot_E10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 88.97, + "y": 32.0, + "z": 2.0 + }, + "position3d": { + "x": 88.97, + "y": 32.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_E10#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_E10#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_E10#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_E10#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 88.97, + "y": 32.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_F10", + "uuid": "5c059732-81c5-4f0e-bc65-8e4701af5310", + "name": "PRCXI_10ul_eTips_tipspot_F10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 88.97, + "y": 23.0, + "z": 2.0 + }, + "position3d": { + "x": 88.97, + "y": 23.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_F10#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_F10#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_F10#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_F10#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 88.97, + "y": 23.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_G10", + "uuid": "1d9de190-15e1-4004-bfca-1d9eed3aacfc", + "name": "PRCXI_10ul_eTips_tipspot_G10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 88.97, + "y": 14.0, + "z": 2.0 + }, + "position3d": { + "x": 88.97, + "y": 14.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_G10#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_G10#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_G10#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_G10#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 88.97, + "y": 14.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_H10", + "uuid": "40a72247-99f6-4a92-b571-11b7f2ae3038", + "name": "PRCXI_10ul_eTips_tipspot_H10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 88.97, + "y": 5.0, + "z": 2.0 + }, + "position3d": { + "x": 88.97, + "y": 5.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_H10#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_H10#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_H10#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_H10#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 88.97, + "y": 5.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_A11", + "uuid": "c02be0c4-9c7a-4d15-824e-9824403a2719", + "name": "PRCXI_10ul_eTips_tipspot_A11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 97.97, + "y": 68.0, + "z": 2.0 + }, + "position3d": { + "x": 97.97, + "y": 68.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_A11#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_A11#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_A11#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_A11#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 97.97, + "y": 68.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_B11", + "uuid": "5aa58b3c-b6ab-491e-ac27-e2042a795a67", + "name": "PRCXI_10ul_eTips_tipspot_B11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 97.97, + "y": 59.0, + "z": 2.0 + }, + "position3d": { + "x": 97.97, + "y": 59.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_B11#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_B11#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_B11#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_B11#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 97.97, + "y": 59.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_C11", + "uuid": "db8de46d-97e7-4958-8d7e-a4d2d81ec2f8", + "name": "PRCXI_10ul_eTips_tipspot_C11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 97.97, + "y": 50.0, + "z": 2.0 + }, + "position3d": { + "x": 97.97, + "y": 50.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_C11#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_C11#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_C11#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_C11#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 97.97, + "y": 50.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_D11", + "uuid": "dd5125f5-ac40-46c7-9d6e-f55c6006a8f7", + "name": "PRCXI_10ul_eTips_tipspot_D11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 97.97, + "y": 41.0, + "z": 2.0 + }, + "position3d": { + "x": 97.97, + "y": 41.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_D11#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_D11#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_D11#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_D11#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 97.97, + "y": 41.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_E11", + "uuid": "5cdf282f-001a-41ab-83c3-24ae5841f98a", + "name": "PRCXI_10ul_eTips_tipspot_E11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 97.97, + "y": 32.0, + "z": 2.0 + }, + "position3d": { + "x": 97.97, + "y": 32.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_E11#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_E11#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_E11#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_E11#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 97.97, + "y": 32.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_F11", + "uuid": "053c7af4-8a15-4e6d-b8e7-3fb425d5cc3d", + "name": "PRCXI_10ul_eTips_tipspot_F11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 97.97, + "y": 23.0, + "z": 2.0 + }, + "position3d": { + "x": 97.97, + "y": 23.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_F11#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_F11#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_F11#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_F11#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 97.97, + "y": 23.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_G11", + "uuid": "58a37bbf-bcf8-4c1e-b7d9-b1b511e464fc", + "name": "PRCXI_10ul_eTips_tipspot_G11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 97.97, + "y": 14.0, + "z": 2.0 + }, + "position3d": { + "x": 97.97, + "y": 14.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_G11#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_G11#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_G11#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_G11#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 97.97, + "y": 14.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_H11", + "uuid": "e2ff7305-2f8e-4b36-a899-9a770452e00f", + "name": "PRCXI_10ul_eTips_tipspot_H11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 97.97, + "y": 5.0, + "z": 2.0 + }, + "position3d": { + "x": 97.97, + "y": 5.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_H11#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_H11#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_H11#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_H11#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 97.97, + "y": 5.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_A12", + "uuid": "f1a07642-7a20-406b-92e4-aaac5eeef058", + "name": "PRCXI_10ul_eTips_tipspot_A12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 106.97, + "y": 68.0, + "z": 2.0 + }, + "position3d": { + "x": 106.97, + "y": 68.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_A12#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_A12#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_A12#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_A12#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 106.97, + "y": 68.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_B12", + "uuid": "d46ccaf9-cd78-4341-ab2c-ed883fc6127c", + "name": "PRCXI_10ul_eTips_tipspot_B12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 106.97, + "y": 59.0, + "z": 2.0 + }, + "position3d": { + "x": 106.97, + "y": 59.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_B12#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_B12#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_B12#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_B12#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 106.97, + "y": 59.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_C12", + "uuid": "33ba9dc9-b4cc-49df-b9d0-458bd03c7301", + "name": "PRCXI_10ul_eTips_tipspot_C12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 106.97, + "y": 50.0, + "z": 2.0 + }, + "position3d": { + "x": 106.97, + "y": 50.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_C12#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_C12#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_C12#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_C12#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 106.97, + "y": 50.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_D12", + "uuid": "a408abc3-3931-44f4-acd0-566b895333a5", + "name": "PRCXI_10ul_eTips_tipspot_D12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 106.97, + "y": 41.0, + "z": 2.0 + }, + "position3d": { + "x": 106.97, + "y": 41.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_D12#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_D12#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_D12#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_D12#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 106.97, + "y": 41.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_E12", + "uuid": "9dec4104-0b22-4986-a56f-824b6db8c5c2", + "name": "PRCXI_10ul_eTips_tipspot_E12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 106.97, + "y": 32.0, + "z": 2.0 + }, + "position3d": { + "x": 106.97, + "y": 32.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_E12#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_E12#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_E12#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_E12#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 106.97, + "y": 32.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_F12", + "uuid": "71f19c2b-b3de-4691-9fd5-98e573898a22", + "name": "PRCXI_10ul_eTips_tipspot_F12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 106.97, + "y": 23.0, + "z": 2.0 + }, + "position3d": { + "x": 106.97, + "y": 23.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_F12#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_F12#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_F12#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_F12#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 106.97, + "y": 23.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_G12", + "uuid": "c4ef8324-35fd-47e2-acea-f251a62464a0", + "name": "PRCXI_10ul_eTips_tipspot_G12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 106.97, + "y": 14.0, + "z": 2.0 + }, + "position3d": { + "x": 106.97, + "y": 14.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_G12#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_G12#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_G12#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_G12#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 106.97, + "y": 14.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_10ul_eTips_tipspot_H12", + "uuid": "f5c4a075-2574-48dc-addc-e75505def2e0", + "name": "PRCXI_10ul_eTips_tipspot_H12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ace61805-10cc-4738-8ce6-c3c1f0260461", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 106.97, + "y": 5.0, + "z": 2.0 + }, + "position3d": { + "x": 106.97, + "y": 5.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_H12#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_H12#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + }, + "tip_state": { + "thing": "PRCXI_10ul_eTips_tipspot_H12#0", + "max_volume": 10, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_10ul_eTips_tipspot_H12#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 10, + "fitting_depth": 45.1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 106.97, + "y": 5.0, + "z": 2.0 + } + } + ] + }, + { + "id": "PRCXI_1250uL_Tips", + "category": [ + "prcxi", + "tip_racks" + ], + "class": { + "module": "unilabos.devices.liquid_handling.prcxi.prcxi_labware:PRCXI_1250uL_Tips", + "type": "pylabrobot" + }, + "description": "1250μL Tip头 (Code: ZX-001-1250)", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/prcxi/tip_racks.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "PRCXI_1250uL_Tips", + "uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "name": "PRCXI_1250uL_Tips", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "tip_rack", + "class": "", + "pose": { + "size": { + "depth": 107.67, + "width": 118.09, + "height": 80.7 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "PRCXI9300TipRack", + "size_x": 118.09, + "size_y": 80.7, + "size_z": 107.67, + "category": "tip_rack", + "model": "PRCXI_1250uL_Tips", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "PRCXI_1250uL_Tips_tipspot_A1", + "B1": "PRCXI_1250uL_Tips_tipspot_B1", + "C1": "PRCXI_1250uL_Tips_tipspot_C1", + "D1": "PRCXI_1250uL_Tips_tipspot_D1", + "E1": "PRCXI_1250uL_Tips_tipspot_E1", + "F1": "PRCXI_1250uL_Tips_tipspot_F1", + "G1": "PRCXI_1250uL_Tips_tipspot_G1", + "H1": "PRCXI_1250uL_Tips_tipspot_H1", + "A2": "PRCXI_1250uL_Tips_tipspot_A2", + "B2": "PRCXI_1250uL_Tips_tipspot_B2", + "C2": "PRCXI_1250uL_Tips_tipspot_C2", + "D2": "PRCXI_1250uL_Tips_tipspot_D2", + "E2": "PRCXI_1250uL_Tips_tipspot_E2", + "F2": "PRCXI_1250uL_Tips_tipspot_F2", + "G2": "PRCXI_1250uL_Tips_tipspot_G2", + "H2": "PRCXI_1250uL_Tips_tipspot_H2", + "A3": "PRCXI_1250uL_Tips_tipspot_A3", + "B3": "PRCXI_1250uL_Tips_tipspot_B3", + "C3": "PRCXI_1250uL_Tips_tipspot_C3", + "D3": "PRCXI_1250uL_Tips_tipspot_D3", + "E3": "PRCXI_1250uL_Tips_tipspot_E3", + "F3": "PRCXI_1250uL_Tips_tipspot_F3", + "G3": "PRCXI_1250uL_Tips_tipspot_G3", + "H3": "PRCXI_1250uL_Tips_tipspot_H3", + "A4": "PRCXI_1250uL_Tips_tipspot_A4", + "B4": "PRCXI_1250uL_Tips_tipspot_B4", + "C4": "PRCXI_1250uL_Tips_tipspot_C4", + "D4": "PRCXI_1250uL_Tips_tipspot_D4", + "E4": "PRCXI_1250uL_Tips_tipspot_E4", + "F4": "PRCXI_1250uL_Tips_tipspot_F4", + "G4": "PRCXI_1250uL_Tips_tipspot_G4", + "H4": "PRCXI_1250uL_Tips_tipspot_H4", + "A5": "PRCXI_1250uL_Tips_tipspot_A5", + "B5": "PRCXI_1250uL_Tips_tipspot_B5", + "C5": "PRCXI_1250uL_Tips_tipspot_C5", + "D5": "PRCXI_1250uL_Tips_tipspot_D5", + "E5": "PRCXI_1250uL_Tips_tipspot_E5", + "F5": "PRCXI_1250uL_Tips_tipspot_F5", + "G5": "PRCXI_1250uL_Tips_tipspot_G5", + "H5": "PRCXI_1250uL_Tips_tipspot_H5", + "A6": "PRCXI_1250uL_Tips_tipspot_A6", + "B6": "PRCXI_1250uL_Tips_tipspot_B6", + "C6": "PRCXI_1250uL_Tips_tipspot_C6", + "D6": "PRCXI_1250uL_Tips_tipspot_D6", + "E6": "PRCXI_1250uL_Tips_tipspot_E6", + "F6": "PRCXI_1250uL_Tips_tipspot_F6", + "G6": "PRCXI_1250uL_Tips_tipspot_G6", + "H6": "PRCXI_1250uL_Tips_tipspot_H6", + "A7": "PRCXI_1250uL_Tips_tipspot_A7", + "B7": "PRCXI_1250uL_Tips_tipspot_B7", + "C7": "PRCXI_1250uL_Tips_tipspot_C7", + "D7": "PRCXI_1250uL_Tips_tipspot_D7", + "E7": "PRCXI_1250uL_Tips_tipspot_E7", + "F7": "PRCXI_1250uL_Tips_tipspot_F7", + "G7": "PRCXI_1250uL_Tips_tipspot_G7", + "H7": "PRCXI_1250uL_Tips_tipspot_H7", + "A8": "PRCXI_1250uL_Tips_tipspot_A8", + "B8": "PRCXI_1250uL_Tips_tipspot_B8", + "C8": "PRCXI_1250uL_Tips_tipspot_C8", + "D8": "PRCXI_1250uL_Tips_tipspot_D8", + "E8": "PRCXI_1250uL_Tips_tipspot_E8", + "F8": "PRCXI_1250uL_Tips_tipspot_F8", + "G8": "PRCXI_1250uL_Tips_tipspot_G8", + "H8": "PRCXI_1250uL_Tips_tipspot_H8", + "A9": "PRCXI_1250uL_Tips_tipspot_A9", + "B9": "PRCXI_1250uL_Tips_tipspot_B9", + "C9": "PRCXI_1250uL_Tips_tipspot_C9", + "D9": "PRCXI_1250uL_Tips_tipspot_D9", + "E9": "PRCXI_1250uL_Tips_tipspot_E9", + "F9": "PRCXI_1250uL_Tips_tipspot_F9", + "G9": "PRCXI_1250uL_Tips_tipspot_G9", + "H9": "PRCXI_1250uL_Tips_tipspot_H9", + "A10": "PRCXI_1250uL_Tips_tipspot_A10", + "B10": "PRCXI_1250uL_Tips_tipspot_B10", + "C10": "PRCXI_1250uL_Tips_tipspot_C10", + "D10": "PRCXI_1250uL_Tips_tipspot_D10", + "E10": "PRCXI_1250uL_Tips_tipspot_E10", + "F10": "PRCXI_1250uL_Tips_tipspot_F10", + "G10": "PRCXI_1250uL_Tips_tipspot_G10", + "H10": "PRCXI_1250uL_Tips_tipspot_H10", + "A11": "PRCXI_1250uL_Tips_tipspot_A11", + "B11": "PRCXI_1250uL_Tips_tipspot_B11", + "C11": "PRCXI_1250uL_Tips_tipspot_C11", + "D11": "PRCXI_1250uL_Tips_tipspot_D11", + "E11": "PRCXI_1250uL_Tips_tipspot_E11", + "F11": "PRCXI_1250uL_Tips_tipspot_F11", + "G11": "PRCXI_1250uL_Tips_tipspot_G11", + "H11": "PRCXI_1250uL_Tips_tipspot_H11", + "A12": "PRCXI_1250uL_Tips_tipspot_A12", + "B12": "PRCXI_1250uL_Tips_tipspot_B12", + "C12": "PRCXI_1250uL_Tips_tipspot_C12", + "D12": "PRCXI_1250uL_Tips_tipspot_D12", + "E12": "PRCXI_1250uL_Tips_tipspot_E12", + "F12": "PRCXI_1250uL_Tips_tipspot_F12", + "G12": "PRCXI_1250uL_Tips_tipspot_G12", + "H12": "PRCXI_1250uL_Tips_tipspot_H12" + } + }, + "data": { + "Material": { + "uuid": "7960f49ddfe9448abadda89bd1556936", + "Code": "ZX-001-1250", + "Name": "1250μL Tip头", + "SupplyType": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_A1", + "uuid": "26fc6c4d-118a-4e06-a734-260470ba0c44", + "name": "PRCXI_1250uL_Tips_tipspot_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 5.57, + "y": 67.875, + "z": 2.0 + }, + "position3d": { + "x": 5.57, + "y": 67.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_A1#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_A1#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_A1#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_A1#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 5.57, + "y": 67.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_B1", + "uuid": "9a958900-adf7-44d3-a3ff-f3eb044a41c7", + "name": "PRCXI_1250uL_Tips_tipspot_B1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 5.57, + "y": 58.875, + "z": 2.0 + }, + "position3d": { + "x": 5.57, + "y": 58.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_B1#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_B1#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_B1#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_B1#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 5.57, + "y": 58.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_C1", + "uuid": "3db624ae-2b9a-4785-9ff1-5880f57e1a30", + "name": "PRCXI_1250uL_Tips_tipspot_C1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 5.57, + "y": 49.875, + "z": 2.0 + }, + "position3d": { + "x": 5.57, + "y": 49.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_C1#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_C1#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_C1#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_C1#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 5.57, + "y": 49.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_D1", + "uuid": "4891fe10-fb8e-41ec-9abf-31bf8a2e5216", + "name": "PRCXI_1250uL_Tips_tipspot_D1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 5.57, + "y": 40.875, + "z": 2.0 + }, + "position3d": { + "x": 5.57, + "y": 40.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_D1#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_D1#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_D1#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_D1#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 5.57, + "y": 40.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_E1", + "uuid": "73bb7b5e-456b-49c3-b21d-3df0f9b46478", + "name": "PRCXI_1250uL_Tips_tipspot_E1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 5.57, + "y": 31.875, + "z": 2.0 + }, + "position3d": { + "x": 5.57, + "y": 31.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_E1#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_E1#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_E1#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_E1#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 5.57, + "y": 31.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_F1", + "uuid": "3aebe4e8-d8f5-423b-8d6a-91249f9a2609", + "name": "PRCXI_1250uL_Tips_tipspot_F1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 5.57, + "y": 22.875, + "z": 2.0 + }, + "position3d": { + "x": 5.57, + "y": 22.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_F1#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_F1#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_F1#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_F1#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 5.57, + "y": 22.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_G1", + "uuid": "1299a769-e6dd-4af3-ac18-368f6fbe479c", + "name": "PRCXI_1250uL_Tips_tipspot_G1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 5.57, + "y": 13.875, + "z": 2.0 + }, + "position3d": { + "x": 5.57, + "y": 13.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_G1#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_G1#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_G1#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_G1#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 5.57, + "y": 13.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_H1", + "uuid": "ea215a94-4d19-4e62-8a64-5d0b7731422b", + "name": "PRCXI_1250uL_Tips_tipspot_H1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 5.57, + "y": 4.875, + "z": 2.0 + }, + "position3d": { + "x": 5.57, + "y": 4.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_H1#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_H1#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_H1#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_H1#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 5.57, + "y": 4.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_A2", + "uuid": "950592c7-edd1-4a84-9ea8-eba60c99ef7c", + "name": "PRCXI_1250uL_Tips_tipspot_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 14.57, + "y": 67.875, + "z": 2.0 + }, + "position3d": { + "x": 14.57, + "y": 67.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_A2#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_A2#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_A2#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_A2#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 14.57, + "y": 67.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_B2", + "uuid": "d91023b8-7175-43d4-9f71-5cd08db71b8f", + "name": "PRCXI_1250uL_Tips_tipspot_B2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 14.57, + "y": 58.875, + "z": 2.0 + }, + "position3d": { + "x": 14.57, + "y": 58.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_B2#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_B2#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_B2#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_B2#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 14.57, + "y": 58.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_C2", + "uuid": "a2af57f8-4020-49bd-b4b2-21e750801fa0", + "name": "PRCXI_1250uL_Tips_tipspot_C2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 14.57, + "y": 49.875, + "z": 2.0 + }, + "position3d": { + "x": 14.57, + "y": 49.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_C2#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_C2#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_C2#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_C2#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 14.57, + "y": 49.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_D2", + "uuid": "be8cdc51-1e08-4253-ac33-fb6b46c3f5fd", + "name": "PRCXI_1250uL_Tips_tipspot_D2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 14.57, + "y": 40.875, + "z": 2.0 + }, + "position3d": { + "x": 14.57, + "y": 40.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_D2#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_D2#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_D2#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_D2#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 14.57, + "y": 40.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_E2", + "uuid": "9c1d157b-d1fd-4c4a-be91-4ae2bcd98a46", + "name": "PRCXI_1250uL_Tips_tipspot_E2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 14.57, + "y": 31.875, + "z": 2.0 + }, + "position3d": { + "x": 14.57, + "y": 31.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_E2#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_E2#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_E2#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_E2#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 14.57, + "y": 31.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_F2", + "uuid": "9867f6bc-e7e6-45d2-809d-7911eee834b0", + "name": "PRCXI_1250uL_Tips_tipspot_F2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 14.57, + "y": 22.875, + "z": 2.0 + }, + "position3d": { + "x": 14.57, + "y": 22.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_F2#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_F2#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_F2#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_F2#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 14.57, + "y": 22.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_G2", + "uuid": "6f4dfe0a-d26b-4b23-8fdd-d62f1ecd3c4b", + "name": "PRCXI_1250uL_Tips_tipspot_G2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 14.57, + "y": 13.875, + "z": 2.0 + }, + "position3d": { + "x": 14.57, + "y": 13.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_G2#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_G2#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_G2#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_G2#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 14.57, + "y": 13.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_H2", + "uuid": "c59266a9-7393-477a-a185-4d0d30db6642", + "name": "PRCXI_1250uL_Tips_tipspot_H2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 14.57, + "y": 4.875, + "z": 2.0 + }, + "position3d": { + "x": 14.57, + "y": 4.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_H2#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_H2#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_H2#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_H2#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 14.57, + "y": 4.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_A3", + "uuid": "612257c6-f184-4383-8e21-32a3a78b220e", + "name": "PRCXI_1250uL_Tips_tipspot_A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 23.57, + "y": 67.875, + "z": 2.0 + }, + "position3d": { + "x": 23.57, + "y": 67.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_A3#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_A3#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_A3#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_A3#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 23.57, + "y": 67.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_B3", + "uuid": "ac5fb4b4-371f-483f-9dc5-b4999141f13b", + "name": "PRCXI_1250uL_Tips_tipspot_B3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 23.57, + "y": 58.875, + "z": 2.0 + }, + "position3d": { + "x": 23.57, + "y": 58.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_B3#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_B3#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_B3#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_B3#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 23.57, + "y": 58.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_C3", + "uuid": "f2dc95ae-2195-4cc4-baed-1136f15a7503", + "name": "PRCXI_1250uL_Tips_tipspot_C3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 23.57, + "y": 49.875, + "z": 2.0 + }, + "position3d": { + "x": 23.57, + "y": 49.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_C3#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_C3#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_C3#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_C3#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 23.57, + "y": 49.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_D3", + "uuid": "e5d31195-61fd-4f32-a9d7-096db977c4ea", + "name": "PRCXI_1250uL_Tips_tipspot_D3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 23.57, + "y": 40.875, + "z": 2.0 + }, + "position3d": { + "x": 23.57, + "y": 40.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_D3#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_D3#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_D3#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_D3#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 23.57, + "y": 40.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_E3", + "uuid": "fa06bee9-a085-4e5f-a526-1e394558de97", + "name": "PRCXI_1250uL_Tips_tipspot_E3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 23.57, + "y": 31.875, + "z": 2.0 + }, + "position3d": { + "x": 23.57, + "y": 31.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_E3#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_E3#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_E3#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_E3#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 23.57, + "y": 31.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_F3", + "uuid": "daf31b4b-03cb-4ffd-b315-2938c5ce50b2", + "name": "PRCXI_1250uL_Tips_tipspot_F3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 23.57, + "y": 22.875, + "z": 2.0 + }, + "position3d": { + "x": 23.57, + "y": 22.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_F3#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_F3#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_F3#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_F3#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 23.57, + "y": 22.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_G3", + "uuid": "b47f13f3-fc20-4d8a-9daf-132d98184f1e", + "name": "PRCXI_1250uL_Tips_tipspot_G3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 23.57, + "y": 13.875, + "z": 2.0 + }, + "position3d": { + "x": 23.57, + "y": 13.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_G3#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_G3#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_G3#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_G3#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 23.57, + "y": 13.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_H3", + "uuid": "a1a389fe-8110-4cf7-8d97-c65545ef6aaf", + "name": "PRCXI_1250uL_Tips_tipspot_H3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 23.57, + "y": 4.875, + "z": 2.0 + }, + "position3d": { + "x": 23.57, + "y": 4.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_H3#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_H3#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_H3#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_H3#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 23.57, + "y": 4.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_A4", + "uuid": "b83225ad-f169-4e3d-ace7-55348a247212", + "name": "PRCXI_1250uL_Tips_tipspot_A4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 32.57, + "y": 67.875, + "z": 2.0 + }, + "position3d": { + "x": 32.57, + "y": 67.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_A4#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_A4#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_A4#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_A4#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 32.57, + "y": 67.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_B4", + "uuid": "0da413f1-00ff-410f-a374-e893f568b928", + "name": "PRCXI_1250uL_Tips_tipspot_B4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 32.57, + "y": 58.875, + "z": 2.0 + }, + "position3d": { + "x": 32.57, + "y": 58.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_B4#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_B4#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_B4#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_B4#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 32.57, + "y": 58.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_C4", + "uuid": "1d9cc9b0-53f6-48a5-88ed-345c0360b605", + "name": "PRCXI_1250uL_Tips_tipspot_C4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 32.57, + "y": 49.875, + "z": 2.0 + }, + "position3d": { + "x": 32.57, + "y": 49.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_C4#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_C4#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_C4#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_C4#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 32.57, + "y": 49.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_D4", + "uuid": "42e9ae5a-dbb1-4c87-9289-ce1852bbd57d", + "name": "PRCXI_1250uL_Tips_tipspot_D4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 32.57, + "y": 40.875, + "z": 2.0 + }, + "position3d": { + "x": 32.57, + "y": 40.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_D4#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_D4#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_D4#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_D4#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 32.57, + "y": 40.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_E4", + "uuid": "9c424ec5-ec18-4d58-a0de-633b18024b7d", + "name": "PRCXI_1250uL_Tips_tipspot_E4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 32.57, + "y": 31.875, + "z": 2.0 + }, + "position3d": { + "x": 32.57, + "y": 31.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_E4#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_E4#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_E4#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_E4#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 32.57, + "y": 31.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_F4", + "uuid": "5b72f2b2-5313-4799-b0f3-09a164527750", + "name": "PRCXI_1250uL_Tips_tipspot_F4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 32.57, + "y": 22.875, + "z": 2.0 + }, + "position3d": { + "x": 32.57, + "y": 22.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_F4#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_F4#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_F4#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_F4#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 32.57, + "y": 22.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_G4", + "uuid": "6d1c2ffc-5f95-4b81-96ab-ba32a1f769aa", + "name": "PRCXI_1250uL_Tips_tipspot_G4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 32.57, + "y": 13.875, + "z": 2.0 + }, + "position3d": { + "x": 32.57, + "y": 13.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_G4#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_G4#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_G4#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_G4#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 32.57, + "y": 13.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_H4", + "uuid": "53bf1b19-7de1-45ae-a6eb-a79316dbaa46", + "name": "PRCXI_1250uL_Tips_tipspot_H4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 32.57, + "y": 4.875, + "z": 2.0 + }, + "position3d": { + "x": 32.57, + "y": 4.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_H4#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_H4#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_H4#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_H4#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 32.57, + "y": 4.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_A5", + "uuid": "11e12a8c-9d62-4504-b0da-b11b07da7fdd", + "name": "PRCXI_1250uL_Tips_tipspot_A5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 41.57, + "y": 67.875, + "z": 2.0 + }, + "position3d": { + "x": 41.57, + "y": 67.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_A5#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_A5#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_A5#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_A5#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 41.57, + "y": 67.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_B5", + "uuid": "6247bad1-218a-4b4d-9bf2-cbe4d57144b1", + "name": "PRCXI_1250uL_Tips_tipspot_B5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 41.57, + "y": 58.875, + "z": 2.0 + }, + "position3d": { + "x": 41.57, + "y": 58.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_B5#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_B5#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_B5#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_B5#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 41.57, + "y": 58.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_C5", + "uuid": "cb2c3bdb-27c7-49ec-bd16-d3aa8ccefa09", + "name": "PRCXI_1250uL_Tips_tipspot_C5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 41.57, + "y": 49.875, + "z": 2.0 + }, + "position3d": { + "x": 41.57, + "y": 49.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_C5#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_C5#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_C5#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_C5#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 41.57, + "y": 49.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_D5", + "uuid": "e53f47e2-8126-49fc-94c3-9185fe5661d6", + "name": "PRCXI_1250uL_Tips_tipspot_D5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 41.57, + "y": 40.875, + "z": 2.0 + }, + "position3d": { + "x": 41.57, + "y": 40.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_D5#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_D5#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_D5#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_D5#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 41.57, + "y": 40.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_E5", + "uuid": "9c30c020-1aa0-4b79-bc35-30958e5aeafb", + "name": "PRCXI_1250uL_Tips_tipspot_E5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 41.57, + "y": 31.875, + "z": 2.0 + }, + "position3d": { + "x": 41.57, + "y": 31.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_E5#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_E5#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_E5#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_E5#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 41.57, + "y": 31.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_F5", + "uuid": "6fab539e-1c21-4094-a0ce-6638141206ea", + "name": "PRCXI_1250uL_Tips_tipspot_F5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 41.57, + "y": 22.875, + "z": 2.0 + }, + "position3d": { + "x": 41.57, + "y": 22.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_F5#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_F5#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_F5#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_F5#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 41.57, + "y": 22.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_G5", + "uuid": "241ab1a9-4649-472a-bf60-42c6f14c9c19", + "name": "PRCXI_1250uL_Tips_tipspot_G5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 41.57, + "y": 13.875, + "z": 2.0 + }, + "position3d": { + "x": 41.57, + "y": 13.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_G5#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_G5#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_G5#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_G5#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 41.57, + "y": 13.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_H5", + "uuid": "4341cf55-c034-42fe-93fb-c5fe58a2175f", + "name": "PRCXI_1250uL_Tips_tipspot_H5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 41.57, + "y": 4.875, + "z": 2.0 + }, + "position3d": { + "x": 41.57, + "y": 4.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_H5#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_H5#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_H5#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_H5#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 41.57, + "y": 4.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_A6", + "uuid": "1f09482b-fa19-4757-a5e8-55dfcc7b8d18", + "name": "PRCXI_1250uL_Tips_tipspot_A6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 50.57, + "y": 67.875, + "z": 2.0 + }, + "position3d": { + "x": 50.57, + "y": 67.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_A6#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_A6#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_A6#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_A6#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 50.57, + "y": 67.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_B6", + "uuid": "0683f255-7885-4a03-bffd-82e05202dd18", + "name": "PRCXI_1250uL_Tips_tipspot_B6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 50.57, + "y": 58.875, + "z": 2.0 + }, + "position3d": { + "x": 50.57, + "y": 58.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_B6#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_B6#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_B6#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_B6#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 50.57, + "y": 58.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_C6", + "uuid": "12ff09c9-f4aa-458e-8d70-780eb35de1b4", + "name": "PRCXI_1250uL_Tips_tipspot_C6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 50.57, + "y": 49.875, + "z": 2.0 + }, + "position3d": { + "x": 50.57, + "y": 49.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_C6#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_C6#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_C6#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_C6#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 50.57, + "y": 49.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_D6", + "uuid": "7dc397d8-5424-4264-964d-cf2b65e5ba13", + "name": "PRCXI_1250uL_Tips_tipspot_D6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 50.57, + "y": 40.875, + "z": 2.0 + }, + "position3d": { + "x": 50.57, + "y": 40.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_D6#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_D6#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_D6#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_D6#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 50.57, + "y": 40.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_E6", + "uuid": "f0338139-2de3-49c2-be8c-8f16bc2d8859", + "name": "PRCXI_1250uL_Tips_tipspot_E6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 50.57, + "y": 31.875, + "z": 2.0 + }, + "position3d": { + "x": 50.57, + "y": 31.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_E6#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_E6#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_E6#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_E6#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 50.57, + "y": 31.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_F6", + "uuid": "ec3c4d2c-b3bb-4b8c-ad44-4249603aec75", + "name": "PRCXI_1250uL_Tips_tipspot_F6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 50.57, + "y": 22.875, + "z": 2.0 + }, + "position3d": { + "x": 50.57, + "y": 22.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_F6#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_F6#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_F6#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_F6#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 50.57, + "y": 22.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_G6", + "uuid": "72f4aa00-8f39-4172-b057-300252b67567", + "name": "PRCXI_1250uL_Tips_tipspot_G6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 50.57, + "y": 13.875, + "z": 2.0 + }, + "position3d": { + "x": 50.57, + "y": 13.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_G6#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_G6#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_G6#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_G6#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 50.57, + "y": 13.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_H6", + "uuid": "2f87f2ac-baea-4082-be67-92e266066825", + "name": "PRCXI_1250uL_Tips_tipspot_H6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 50.57, + "y": 4.875, + "z": 2.0 + }, + "position3d": { + "x": 50.57, + "y": 4.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_H6#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_H6#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_H6#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_H6#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 50.57, + "y": 4.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_A7", + "uuid": "d6b18535-03d5-4eb4-ada7-eb05ed6e2804", + "name": "PRCXI_1250uL_Tips_tipspot_A7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 59.57, + "y": 67.875, + "z": 2.0 + }, + "position3d": { + "x": 59.57, + "y": 67.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_A7#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_A7#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_A7#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_A7#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 59.57, + "y": 67.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_B7", + "uuid": "8ccebfa3-f378-4e17-afec-396d64a38fa5", + "name": "PRCXI_1250uL_Tips_tipspot_B7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 59.57, + "y": 58.875, + "z": 2.0 + }, + "position3d": { + "x": 59.57, + "y": 58.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_B7#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_B7#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_B7#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_B7#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 59.57, + "y": 58.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_C7", + "uuid": "df8e24eb-7678-467b-bc9b-faca59eb9b9f", + "name": "PRCXI_1250uL_Tips_tipspot_C7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 59.57, + "y": 49.875, + "z": 2.0 + }, + "position3d": { + "x": 59.57, + "y": 49.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_C7#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_C7#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_C7#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_C7#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 59.57, + "y": 49.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_D7", + "uuid": "6f177d9d-6647-4d68-b42c-de995a833a28", + "name": "PRCXI_1250uL_Tips_tipspot_D7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 59.57, + "y": 40.875, + "z": 2.0 + }, + "position3d": { + "x": 59.57, + "y": 40.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_D7#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_D7#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_D7#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_D7#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 59.57, + "y": 40.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_E7", + "uuid": "09831662-a8ce-4660-aaa9-5fde65145f7e", + "name": "PRCXI_1250uL_Tips_tipspot_E7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 59.57, + "y": 31.875, + "z": 2.0 + }, + "position3d": { + "x": 59.57, + "y": 31.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_E7#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_E7#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_E7#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_E7#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 59.57, + "y": 31.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_F7", + "uuid": "ee912283-c41e-4171-bdff-79c8ac895f84", + "name": "PRCXI_1250uL_Tips_tipspot_F7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 59.57, + "y": 22.875, + "z": 2.0 + }, + "position3d": { + "x": 59.57, + "y": 22.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_F7#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_F7#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_F7#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_F7#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 59.57, + "y": 22.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_G7", + "uuid": "4aa04faa-dcd8-4b81-8a84-ab2d8a45dbd0", + "name": "PRCXI_1250uL_Tips_tipspot_G7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 59.57, + "y": 13.875, + "z": 2.0 + }, + "position3d": { + "x": 59.57, + "y": 13.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_G7#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_G7#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_G7#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_G7#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 59.57, + "y": 13.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_H7", + "uuid": "d13a06b9-219b-4b0c-8922-fb5b7c7a3247", + "name": "PRCXI_1250uL_Tips_tipspot_H7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 59.57, + "y": 4.875, + "z": 2.0 + }, + "position3d": { + "x": 59.57, + "y": 4.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_H7#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_H7#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_H7#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_H7#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 59.57, + "y": 4.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_A8", + "uuid": "56a9fef2-3200-4fb7-b82c-c0868ef4b741", + "name": "PRCXI_1250uL_Tips_tipspot_A8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 68.57, + "y": 67.875, + "z": 2.0 + }, + "position3d": { + "x": 68.57, + "y": 67.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_A8#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_A8#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_A8#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_A8#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 68.57, + "y": 67.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_B8", + "uuid": "4ee9d9ab-ec90-4d4c-8923-ac4287857fba", + "name": "PRCXI_1250uL_Tips_tipspot_B8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 68.57, + "y": 58.875, + "z": 2.0 + }, + "position3d": { + "x": 68.57, + "y": 58.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_B8#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_B8#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_B8#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_B8#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 68.57, + "y": 58.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_C8", + "uuid": "92314611-09ce-4fbe-bbcd-d3567f860c7d", + "name": "PRCXI_1250uL_Tips_tipspot_C8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 68.57, + "y": 49.875, + "z": 2.0 + }, + "position3d": { + "x": 68.57, + "y": 49.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_C8#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_C8#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_C8#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_C8#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 68.57, + "y": 49.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_D8", + "uuid": "53f44381-9934-47fe-b515-c9ac8dd9bd90", + "name": "PRCXI_1250uL_Tips_tipspot_D8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 68.57, + "y": 40.875, + "z": 2.0 + }, + "position3d": { + "x": 68.57, + "y": 40.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_D8#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_D8#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_D8#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_D8#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 68.57, + "y": 40.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_E8", + "uuid": "016b86a0-09c7-4c3a-87dd-b42ed4dbe2a6", + "name": "PRCXI_1250uL_Tips_tipspot_E8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 68.57, + "y": 31.875, + "z": 2.0 + }, + "position3d": { + "x": 68.57, + "y": 31.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_E8#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_E8#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_E8#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_E8#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 68.57, + "y": 31.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_F8", + "uuid": "a5fb00da-4c78-4f36-8c52-0c1a31e49732", + "name": "PRCXI_1250uL_Tips_tipspot_F8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 68.57, + "y": 22.875, + "z": 2.0 + }, + "position3d": { + "x": 68.57, + "y": 22.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_F8#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_F8#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_F8#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_F8#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 68.57, + "y": 22.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_G8", + "uuid": "80b160ca-25f8-44ad-85f3-4c2a98c7738a", + "name": "PRCXI_1250uL_Tips_tipspot_G8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 68.57, + "y": 13.875, + "z": 2.0 + }, + "position3d": { + "x": 68.57, + "y": 13.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_G8#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_G8#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_G8#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_G8#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 68.57, + "y": 13.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_H8", + "uuid": "0e74f397-0c5a-4c04-90c3-fd9398a76e25", + "name": "PRCXI_1250uL_Tips_tipspot_H8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 68.57, + "y": 4.875, + "z": 2.0 + }, + "position3d": { + "x": 68.57, + "y": 4.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_H8#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_H8#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_H8#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_H8#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 68.57, + "y": 4.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_A9", + "uuid": "e14f0647-6842-415d-af8a-60de0666f8fb", + "name": "PRCXI_1250uL_Tips_tipspot_A9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 77.57, + "y": 67.875, + "z": 2.0 + }, + "position3d": { + "x": 77.57, + "y": 67.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_A9#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_A9#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_A9#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_A9#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 77.57, + "y": 67.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_B9", + "uuid": "243c2eb7-3433-45c4-b1b1-70a88fe129c1", + "name": "PRCXI_1250uL_Tips_tipspot_B9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 77.57, + "y": 58.875, + "z": 2.0 + }, + "position3d": { + "x": 77.57, + "y": 58.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_B9#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_B9#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_B9#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_B9#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 77.57, + "y": 58.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_C9", + "uuid": "a8d7a334-cc2f-4b6d-8321-1ee69b0307fc", + "name": "PRCXI_1250uL_Tips_tipspot_C9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 77.57, + "y": 49.875, + "z": 2.0 + }, + "position3d": { + "x": 77.57, + "y": 49.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_C9#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_C9#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_C9#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_C9#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 77.57, + "y": 49.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_D9", + "uuid": "5704b73b-e704-47fa-afb1-a02e480a5c4a", + "name": "PRCXI_1250uL_Tips_tipspot_D9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 77.57, + "y": 40.875, + "z": 2.0 + }, + "position3d": { + "x": 77.57, + "y": 40.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_D9#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_D9#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_D9#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_D9#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 77.57, + "y": 40.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_E9", + "uuid": "adcc81c1-7cc6-4d9a-8d7f-01c0d3fbcc10", + "name": "PRCXI_1250uL_Tips_tipspot_E9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 77.57, + "y": 31.875, + "z": 2.0 + }, + "position3d": { + "x": 77.57, + "y": 31.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_E9#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_E9#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_E9#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_E9#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 77.57, + "y": 31.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_F9", + "uuid": "7f44de6f-4fd3-460f-8896-eaa8dabd5daf", + "name": "PRCXI_1250uL_Tips_tipspot_F9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 77.57, + "y": 22.875, + "z": 2.0 + }, + "position3d": { + "x": 77.57, + "y": 22.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_F9#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_F9#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_F9#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_F9#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 77.57, + "y": 22.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_G9", + "uuid": "c33a1f49-4334-4399-81f2-07bcab8ac8b0", + "name": "PRCXI_1250uL_Tips_tipspot_G9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 77.57, + "y": 13.875, + "z": 2.0 + }, + "position3d": { + "x": 77.57, + "y": 13.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_G9#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_G9#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_G9#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_G9#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 77.57, + "y": 13.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_H9", + "uuid": "df358fc9-6840-49c8-9c93-56d8da50cc1b", + "name": "PRCXI_1250uL_Tips_tipspot_H9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 77.57, + "y": 4.875, + "z": 2.0 + }, + "position3d": { + "x": 77.57, + "y": 4.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_H9#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_H9#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_H9#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_H9#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 77.57, + "y": 4.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_A10", + "uuid": "290900de-1e95-40da-816e-b448bb93664e", + "name": "PRCXI_1250uL_Tips_tipspot_A10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 86.57, + "y": 67.875, + "z": 2.0 + }, + "position3d": { + "x": 86.57, + "y": 67.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_A10#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_A10#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_A10#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_A10#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 86.57, + "y": 67.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_B10", + "uuid": "f0cab0bb-4d7d-423c-8f4c-91ab4ed4edb0", + "name": "PRCXI_1250uL_Tips_tipspot_B10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 86.57, + "y": 58.875, + "z": 2.0 + }, + "position3d": { + "x": 86.57, + "y": 58.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_B10#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_B10#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_B10#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_B10#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 86.57, + "y": 58.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_C10", + "uuid": "4c670d07-e13a-4b97-a9c3-809c45346a1b", + "name": "PRCXI_1250uL_Tips_tipspot_C10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 86.57, + "y": 49.875, + "z": 2.0 + }, + "position3d": { + "x": 86.57, + "y": 49.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_C10#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_C10#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_C10#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_C10#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 86.57, + "y": 49.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_D10", + "uuid": "05704a67-ae70-4d8f-a263-d1c7e7908adc", + "name": "PRCXI_1250uL_Tips_tipspot_D10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 86.57, + "y": 40.875, + "z": 2.0 + }, + "position3d": { + "x": 86.57, + "y": 40.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_D10#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_D10#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_D10#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_D10#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 86.57, + "y": 40.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_E10", + "uuid": "62bd6605-2edd-46d3-860a-3b33a5d9d3d2", + "name": "PRCXI_1250uL_Tips_tipspot_E10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 86.57, + "y": 31.875, + "z": 2.0 + }, + "position3d": { + "x": 86.57, + "y": 31.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_E10#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_E10#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_E10#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_E10#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 86.57, + "y": 31.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_F10", + "uuid": "7df3ac00-1bdb-4174-88b9-c344a1a012f2", + "name": "PRCXI_1250uL_Tips_tipspot_F10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 86.57, + "y": 22.875, + "z": 2.0 + }, + "position3d": { + "x": 86.57, + "y": 22.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_F10#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_F10#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_F10#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_F10#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 86.57, + "y": 22.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_G10", + "uuid": "d82b4ab8-2858-46cc-9c5b-26e127ddd827", + "name": "PRCXI_1250uL_Tips_tipspot_G10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 86.57, + "y": 13.875, + "z": 2.0 + }, + "position3d": { + "x": 86.57, + "y": 13.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_G10#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_G10#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_G10#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_G10#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 86.57, + "y": 13.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_H10", + "uuid": "d7ad1997-93a6-4855-8f20-fef03b99986d", + "name": "PRCXI_1250uL_Tips_tipspot_H10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 86.57, + "y": 4.875, + "z": 2.0 + }, + "position3d": { + "x": 86.57, + "y": 4.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_H10#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_H10#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_H10#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_H10#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 86.57, + "y": 4.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_A11", + "uuid": "40ffe98b-8841-49de-a862-d8f352f855a5", + "name": "PRCXI_1250uL_Tips_tipspot_A11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 95.57, + "y": 67.875, + "z": 2.0 + }, + "position3d": { + "x": 95.57, + "y": 67.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_A11#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_A11#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_A11#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_A11#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 95.57, + "y": 67.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_B11", + "uuid": "c28e065e-8bc5-4e0f-8f03-44c097482bd3", + "name": "PRCXI_1250uL_Tips_tipspot_B11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 95.57, + "y": 58.875, + "z": 2.0 + }, + "position3d": { + "x": 95.57, + "y": 58.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_B11#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_B11#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_B11#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_B11#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 95.57, + "y": 58.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_C11", + "uuid": "0b092758-4ef7-41f1-bb20-d0f9add8be28", + "name": "PRCXI_1250uL_Tips_tipspot_C11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 95.57, + "y": 49.875, + "z": 2.0 + }, + "position3d": { + "x": 95.57, + "y": 49.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_C11#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_C11#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_C11#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_C11#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 95.57, + "y": 49.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_D11", + "uuid": "d0fe044f-567e-4ab0-ab7c-b7153bd577d7", + "name": "PRCXI_1250uL_Tips_tipspot_D11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 95.57, + "y": 40.875, + "z": 2.0 + }, + "position3d": { + "x": 95.57, + "y": 40.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_D11#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_D11#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_D11#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_D11#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 95.57, + "y": 40.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_E11", + "uuid": "be1cd60b-e7d6-4f2d-962f-e28874d2d72c", + "name": "PRCXI_1250uL_Tips_tipspot_E11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 95.57, + "y": 31.875, + "z": 2.0 + }, + "position3d": { + "x": 95.57, + "y": 31.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_E11#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_E11#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_E11#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_E11#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 95.57, + "y": 31.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_F11", + "uuid": "a866ec65-b8ef-4dcc-a77b-29be4ee8ba67", + "name": "PRCXI_1250uL_Tips_tipspot_F11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 95.57, + "y": 22.875, + "z": 2.0 + }, + "position3d": { + "x": 95.57, + "y": 22.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_F11#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_F11#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_F11#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_F11#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 95.57, + "y": 22.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_G11", + "uuid": "6aababcc-6d54-4d15-bf7f-ef7640388b54", + "name": "PRCXI_1250uL_Tips_tipspot_G11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 95.57, + "y": 13.875, + "z": 2.0 + }, + "position3d": { + "x": 95.57, + "y": 13.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_G11#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_G11#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_G11#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_G11#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 95.57, + "y": 13.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_H11", + "uuid": "5686ac63-dd3e-4354-b695-4dacbfbee51a", + "name": "PRCXI_1250uL_Tips_tipspot_H11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 95.57, + "y": 4.875, + "z": 2.0 + }, + "position3d": { + "x": 95.57, + "y": 4.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_H11#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_H11#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_H11#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_H11#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 95.57, + "y": 4.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_A12", + "uuid": "551c8f44-f043-4d01-8565-5c3b3bfa6708", + "name": "PRCXI_1250uL_Tips_tipspot_A12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 104.57, + "y": 67.875, + "z": 2.0 + }, + "position3d": { + "x": 104.57, + "y": 67.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_A12#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_A12#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_A12#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_A12#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 104.57, + "y": 67.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_B12", + "uuid": "be8dfd2e-16a1-4f7c-8aeb-452b9327224c", + "name": "PRCXI_1250uL_Tips_tipspot_B12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 104.57, + "y": 58.875, + "z": 2.0 + }, + "position3d": { + "x": 104.57, + "y": 58.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_B12#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_B12#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_B12#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_B12#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 104.57, + "y": 58.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_C12", + "uuid": "5a8ee0e8-bb1c-4270-9c28-cda885341257", + "name": "PRCXI_1250uL_Tips_tipspot_C12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 104.57, + "y": 49.875, + "z": 2.0 + }, + "position3d": { + "x": 104.57, + "y": 49.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_C12#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_C12#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_C12#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_C12#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 104.57, + "y": 49.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_D12", + "uuid": "b1e57563-0759-4448-ba35-611a50832959", + "name": "PRCXI_1250uL_Tips_tipspot_D12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 104.57, + "y": 40.875, + "z": 2.0 + }, + "position3d": { + "x": 104.57, + "y": 40.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_D12#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_D12#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_D12#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_D12#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 104.57, + "y": 40.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_E12", + "uuid": "ed292fab-8fe9-4602-a248-28fa01d9b6ed", + "name": "PRCXI_1250uL_Tips_tipspot_E12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 104.57, + "y": 31.875, + "z": 2.0 + }, + "position3d": { + "x": 104.57, + "y": 31.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_E12#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_E12#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_E12#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_E12#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 104.57, + "y": 31.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_F12", + "uuid": "6ca088e9-620e-46b3-be4e-3a9d8ec692fd", + "name": "PRCXI_1250uL_Tips_tipspot_F12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 104.57, + "y": 22.875, + "z": 2.0 + }, + "position3d": { + "x": 104.57, + "y": 22.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_F12#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_F12#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_F12#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_F12#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 104.57, + "y": 22.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_G12", + "uuid": "0d055b2d-23eb-4bd4-94fd-be34d5b60e37", + "name": "PRCXI_1250uL_Tips_tipspot_G12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 104.57, + "y": 13.875, + "z": 2.0 + }, + "position3d": { + "x": 104.57, + "y": 13.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_G12#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_G12#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_G12#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_G12#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 104.57, + "y": 13.875, + "z": 2.0 + } + }, + { + "id": "PRCXI_1250uL_Tips_tipspot_H12", + "uuid": "a88b2ef1-2f1c-43f4-9537-eb25c07d8ef6", + "name": "PRCXI_1250uL_Tips_tipspot_H12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f01ab915-d129-407f-98bc-cc1705b674ea", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 104.57, + "y": 4.875, + "z": 2.0 + }, + "position3d": { + "x": 104.57, + "y": 4.875, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_H12#1", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_H12#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + }, + "tip_state": { + "thing": "PRCXI_1250uL_Tips_tipspot_H12#0", + "max_volume": 1250, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_1250uL_Tips_tipspot_H12#0", + "total_tip_length": 107.67, + "has_filter": false, + "maximal_volume": 1250, + "fitting_depth": 8 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 104.57, + "y": 4.875, + "z": 2.0 + } + } + ] + }, + { + "id": "PRCXI_200uL_Tips", + "category": [ + "prcxi", + "tip_racks" + ], + "class": { + "module": "unilabos.devices.liquid_handling.prcxi.prcxi_labware:PRCXI_200uL_Tips", + "type": "pylabrobot" + }, + "description": "200μL Tip头 (Code: ZX-001-200)", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/prcxi/tip_racks.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "PRCXI_200uL_Tips", + "uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "name": "PRCXI_200uL_Tips", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "tip_rack", + "class": "", + "pose": { + "size": { + "depth": 66.9, + "width": 120.98, + "height": 82.12 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "PRCXI9300TipRack", + "size_x": 120.98, + "size_y": 82.12, + "size_z": 66.9, + "category": "tip_rack", + "model": "PRCXI_200uL_Tips", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "PRCXI_200uL_Tips_tipspot_A1", + "B1": "PRCXI_200uL_Tips_tipspot_B1", + "C1": "PRCXI_200uL_Tips_tipspot_C1", + "D1": "PRCXI_200uL_Tips_tipspot_D1", + "E1": "PRCXI_200uL_Tips_tipspot_E1", + "F1": "PRCXI_200uL_Tips_tipspot_F1", + "G1": "PRCXI_200uL_Tips_tipspot_G1", + "H1": "PRCXI_200uL_Tips_tipspot_H1", + "A2": "PRCXI_200uL_Tips_tipspot_A2", + "B2": "PRCXI_200uL_Tips_tipspot_B2", + "C2": "PRCXI_200uL_Tips_tipspot_C2", + "D2": "PRCXI_200uL_Tips_tipspot_D2", + "E2": "PRCXI_200uL_Tips_tipspot_E2", + "F2": "PRCXI_200uL_Tips_tipspot_F2", + "G2": "PRCXI_200uL_Tips_tipspot_G2", + "H2": "PRCXI_200uL_Tips_tipspot_H2", + "A3": "PRCXI_200uL_Tips_tipspot_A3", + "B3": "PRCXI_200uL_Tips_tipspot_B3", + "C3": "PRCXI_200uL_Tips_tipspot_C3", + "D3": "PRCXI_200uL_Tips_tipspot_D3", + "E3": "PRCXI_200uL_Tips_tipspot_E3", + "F3": "PRCXI_200uL_Tips_tipspot_F3", + "G3": "PRCXI_200uL_Tips_tipspot_G3", + "H3": "PRCXI_200uL_Tips_tipspot_H3", + "A4": "PRCXI_200uL_Tips_tipspot_A4", + "B4": "PRCXI_200uL_Tips_tipspot_B4", + "C4": "PRCXI_200uL_Tips_tipspot_C4", + "D4": "PRCXI_200uL_Tips_tipspot_D4", + "E4": "PRCXI_200uL_Tips_tipspot_E4", + "F4": "PRCXI_200uL_Tips_tipspot_F4", + "G4": "PRCXI_200uL_Tips_tipspot_G4", + "H4": "PRCXI_200uL_Tips_tipspot_H4", + "A5": "PRCXI_200uL_Tips_tipspot_A5", + "B5": "PRCXI_200uL_Tips_tipspot_B5", + "C5": "PRCXI_200uL_Tips_tipspot_C5", + "D5": "PRCXI_200uL_Tips_tipspot_D5", + "E5": "PRCXI_200uL_Tips_tipspot_E5", + "F5": "PRCXI_200uL_Tips_tipspot_F5", + "G5": "PRCXI_200uL_Tips_tipspot_G5", + "H5": "PRCXI_200uL_Tips_tipspot_H5", + "A6": "PRCXI_200uL_Tips_tipspot_A6", + "B6": "PRCXI_200uL_Tips_tipspot_B6", + "C6": "PRCXI_200uL_Tips_tipspot_C6", + "D6": "PRCXI_200uL_Tips_tipspot_D6", + "E6": "PRCXI_200uL_Tips_tipspot_E6", + "F6": "PRCXI_200uL_Tips_tipspot_F6", + "G6": "PRCXI_200uL_Tips_tipspot_G6", + "H6": "PRCXI_200uL_Tips_tipspot_H6", + "A7": "PRCXI_200uL_Tips_tipspot_A7", + "B7": "PRCXI_200uL_Tips_tipspot_B7", + "C7": "PRCXI_200uL_Tips_tipspot_C7", + "D7": "PRCXI_200uL_Tips_tipspot_D7", + "E7": "PRCXI_200uL_Tips_tipspot_E7", + "F7": "PRCXI_200uL_Tips_tipspot_F7", + "G7": "PRCXI_200uL_Tips_tipspot_G7", + "H7": "PRCXI_200uL_Tips_tipspot_H7", + "A8": "PRCXI_200uL_Tips_tipspot_A8", + "B8": "PRCXI_200uL_Tips_tipspot_B8", + "C8": "PRCXI_200uL_Tips_tipspot_C8", + "D8": "PRCXI_200uL_Tips_tipspot_D8", + "E8": "PRCXI_200uL_Tips_tipspot_E8", + "F8": "PRCXI_200uL_Tips_tipspot_F8", + "G8": "PRCXI_200uL_Tips_tipspot_G8", + "H8": "PRCXI_200uL_Tips_tipspot_H8", + "A9": "PRCXI_200uL_Tips_tipspot_A9", + "B9": "PRCXI_200uL_Tips_tipspot_B9", + "C9": "PRCXI_200uL_Tips_tipspot_C9", + "D9": "PRCXI_200uL_Tips_tipspot_D9", + "E9": "PRCXI_200uL_Tips_tipspot_E9", + "F9": "PRCXI_200uL_Tips_tipspot_F9", + "G9": "PRCXI_200uL_Tips_tipspot_G9", + "H9": "PRCXI_200uL_Tips_tipspot_H9", + "A10": "PRCXI_200uL_Tips_tipspot_A10", + "B10": "PRCXI_200uL_Tips_tipspot_B10", + "C10": "PRCXI_200uL_Tips_tipspot_C10", + "D10": "PRCXI_200uL_Tips_tipspot_D10", + "E10": "PRCXI_200uL_Tips_tipspot_E10", + "F10": "PRCXI_200uL_Tips_tipspot_F10", + "G10": "PRCXI_200uL_Tips_tipspot_G10", + "H10": "PRCXI_200uL_Tips_tipspot_H10", + "A11": "PRCXI_200uL_Tips_tipspot_A11", + "B11": "PRCXI_200uL_Tips_tipspot_B11", + "C11": "PRCXI_200uL_Tips_tipspot_C11", + "D11": "PRCXI_200uL_Tips_tipspot_D11", + "E11": "PRCXI_200uL_Tips_tipspot_E11", + "F11": "PRCXI_200uL_Tips_tipspot_F11", + "G11": "PRCXI_200uL_Tips_tipspot_G11", + "H11": "PRCXI_200uL_Tips_tipspot_H11", + "A12": "PRCXI_200uL_Tips_tipspot_A12", + "B12": "PRCXI_200uL_Tips_tipspot_B12", + "C12": "PRCXI_200uL_Tips_tipspot_C12", + "D12": "PRCXI_200uL_Tips_tipspot_D12", + "E12": "PRCXI_200uL_Tips_tipspot_E12", + "F12": "PRCXI_200uL_Tips_tipspot_F12", + "G12": "PRCXI_200uL_Tips_tipspot_G12", + "H12": "PRCXI_200uL_Tips_tipspot_H12" + } + }, + "data": { + "Material": { + "uuid": "7a73bb9e5c264515a8fcbe88aed0e6f7", + "Code": "ZX-001-200", + "Name": "200μL Tip头", + "SupplyType": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_A1", + "uuid": "e04be6d9-4956-4d0c-a674-1af53faf6db0", + "name": "PRCXI_200uL_Tips_tipspot_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 8.24, + "y": 69.81, + "z": 2.0 + }, + "position3d": { + "x": 8.24, + "y": 69.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_A1#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_A1#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_A1#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_A1#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 8.24, + "y": 69.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_B1", + "uuid": "679d6114-3536-49c8-9b6b-775afdb5bd23", + "name": "PRCXI_200uL_Tips_tipspot_B1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 8.24, + "y": 60.81, + "z": 2.0 + }, + "position3d": { + "x": 8.24, + "y": 60.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_B1#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_B1#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_B1#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_B1#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 8.24, + "y": 60.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_C1", + "uuid": "05cade21-a81e-409e-a606-b820d2fa595f", + "name": "PRCXI_200uL_Tips_tipspot_C1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 8.24, + "y": 51.81, + "z": 2.0 + }, + "position3d": { + "x": 8.24, + "y": 51.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_C1#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_C1#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_C1#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_C1#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 8.24, + "y": 51.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_D1", + "uuid": "f4e341bc-17c8-4adf-ba0e-f08c93d1d068", + "name": "PRCXI_200uL_Tips_tipspot_D1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 8.24, + "y": 42.81, + "z": 2.0 + }, + "position3d": { + "x": 8.24, + "y": 42.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_D1#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_D1#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_D1#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_D1#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 8.24, + "y": 42.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_E1", + "uuid": "be8a2d27-5ba3-4fed-bd07-80422b2e3cb2", + "name": "PRCXI_200uL_Tips_tipspot_E1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 8.24, + "y": 33.81, + "z": 2.0 + }, + "position3d": { + "x": 8.24, + "y": 33.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_E1#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_E1#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_E1#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_E1#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 8.24, + "y": 33.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_F1", + "uuid": "e6d1bff6-2dab-402a-b659-54ddc8822293", + "name": "PRCXI_200uL_Tips_tipspot_F1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 8.24, + "y": 24.81, + "z": 2.0 + }, + "position3d": { + "x": 8.24, + "y": 24.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_F1#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_F1#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_F1#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_F1#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 8.24, + "y": 24.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_G1", + "uuid": "d344f2fe-d89a-4d57-a534-4bcf5b706d84", + "name": "PRCXI_200uL_Tips_tipspot_G1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 8.24, + "y": 15.81, + "z": 2.0 + }, + "position3d": { + "x": 8.24, + "y": 15.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_G1#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_G1#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_G1#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_G1#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 8.24, + "y": 15.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_H1", + "uuid": "3caa2e70-dbd2-461e-8d59-2b14aa6f3910", + "name": "PRCXI_200uL_Tips_tipspot_H1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 8.24, + "y": 6.81, + "z": 2.0 + }, + "position3d": { + "x": 8.24, + "y": 6.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_H1#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_H1#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_H1#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_H1#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 8.24, + "y": 6.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_A2", + "uuid": "772b2997-3531-4373-92b2-1b4097affa10", + "name": "PRCXI_200uL_Tips_tipspot_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 17.24, + "y": 69.81, + "z": 2.0 + }, + "position3d": { + "x": 17.24, + "y": 69.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_A2#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_A2#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_A2#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_A2#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 17.24, + "y": 69.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_B2", + "uuid": "e97a7394-ceed-42b8-b5e9-ffe49a6992dc", + "name": "PRCXI_200uL_Tips_tipspot_B2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 17.24, + "y": 60.81, + "z": 2.0 + }, + "position3d": { + "x": 17.24, + "y": 60.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_B2#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_B2#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_B2#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_B2#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 17.24, + "y": 60.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_C2", + "uuid": "137a3caa-52d3-445b-bc2a-79a73de0b4ac", + "name": "PRCXI_200uL_Tips_tipspot_C2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 17.24, + "y": 51.81, + "z": 2.0 + }, + "position3d": { + "x": 17.24, + "y": 51.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_C2#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_C2#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_C2#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_C2#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 17.24, + "y": 51.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_D2", + "uuid": "a04d1e16-d2e2-4c01-a62b-7bcbc0362e16", + "name": "PRCXI_200uL_Tips_tipspot_D2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 17.24, + "y": 42.81, + "z": 2.0 + }, + "position3d": { + "x": 17.24, + "y": 42.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_D2#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_D2#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_D2#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_D2#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 17.24, + "y": 42.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_E2", + "uuid": "db09973b-e17d-4ea4-90b9-eabf444e08b5", + "name": "PRCXI_200uL_Tips_tipspot_E2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 17.24, + "y": 33.81, + "z": 2.0 + }, + "position3d": { + "x": 17.24, + "y": 33.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_E2#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_E2#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_E2#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_E2#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 17.24, + "y": 33.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_F2", + "uuid": "d899bd97-dbce-41cc-96c5-33c60307d520", + "name": "PRCXI_200uL_Tips_tipspot_F2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 17.24, + "y": 24.81, + "z": 2.0 + }, + "position3d": { + "x": 17.24, + "y": 24.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_F2#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_F2#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_F2#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_F2#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 17.24, + "y": 24.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_G2", + "uuid": "b81dcba3-4fc2-4f83-bbde-670a2dbdb2e2", + "name": "PRCXI_200uL_Tips_tipspot_G2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 17.24, + "y": 15.81, + "z": 2.0 + }, + "position3d": { + "x": 17.24, + "y": 15.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_G2#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_G2#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_G2#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_G2#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 17.24, + "y": 15.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_H2", + "uuid": "6da3f03a-b4d5-4eae-908d-f5ec02fe2285", + "name": "PRCXI_200uL_Tips_tipspot_H2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 17.24, + "y": 6.81, + "z": 2.0 + }, + "position3d": { + "x": 17.24, + "y": 6.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_H2#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_H2#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_H2#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_H2#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 17.24, + "y": 6.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_A3", + "uuid": "eeafc23c-8f56-48d3-a027-f804f88be485", + "name": "PRCXI_200uL_Tips_tipspot_A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 26.24, + "y": 69.81, + "z": 2.0 + }, + "position3d": { + "x": 26.24, + "y": 69.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_A3#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_A3#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_A3#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_A3#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 26.24, + "y": 69.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_B3", + "uuid": "84e00e90-9e52-4a12-b1b7-efbe7961c793", + "name": "PRCXI_200uL_Tips_tipspot_B3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 26.24, + "y": 60.81, + "z": 2.0 + }, + "position3d": { + "x": 26.24, + "y": 60.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_B3#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_B3#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_B3#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_B3#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 26.24, + "y": 60.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_C3", + "uuid": "34e42eeb-9642-4296-a21d-22cfdf9fe7e3", + "name": "PRCXI_200uL_Tips_tipspot_C3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 26.24, + "y": 51.81, + "z": 2.0 + }, + "position3d": { + "x": 26.24, + "y": 51.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_C3#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_C3#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_C3#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_C3#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 26.24, + "y": 51.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_D3", + "uuid": "5a26fd44-d620-455e-8f78-49c852b0ef2b", + "name": "PRCXI_200uL_Tips_tipspot_D3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 26.24, + "y": 42.81, + "z": 2.0 + }, + "position3d": { + "x": 26.24, + "y": 42.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_D3#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_D3#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_D3#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_D3#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 26.24, + "y": 42.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_E3", + "uuid": "0ba909ae-7b0e-4564-976b-295321747791", + "name": "PRCXI_200uL_Tips_tipspot_E3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 26.24, + "y": 33.81, + "z": 2.0 + }, + "position3d": { + "x": 26.24, + "y": 33.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_E3#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_E3#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_E3#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_E3#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 26.24, + "y": 33.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_F3", + "uuid": "e0325b68-c5dd-40a5-a876-9c07bf4fc6a3", + "name": "PRCXI_200uL_Tips_tipspot_F3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 26.24, + "y": 24.81, + "z": 2.0 + }, + "position3d": { + "x": 26.24, + "y": 24.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_F3#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_F3#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_F3#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_F3#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 26.24, + "y": 24.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_G3", + "uuid": "04e436fa-7031-4dbd-87fe-5bd164079555", + "name": "PRCXI_200uL_Tips_tipspot_G3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 26.24, + "y": 15.81, + "z": 2.0 + }, + "position3d": { + "x": 26.24, + "y": 15.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_G3#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_G3#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_G3#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_G3#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 26.24, + "y": 15.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_H3", + "uuid": "d59b8e94-f74e-4814-aa0e-b9db04d2028d", + "name": "PRCXI_200uL_Tips_tipspot_H3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 26.24, + "y": 6.81, + "z": 2.0 + }, + "position3d": { + "x": 26.24, + "y": 6.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_H3#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_H3#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_H3#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_H3#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 26.24, + "y": 6.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_A4", + "uuid": "0963fcc6-9534-4bba-9be6-ca3952d328f5", + "name": "PRCXI_200uL_Tips_tipspot_A4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 35.24, + "y": 69.81, + "z": 2.0 + }, + "position3d": { + "x": 35.24, + "y": 69.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_A4#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_A4#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_A4#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_A4#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 35.24, + "y": 69.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_B4", + "uuid": "b8956417-14a7-49f0-831b-17d90dccef67", + "name": "PRCXI_200uL_Tips_tipspot_B4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 35.24, + "y": 60.81, + "z": 2.0 + }, + "position3d": { + "x": 35.24, + "y": 60.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_B4#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_B4#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_B4#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_B4#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 35.24, + "y": 60.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_C4", + "uuid": "e2f7befc-167f-47f3-a6e6-f13fd7609ef0", + "name": "PRCXI_200uL_Tips_tipspot_C4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 35.24, + "y": 51.81, + "z": 2.0 + }, + "position3d": { + "x": 35.24, + "y": 51.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_C4#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_C4#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_C4#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_C4#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 35.24, + "y": 51.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_D4", + "uuid": "6dc1c6ba-f0e4-49ee-b2c4-85def2e912f4", + "name": "PRCXI_200uL_Tips_tipspot_D4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 35.24, + "y": 42.81, + "z": 2.0 + }, + "position3d": { + "x": 35.24, + "y": 42.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_D4#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_D4#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_D4#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_D4#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 35.24, + "y": 42.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_E4", + "uuid": "0c455561-faaa-409f-8341-418ade50746e", + "name": "PRCXI_200uL_Tips_tipspot_E4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 35.24, + "y": 33.81, + "z": 2.0 + }, + "position3d": { + "x": 35.24, + "y": 33.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_E4#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_E4#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_E4#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_E4#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 35.24, + "y": 33.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_F4", + "uuid": "0880975d-5893-4c6a-869b-b94d9dc3c5ef", + "name": "PRCXI_200uL_Tips_tipspot_F4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 35.24, + "y": 24.81, + "z": 2.0 + }, + "position3d": { + "x": 35.24, + "y": 24.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_F4#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_F4#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_F4#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_F4#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 35.24, + "y": 24.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_G4", + "uuid": "f93e3bf8-2f12-4a00-8c28-9e97c7c3a0ca", + "name": "PRCXI_200uL_Tips_tipspot_G4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 35.24, + "y": 15.81, + "z": 2.0 + }, + "position3d": { + "x": 35.24, + "y": 15.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_G4#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_G4#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_G4#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_G4#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 35.24, + "y": 15.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_H4", + "uuid": "5412e710-b516-4429-af9b-826c1f6ac6ca", + "name": "PRCXI_200uL_Tips_tipspot_H4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 35.24, + "y": 6.81, + "z": 2.0 + }, + "position3d": { + "x": 35.24, + "y": 6.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_H4#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_H4#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_H4#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_H4#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 35.24, + "y": 6.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_A5", + "uuid": "3056c9d9-1326-47ec-b679-1d38a67dc8a5", + "name": "PRCXI_200uL_Tips_tipspot_A5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 44.24, + "y": 69.81, + "z": 2.0 + }, + "position3d": { + "x": 44.24, + "y": 69.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_A5#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_A5#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_A5#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_A5#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 44.24, + "y": 69.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_B5", + "uuid": "49a2e0a7-87f0-4988-bf65-6008ad8689ff", + "name": "PRCXI_200uL_Tips_tipspot_B5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 44.24, + "y": 60.81, + "z": 2.0 + }, + "position3d": { + "x": 44.24, + "y": 60.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_B5#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_B5#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_B5#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_B5#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 44.24, + "y": 60.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_C5", + "uuid": "291b16ea-192c-46a3-b50b-ad4694b62367", + "name": "PRCXI_200uL_Tips_tipspot_C5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 44.24, + "y": 51.81, + "z": 2.0 + }, + "position3d": { + "x": 44.24, + "y": 51.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_C5#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_C5#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_C5#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_C5#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 44.24, + "y": 51.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_D5", + "uuid": "894960f4-d028-47ec-bfbb-3b2450728263", + "name": "PRCXI_200uL_Tips_tipspot_D5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 44.24, + "y": 42.81, + "z": 2.0 + }, + "position3d": { + "x": 44.24, + "y": 42.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_D5#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_D5#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_D5#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_D5#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 44.24, + "y": 42.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_E5", + "uuid": "ee54ffa5-ff56-4e14-bb2a-6b31b073f5cb", + "name": "PRCXI_200uL_Tips_tipspot_E5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 44.24, + "y": 33.81, + "z": 2.0 + }, + "position3d": { + "x": 44.24, + "y": 33.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_E5#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_E5#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_E5#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_E5#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 44.24, + "y": 33.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_F5", + "uuid": "dfcacc97-e41e-4784-9f91-ec0060679b03", + "name": "PRCXI_200uL_Tips_tipspot_F5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 44.24, + "y": 24.81, + "z": 2.0 + }, + "position3d": { + "x": 44.24, + "y": 24.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_F5#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_F5#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_F5#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_F5#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 44.24, + "y": 24.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_G5", + "uuid": "aab6af4f-892f-4e63-9793-2390d077baee", + "name": "PRCXI_200uL_Tips_tipspot_G5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 44.24, + "y": 15.81, + "z": 2.0 + }, + "position3d": { + "x": 44.24, + "y": 15.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_G5#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_G5#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_G5#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_G5#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 44.24, + "y": 15.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_H5", + "uuid": "f29b7902-6730-4303-b767-f7c43c34fe70", + "name": "PRCXI_200uL_Tips_tipspot_H5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 44.24, + "y": 6.81, + "z": 2.0 + }, + "position3d": { + "x": 44.24, + "y": 6.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_H5#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_H5#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_H5#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_H5#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 44.24, + "y": 6.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_A6", + "uuid": "9f0af66a-e9d7-426e-b151-3bd5e723bdde", + "name": "PRCXI_200uL_Tips_tipspot_A6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 53.24, + "y": 69.81, + "z": 2.0 + }, + "position3d": { + "x": 53.24, + "y": 69.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_A6#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_A6#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_A6#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_A6#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 53.24, + "y": 69.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_B6", + "uuid": "8175cfd8-6ab8-4961-9710-ac344492d60e", + "name": "PRCXI_200uL_Tips_tipspot_B6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 53.24, + "y": 60.81, + "z": 2.0 + }, + "position3d": { + "x": 53.24, + "y": 60.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_B6#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_B6#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_B6#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_B6#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 53.24, + "y": 60.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_C6", + "uuid": "65c2e6ab-0a89-48fa-ae5d-dec0c670b951", + "name": "PRCXI_200uL_Tips_tipspot_C6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 53.24, + "y": 51.81, + "z": 2.0 + }, + "position3d": { + "x": 53.24, + "y": 51.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_C6#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_C6#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_C6#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_C6#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 53.24, + "y": 51.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_D6", + "uuid": "90355287-37ba-4842-b81a-58a7214164cc", + "name": "PRCXI_200uL_Tips_tipspot_D6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 53.24, + "y": 42.81, + "z": 2.0 + }, + "position3d": { + "x": 53.24, + "y": 42.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_D6#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_D6#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_D6#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_D6#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 53.24, + "y": 42.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_E6", + "uuid": "db899908-0ed9-4267-81b0-875c7b1ac794", + "name": "PRCXI_200uL_Tips_tipspot_E6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 53.24, + "y": 33.81, + "z": 2.0 + }, + "position3d": { + "x": 53.24, + "y": 33.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_E6#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_E6#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_E6#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_E6#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 53.24, + "y": 33.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_F6", + "uuid": "03092502-30a9-4f10-9b3b-ba129eeae456", + "name": "PRCXI_200uL_Tips_tipspot_F6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 53.24, + "y": 24.81, + "z": 2.0 + }, + "position3d": { + "x": 53.24, + "y": 24.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_F6#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_F6#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_F6#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_F6#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 53.24, + "y": 24.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_G6", + "uuid": "2f248feb-b907-43c9-9f9e-b19950007f24", + "name": "PRCXI_200uL_Tips_tipspot_G6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 53.24, + "y": 15.81, + "z": 2.0 + }, + "position3d": { + "x": 53.24, + "y": 15.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_G6#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_G6#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_G6#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_G6#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 53.24, + "y": 15.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_H6", + "uuid": "1addad2f-17ee-44a0-afca-df1404a6e8c1", + "name": "PRCXI_200uL_Tips_tipspot_H6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 53.24, + "y": 6.81, + "z": 2.0 + }, + "position3d": { + "x": 53.24, + "y": 6.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_H6#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_H6#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_H6#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_H6#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 53.24, + "y": 6.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_A7", + "uuid": "1956cf72-c94d-4826-9401-6b0d5d6a8ca6", + "name": "PRCXI_200uL_Tips_tipspot_A7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 62.24, + "y": 69.81, + "z": 2.0 + }, + "position3d": { + "x": 62.24, + "y": 69.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_A7#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_A7#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_A7#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_A7#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 62.24, + "y": 69.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_B7", + "uuid": "13d1f430-bf11-49f7-a4b3-216af4474b6d", + "name": "PRCXI_200uL_Tips_tipspot_B7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 62.24, + "y": 60.81, + "z": 2.0 + }, + "position3d": { + "x": 62.24, + "y": 60.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_B7#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_B7#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_B7#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_B7#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 62.24, + "y": 60.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_C7", + "uuid": "ce13ed8c-1a79-45d7-96ff-003e31aaa041", + "name": "PRCXI_200uL_Tips_tipspot_C7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 62.24, + "y": 51.81, + "z": 2.0 + }, + "position3d": { + "x": 62.24, + "y": 51.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_C7#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_C7#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_C7#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_C7#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 62.24, + "y": 51.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_D7", + "uuid": "a981233b-bb70-4106-b648-038b90ec1e32", + "name": "PRCXI_200uL_Tips_tipspot_D7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 62.24, + "y": 42.81, + "z": 2.0 + }, + "position3d": { + "x": 62.24, + "y": 42.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_D7#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_D7#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_D7#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_D7#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 62.24, + "y": 42.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_E7", + "uuid": "fe1124e1-6c51-4fa9-b503-bc6e553327d2", + "name": "PRCXI_200uL_Tips_tipspot_E7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 62.24, + "y": 33.81, + "z": 2.0 + }, + "position3d": { + "x": 62.24, + "y": 33.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_E7#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_E7#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_E7#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_E7#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 62.24, + "y": 33.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_F7", + "uuid": "b76b31a3-0420-45a1-bbc0-20b15bc66ea5", + "name": "PRCXI_200uL_Tips_tipspot_F7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 62.24, + "y": 24.81, + "z": 2.0 + }, + "position3d": { + "x": 62.24, + "y": 24.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_F7#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_F7#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_F7#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_F7#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 62.24, + "y": 24.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_G7", + "uuid": "863270f1-b1c1-4a9a-a79d-d5eb49d02839", + "name": "PRCXI_200uL_Tips_tipspot_G7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 62.24, + "y": 15.81, + "z": 2.0 + }, + "position3d": { + "x": 62.24, + "y": 15.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_G7#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_G7#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_G7#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_G7#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 62.24, + "y": 15.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_H7", + "uuid": "02fd0a64-41b5-451a-8050-6f26b07b93b7", + "name": "PRCXI_200uL_Tips_tipspot_H7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 62.24, + "y": 6.81, + "z": 2.0 + }, + "position3d": { + "x": 62.24, + "y": 6.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_H7#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_H7#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_H7#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_H7#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 62.24, + "y": 6.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_A8", + "uuid": "af7f9d22-2a59-4d20-a5d4-8e9fc77aef10", + "name": "PRCXI_200uL_Tips_tipspot_A8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 71.24, + "y": 69.81, + "z": 2.0 + }, + "position3d": { + "x": 71.24, + "y": 69.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_A8#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_A8#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_A8#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_A8#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 71.24, + "y": 69.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_B8", + "uuid": "7a990bc9-3b43-4d4e-9f58-1c8c9adbdaeb", + "name": "PRCXI_200uL_Tips_tipspot_B8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 71.24, + "y": 60.81, + "z": 2.0 + }, + "position3d": { + "x": 71.24, + "y": 60.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_B8#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_B8#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_B8#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_B8#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 71.24, + "y": 60.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_C8", + "uuid": "96643c96-02ac-4512-a2c1-7208a1ffb0e1", + "name": "PRCXI_200uL_Tips_tipspot_C8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 71.24, + "y": 51.81, + "z": 2.0 + }, + "position3d": { + "x": 71.24, + "y": 51.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_C8#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_C8#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_C8#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_C8#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 71.24, + "y": 51.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_D8", + "uuid": "ceacf8e7-897a-487d-8efa-89bc420337b5", + "name": "PRCXI_200uL_Tips_tipspot_D8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 71.24, + "y": 42.81, + "z": 2.0 + }, + "position3d": { + "x": 71.24, + "y": 42.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_D8#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_D8#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_D8#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_D8#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 71.24, + "y": 42.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_E8", + "uuid": "29013193-206d-4c10-93cb-f4df104f512a", + "name": "PRCXI_200uL_Tips_tipspot_E8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 71.24, + "y": 33.81, + "z": 2.0 + }, + "position3d": { + "x": 71.24, + "y": 33.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_E8#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_E8#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_E8#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_E8#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 71.24, + "y": 33.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_F8", + "uuid": "60380bd8-3509-4798-9edd-467c1f0083c5", + "name": "PRCXI_200uL_Tips_tipspot_F8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 71.24, + "y": 24.81, + "z": 2.0 + }, + "position3d": { + "x": 71.24, + "y": 24.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_F8#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_F8#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_F8#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_F8#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 71.24, + "y": 24.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_G8", + "uuid": "958c7e7a-265c-4b80-b43e-abded2ca3dbe", + "name": "PRCXI_200uL_Tips_tipspot_G8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 71.24, + "y": 15.81, + "z": 2.0 + }, + "position3d": { + "x": 71.24, + "y": 15.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_G8#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_G8#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_G8#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_G8#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 71.24, + "y": 15.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_H8", + "uuid": "6835617d-a340-41b9-aadc-c3aacd144a9e", + "name": "PRCXI_200uL_Tips_tipspot_H8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 71.24, + "y": 6.81, + "z": 2.0 + }, + "position3d": { + "x": 71.24, + "y": 6.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_H8#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_H8#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_H8#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_H8#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 71.24, + "y": 6.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_A9", + "uuid": "656030f7-e1da-41b1-8358-a042520c3348", + "name": "PRCXI_200uL_Tips_tipspot_A9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 80.24, + "y": 69.81, + "z": 2.0 + }, + "position3d": { + "x": 80.24, + "y": 69.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_A9#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_A9#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_A9#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_A9#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 80.24, + "y": 69.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_B9", + "uuid": "b60fa5b6-a581-4397-aca9-53d0581ca79a", + "name": "PRCXI_200uL_Tips_tipspot_B9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 80.24, + "y": 60.81, + "z": 2.0 + }, + "position3d": { + "x": 80.24, + "y": 60.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_B9#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_B9#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_B9#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_B9#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 80.24, + "y": 60.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_C9", + "uuid": "e236d5dc-61cd-4a22-910b-f6fdfc25e576", + "name": "PRCXI_200uL_Tips_tipspot_C9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 80.24, + "y": 51.81, + "z": 2.0 + }, + "position3d": { + "x": 80.24, + "y": 51.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_C9#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_C9#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_C9#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_C9#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 80.24, + "y": 51.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_D9", + "uuid": "1f297f0a-8165-4794-a9c8-ee66025c5705", + "name": "PRCXI_200uL_Tips_tipspot_D9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 80.24, + "y": 42.81, + "z": 2.0 + }, + "position3d": { + "x": 80.24, + "y": 42.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_D9#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_D9#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_D9#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_D9#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 80.24, + "y": 42.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_E9", + "uuid": "ee4f3abe-1667-4625-958c-c09bf26f806b", + "name": "PRCXI_200uL_Tips_tipspot_E9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 80.24, + "y": 33.81, + "z": 2.0 + }, + "position3d": { + "x": 80.24, + "y": 33.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_E9#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_E9#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_E9#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_E9#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 80.24, + "y": 33.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_F9", + "uuid": "3b85bac8-3b9f-4748-b0c6-929f6ee1660b", + "name": "PRCXI_200uL_Tips_tipspot_F9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 80.24, + "y": 24.81, + "z": 2.0 + }, + "position3d": { + "x": 80.24, + "y": 24.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_F9#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_F9#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_F9#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_F9#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 80.24, + "y": 24.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_G9", + "uuid": "5374312a-ce13-40d9-bdbc-e953bcab2519", + "name": "PRCXI_200uL_Tips_tipspot_G9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 80.24, + "y": 15.81, + "z": 2.0 + }, + "position3d": { + "x": 80.24, + "y": 15.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_G9#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_G9#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_G9#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_G9#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 80.24, + "y": 15.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_H9", + "uuid": "df66d06c-bda6-42ba-a265-d1c6c035b849", + "name": "PRCXI_200uL_Tips_tipspot_H9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 80.24, + "y": 6.81, + "z": 2.0 + }, + "position3d": { + "x": 80.24, + "y": 6.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_H9#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_H9#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_H9#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_H9#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 80.24, + "y": 6.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_A10", + "uuid": "5725c544-9031-4bbc-8bb7-133d530c9120", + "name": "PRCXI_200uL_Tips_tipspot_A10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 89.24, + "y": 69.81, + "z": 2.0 + }, + "position3d": { + "x": 89.24, + "y": 69.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_A10#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_A10#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_A10#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_A10#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 89.24, + "y": 69.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_B10", + "uuid": "d260b16a-9194-4603-a462-7ba9c59f9b72", + "name": "PRCXI_200uL_Tips_tipspot_B10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 89.24, + "y": 60.81, + "z": 2.0 + }, + "position3d": { + "x": 89.24, + "y": 60.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_B10#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_B10#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_B10#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_B10#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 89.24, + "y": 60.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_C10", + "uuid": "023616ae-1070-4127-8efc-0406c25a9c4b", + "name": "PRCXI_200uL_Tips_tipspot_C10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 89.24, + "y": 51.81, + "z": 2.0 + }, + "position3d": { + "x": 89.24, + "y": 51.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_C10#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_C10#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_C10#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_C10#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 89.24, + "y": 51.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_D10", + "uuid": "e76b00ad-4175-43be-af48-a3201538b769", + "name": "PRCXI_200uL_Tips_tipspot_D10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 89.24, + "y": 42.81, + "z": 2.0 + }, + "position3d": { + "x": 89.24, + "y": 42.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_D10#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_D10#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_D10#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_D10#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 89.24, + "y": 42.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_E10", + "uuid": "9a867902-3ef7-4cbc-8ab8-7be0564a2274", + "name": "PRCXI_200uL_Tips_tipspot_E10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 89.24, + "y": 33.81, + "z": 2.0 + }, + "position3d": { + "x": 89.24, + "y": 33.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_E10#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_E10#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_E10#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_E10#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 89.24, + "y": 33.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_F10", + "uuid": "83c9a4cf-750d-413e-a560-2be21d121fc5", + "name": "PRCXI_200uL_Tips_tipspot_F10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 89.24, + "y": 24.81, + "z": 2.0 + }, + "position3d": { + "x": 89.24, + "y": 24.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_F10#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_F10#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_F10#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_F10#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 89.24, + "y": 24.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_G10", + "uuid": "5b549b22-cd60-4a6c-ab8a-a5ea7a2b750a", + "name": "PRCXI_200uL_Tips_tipspot_G10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 89.24, + "y": 15.81, + "z": 2.0 + }, + "position3d": { + "x": 89.24, + "y": 15.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_G10#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_G10#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_G10#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_G10#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 89.24, + "y": 15.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_H10", + "uuid": "2753a721-9902-482b-b54c-ee165de78216", + "name": "PRCXI_200uL_Tips_tipspot_H10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 89.24, + "y": 6.81, + "z": 2.0 + }, + "position3d": { + "x": 89.24, + "y": 6.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_H10#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_H10#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_H10#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_H10#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 89.24, + "y": 6.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_A11", + "uuid": "46ff68ef-9029-4d16-bd07-a97edadf12b1", + "name": "PRCXI_200uL_Tips_tipspot_A11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 98.24, + "y": 69.81, + "z": 2.0 + }, + "position3d": { + "x": 98.24, + "y": 69.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_A11#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_A11#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_A11#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_A11#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 98.24, + "y": 69.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_B11", + "uuid": "ae478caa-d8ef-4d1b-a6a7-8edf614e1218", + "name": "PRCXI_200uL_Tips_tipspot_B11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 98.24, + "y": 60.81, + "z": 2.0 + }, + "position3d": { + "x": 98.24, + "y": 60.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_B11#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_B11#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_B11#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_B11#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 98.24, + "y": 60.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_C11", + "uuid": "b96a60ff-52e1-49bf-9313-1426272846fc", + "name": "PRCXI_200uL_Tips_tipspot_C11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 98.24, + "y": 51.81, + "z": 2.0 + }, + "position3d": { + "x": 98.24, + "y": 51.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_C11#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_C11#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_C11#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_C11#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 98.24, + "y": 51.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_D11", + "uuid": "8ee688b0-46b5-4fdf-9443-f2a9e1765373", + "name": "PRCXI_200uL_Tips_tipspot_D11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 98.24, + "y": 42.81, + "z": 2.0 + }, + "position3d": { + "x": 98.24, + "y": 42.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_D11#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_D11#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_D11#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_D11#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 98.24, + "y": 42.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_E11", + "uuid": "bcb8e63d-83f4-4c60-8a6f-480bde731498", + "name": "PRCXI_200uL_Tips_tipspot_E11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 98.24, + "y": 33.81, + "z": 2.0 + }, + "position3d": { + "x": 98.24, + "y": 33.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_E11#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_E11#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_E11#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_E11#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 98.24, + "y": 33.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_F11", + "uuid": "c68b5d4f-e8c5-494f-977a-74fb7a82c081", + "name": "PRCXI_200uL_Tips_tipspot_F11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 98.24, + "y": 24.81, + "z": 2.0 + }, + "position3d": { + "x": 98.24, + "y": 24.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_F11#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_F11#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_F11#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_F11#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 98.24, + "y": 24.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_G11", + "uuid": "83aeff25-75d7-4b9b-a9de-9902a5e4dc40", + "name": "PRCXI_200uL_Tips_tipspot_G11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 98.24, + "y": 15.81, + "z": 2.0 + }, + "position3d": { + "x": 98.24, + "y": 15.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_G11#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_G11#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_G11#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_G11#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 98.24, + "y": 15.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_H11", + "uuid": "48a2b81a-9ac6-4c25-b6b0-4f755c28b034", + "name": "PRCXI_200uL_Tips_tipspot_H11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 98.24, + "y": 6.81, + "z": 2.0 + }, + "position3d": { + "x": 98.24, + "y": 6.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_H11#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_H11#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_H11#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_H11#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 98.24, + "y": 6.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_A12", + "uuid": "2b5bcd69-165f-4c74-97a5-fc4c60b7b273", + "name": "PRCXI_200uL_Tips_tipspot_A12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 107.24, + "y": 69.81, + "z": 2.0 + }, + "position3d": { + "x": 107.24, + "y": 69.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_A12#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_A12#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_A12#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_A12#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 107.24, + "y": 69.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_B12", + "uuid": "86aa631a-93ed-4590-adc8-4609c994e5a5", + "name": "PRCXI_200uL_Tips_tipspot_B12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 107.24, + "y": 60.81, + "z": 2.0 + }, + "position3d": { + "x": 107.24, + "y": 60.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_B12#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_B12#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_B12#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_B12#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 107.24, + "y": 60.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_C12", + "uuid": "0c372bac-eeda-4e43-91cb-d5d07e95bebe", + "name": "PRCXI_200uL_Tips_tipspot_C12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 107.24, + "y": 51.81, + "z": 2.0 + }, + "position3d": { + "x": 107.24, + "y": 51.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_C12#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_C12#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_C12#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_C12#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 107.24, + "y": 51.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_D12", + "uuid": "e915bc9b-1464-4b06-8727-d00358d91e08", + "name": "PRCXI_200uL_Tips_tipspot_D12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 107.24, + "y": 42.81, + "z": 2.0 + }, + "position3d": { + "x": 107.24, + "y": 42.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_D12#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_D12#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_D12#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_D12#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 107.24, + "y": 42.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_E12", + "uuid": "64991620-4133-4faf-bca2-cb8f6b373911", + "name": "PRCXI_200uL_Tips_tipspot_E12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 107.24, + "y": 33.81, + "z": 2.0 + }, + "position3d": { + "x": 107.24, + "y": 33.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_E12#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_E12#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_E12#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_E12#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 107.24, + "y": 33.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_F12", + "uuid": "15b0d238-d1b0-4fd2-9afa-12c64017bb9b", + "name": "PRCXI_200uL_Tips_tipspot_F12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 107.24, + "y": 24.81, + "z": 2.0 + }, + "position3d": { + "x": 107.24, + "y": 24.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_F12#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_F12#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_F12#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_F12#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 107.24, + "y": 24.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_G12", + "uuid": "88c1b934-9156-4fa7-a7b6-3b3aaf82d3e6", + "name": "PRCXI_200uL_Tips_tipspot_G12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 107.24, + "y": 15.81, + "z": 2.0 + }, + "position3d": { + "x": 107.24, + "y": 15.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_G12#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_G12#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_G12#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_G12#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 107.24, + "y": 15.81, + "z": 2.0 + } + }, + { + "id": "PRCXI_200uL_Tips_tipspot_H12", + "uuid": "0b975b09-6454-4beb-b939-2223a25170c3", + "name": "PRCXI_200uL_Tips_tipspot_H12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8ab83593-3d55-4e18-a070-03aed51c5fb7", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 107.24, + "y": 6.81, + "z": 2.0 + }, + "position3d": { + "x": 107.24, + "y": 6.81, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_H12#1", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_H12#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + }, + "tip_state": { + "thing": "PRCXI_200uL_Tips_tipspot_H12#0", + "max_volume": 200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_200uL_Tips_tipspot_H12#0", + "total_tip_length": 52.0, + "has_filter": false, + "maximal_volume": 200, + "fitting_depth": 5 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 107.24, + "y": 6.81, + "z": 2.0 + } + } + ] + }, + { + "id": "PRCXI_300ul_Tips", + "category": [ + "prcxi", + "tip_racks" + ], + "class": { + "module": "unilabos.devices.liquid_handling.prcxi.prcxi_labware:PRCXI_300ul_Tips", + "type": "pylabrobot" + }, + "description": "300μL Tip头 (Code: ZX-001-300)", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/prcxi/tip_racks.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "PRCXI_300ul_Tips", + "uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "name": "PRCXI_300ul_Tips", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "tip_rack", + "class": "", + "pose": { + "size": { + "depth": 58.23, + "width": 122.11, + "height": 85.48 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "PRCXI9300TipRack", + "size_x": 122.11, + "size_y": 85.48, + "size_z": 58.23, + "category": "tip_rack", + "model": "PRCXI_300ul_Tips", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "PRCXI_300ul_Tips_tipspot_A1", + "B1": "PRCXI_300ul_Tips_tipspot_B1", + "C1": "PRCXI_300ul_Tips_tipspot_C1", + "D1": "PRCXI_300ul_Tips_tipspot_D1", + "E1": "PRCXI_300ul_Tips_tipspot_E1", + "F1": "PRCXI_300ul_Tips_tipspot_F1", + "G1": "PRCXI_300ul_Tips_tipspot_G1", + "H1": "PRCXI_300ul_Tips_tipspot_H1", + "A2": "PRCXI_300ul_Tips_tipspot_A2", + "B2": "PRCXI_300ul_Tips_tipspot_B2", + "C2": "PRCXI_300ul_Tips_tipspot_C2", + "D2": "PRCXI_300ul_Tips_tipspot_D2", + "E2": "PRCXI_300ul_Tips_tipspot_E2", + "F2": "PRCXI_300ul_Tips_tipspot_F2", + "G2": "PRCXI_300ul_Tips_tipspot_G2", + "H2": "PRCXI_300ul_Tips_tipspot_H2", + "A3": "PRCXI_300ul_Tips_tipspot_A3", + "B3": "PRCXI_300ul_Tips_tipspot_B3", + "C3": "PRCXI_300ul_Tips_tipspot_C3", + "D3": "PRCXI_300ul_Tips_tipspot_D3", + "E3": "PRCXI_300ul_Tips_tipspot_E3", + "F3": "PRCXI_300ul_Tips_tipspot_F3", + "G3": "PRCXI_300ul_Tips_tipspot_G3", + "H3": "PRCXI_300ul_Tips_tipspot_H3", + "A4": "PRCXI_300ul_Tips_tipspot_A4", + "B4": "PRCXI_300ul_Tips_tipspot_B4", + "C4": "PRCXI_300ul_Tips_tipspot_C4", + "D4": "PRCXI_300ul_Tips_tipspot_D4", + "E4": "PRCXI_300ul_Tips_tipspot_E4", + "F4": "PRCXI_300ul_Tips_tipspot_F4", + "G4": "PRCXI_300ul_Tips_tipspot_G4", + "H4": "PRCXI_300ul_Tips_tipspot_H4", + "A5": "PRCXI_300ul_Tips_tipspot_A5", + "B5": "PRCXI_300ul_Tips_tipspot_B5", + "C5": "PRCXI_300ul_Tips_tipspot_C5", + "D5": "PRCXI_300ul_Tips_tipspot_D5", + "E5": "PRCXI_300ul_Tips_tipspot_E5", + "F5": "PRCXI_300ul_Tips_tipspot_F5", + "G5": "PRCXI_300ul_Tips_tipspot_G5", + "H5": "PRCXI_300ul_Tips_tipspot_H5", + "A6": "PRCXI_300ul_Tips_tipspot_A6", + "B6": "PRCXI_300ul_Tips_tipspot_B6", + "C6": "PRCXI_300ul_Tips_tipspot_C6", + "D6": "PRCXI_300ul_Tips_tipspot_D6", + "E6": "PRCXI_300ul_Tips_tipspot_E6", + "F6": "PRCXI_300ul_Tips_tipspot_F6", + "G6": "PRCXI_300ul_Tips_tipspot_G6", + "H6": "PRCXI_300ul_Tips_tipspot_H6", + "A7": "PRCXI_300ul_Tips_tipspot_A7", + "B7": "PRCXI_300ul_Tips_tipspot_B7", + "C7": "PRCXI_300ul_Tips_tipspot_C7", + "D7": "PRCXI_300ul_Tips_tipspot_D7", + "E7": "PRCXI_300ul_Tips_tipspot_E7", + "F7": "PRCXI_300ul_Tips_tipspot_F7", + "G7": "PRCXI_300ul_Tips_tipspot_G7", + "H7": "PRCXI_300ul_Tips_tipspot_H7", + "A8": "PRCXI_300ul_Tips_tipspot_A8", + "B8": "PRCXI_300ul_Tips_tipspot_B8", + "C8": "PRCXI_300ul_Tips_tipspot_C8", + "D8": "PRCXI_300ul_Tips_tipspot_D8", + "E8": "PRCXI_300ul_Tips_tipspot_E8", + "F8": "PRCXI_300ul_Tips_tipspot_F8", + "G8": "PRCXI_300ul_Tips_tipspot_G8", + "H8": "PRCXI_300ul_Tips_tipspot_H8", + "A9": "PRCXI_300ul_Tips_tipspot_A9", + "B9": "PRCXI_300ul_Tips_tipspot_B9", + "C9": "PRCXI_300ul_Tips_tipspot_C9", + "D9": "PRCXI_300ul_Tips_tipspot_D9", + "E9": "PRCXI_300ul_Tips_tipspot_E9", + "F9": "PRCXI_300ul_Tips_tipspot_F9", + "G9": "PRCXI_300ul_Tips_tipspot_G9", + "H9": "PRCXI_300ul_Tips_tipspot_H9", + "A10": "PRCXI_300ul_Tips_tipspot_A10", + "B10": "PRCXI_300ul_Tips_tipspot_B10", + "C10": "PRCXI_300ul_Tips_tipspot_C10", + "D10": "PRCXI_300ul_Tips_tipspot_D10", + "E10": "PRCXI_300ul_Tips_tipspot_E10", + "F10": "PRCXI_300ul_Tips_tipspot_F10", + "G10": "PRCXI_300ul_Tips_tipspot_G10", + "H10": "PRCXI_300ul_Tips_tipspot_H10", + "A11": "PRCXI_300ul_Tips_tipspot_A11", + "B11": "PRCXI_300ul_Tips_tipspot_B11", + "C11": "PRCXI_300ul_Tips_tipspot_C11", + "D11": "PRCXI_300ul_Tips_tipspot_D11", + "E11": "PRCXI_300ul_Tips_tipspot_E11", + "F11": "PRCXI_300ul_Tips_tipspot_F11", + "G11": "PRCXI_300ul_Tips_tipspot_G11", + "H11": "PRCXI_300ul_Tips_tipspot_H11", + "A12": "PRCXI_300ul_Tips_tipspot_A12", + "B12": "PRCXI_300ul_Tips_tipspot_B12", + "C12": "PRCXI_300ul_Tips_tipspot_C12", + "D12": "PRCXI_300ul_Tips_tipspot_D12", + "E12": "PRCXI_300ul_Tips_tipspot_E12", + "F12": "PRCXI_300ul_Tips_tipspot_F12", + "G12": "PRCXI_300ul_Tips_tipspot_G12", + "H12": "PRCXI_300ul_Tips_tipspot_H12" + } + }, + "data": { + "Material": { + "uuid": "076250742950465b9d6ea29a225dfb00", + "Code": "ZX-001-300", + "Name": "300μL Tip头", + "SupplyType": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_A1", + "uuid": "6ef3fdbe-d39d-44b8-a035-22b0b081433c", + "name": "PRCXI_300ul_Tips_tipspot_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 7.97, + "y": 68.0, + "z": 2.0 + }, + "position3d": { + "x": 7.97, + "y": 68.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_A1#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_A1#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_A1#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_A1#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 7.97, + "y": 68.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_B1", + "uuid": "e901509d-c1af-40db-bdcc-2875a73eb827", + "name": "PRCXI_300ul_Tips_tipspot_B1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 7.97, + "y": 59.0, + "z": 2.0 + }, + "position3d": { + "x": 7.97, + "y": 59.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_B1#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_B1#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_B1#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_B1#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 7.97, + "y": 59.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_C1", + "uuid": "ee43637a-4ad9-4f31-b5c1-e79b4268c652", + "name": "PRCXI_300ul_Tips_tipspot_C1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 7.97, + "y": 50.0, + "z": 2.0 + }, + "position3d": { + "x": 7.97, + "y": 50.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_C1#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_C1#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_C1#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_C1#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 7.97, + "y": 50.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_D1", + "uuid": "2611fe37-4e3f-418b-a326-b7c5c2cfe07b", + "name": "PRCXI_300ul_Tips_tipspot_D1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 7.97, + "y": 41.0, + "z": 2.0 + }, + "position3d": { + "x": 7.97, + "y": 41.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_D1#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_D1#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_D1#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_D1#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 7.97, + "y": 41.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_E1", + "uuid": "23889681-0909-468e-ba19-6da38ab7697c", + "name": "PRCXI_300ul_Tips_tipspot_E1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 7.97, + "y": 32.0, + "z": 2.0 + }, + "position3d": { + "x": 7.97, + "y": 32.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_E1#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_E1#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_E1#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_E1#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 7.97, + "y": 32.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_F1", + "uuid": "790252d3-fa41-43b1-9b76-2d992004f3a0", + "name": "PRCXI_300ul_Tips_tipspot_F1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 7.97, + "y": 23.0, + "z": 2.0 + }, + "position3d": { + "x": 7.97, + "y": 23.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_F1#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_F1#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_F1#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_F1#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 7.97, + "y": 23.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_G1", + "uuid": "6920c4d3-0bee-44e4-86f7-d1f99f00351a", + "name": "PRCXI_300ul_Tips_tipspot_G1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 7.97, + "y": 14.0, + "z": 2.0 + }, + "position3d": { + "x": 7.97, + "y": 14.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_G1#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_G1#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_G1#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_G1#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 7.97, + "y": 14.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_H1", + "uuid": "acda7591-8829-42ca-9e44-3aa28975f464", + "name": "PRCXI_300ul_Tips_tipspot_H1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 7.97, + "y": 5.0, + "z": 2.0 + }, + "position3d": { + "x": 7.97, + "y": 5.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_H1#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_H1#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_H1#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_H1#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 7.97, + "y": 5.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_A2", + "uuid": "177cf7e0-3dc1-40db-9780-bbd11f21b25f", + "name": "PRCXI_300ul_Tips_tipspot_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 16.97, + "y": 68.0, + "z": 2.0 + }, + "position3d": { + "x": 16.97, + "y": 68.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_A2#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_A2#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_A2#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_A2#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 16.97, + "y": 68.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_B2", + "uuid": "ac9dccc5-5d40-43cb-96c2-5b1232268dce", + "name": "PRCXI_300ul_Tips_tipspot_B2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 16.97, + "y": 59.0, + "z": 2.0 + }, + "position3d": { + "x": 16.97, + "y": 59.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_B2#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_B2#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_B2#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_B2#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 16.97, + "y": 59.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_C2", + "uuid": "64b32a20-c965-4f2d-87bc-60a6f8751ec5", + "name": "PRCXI_300ul_Tips_tipspot_C2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 16.97, + "y": 50.0, + "z": 2.0 + }, + "position3d": { + "x": 16.97, + "y": 50.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_C2#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_C2#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_C2#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_C2#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 16.97, + "y": 50.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_D2", + "uuid": "8918fe3e-7cdc-4382-8553-ff63e6bd6dde", + "name": "PRCXI_300ul_Tips_tipspot_D2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 16.97, + "y": 41.0, + "z": 2.0 + }, + "position3d": { + "x": 16.97, + "y": 41.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_D2#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_D2#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_D2#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_D2#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 16.97, + "y": 41.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_E2", + "uuid": "667226b6-76fc-4219-8212-5cf6a484ac0f", + "name": "PRCXI_300ul_Tips_tipspot_E2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 16.97, + "y": 32.0, + "z": 2.0 + }, + "position3d": { + "x": 16.97, + "y": 32.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_E2#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_E2#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_E2#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_E2#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 16.97, + "y": 32.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_F2", + "uuid": "1e0ef87b-a63e-4502-9d73-a949003a5ac6", + "name": "PRCXI_300ul_Tips_tipspot_F2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 16.97, + "y": 23.0, + "z": 2.0 + }, + "position3d": { + "x": 16.97, + "y": 23.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_F2#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_F2#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_F2#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_F2#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 16.97, + "y": 23.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_G2", + "uuid": "f114802d-12cf-424a-8e73-fdf08bc2c3fd", + "name": "PRCXI_300ul_Tips_tipspot_G2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 16.97, + "y": 14.0, + "z": 2.0 + }, + "position3d": { + "x": 16.97, + "y": 14.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_G2#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_G2#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_G2#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_G2#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 16.97, + "y": 14.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_H2", + "uuid": "d280a0fb-fcd2-42bd-934d-13b243ddb238", + "name": "PRCXI_300ul_Tips_tipspot_H2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 16.97, + "y": 5.0, + "z": 2.0 + }, + "position3d": { + "x": 16.97, + "y": 5.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_H2#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_H2#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_H2#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_H2#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 16.97, + "y": 5.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_A3", + "uuid": "87ac4b7e-74f0-490d-a692-1ec4f488ce12", + "name": "PRCXI_300ul_Tips_tipspot_A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 25.97, + "y": 68.0, + "z": 2.0 + }, + "position3d": { + "x": 25.97, + "y": 68.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_A3#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_A3#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_A3#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_A3#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 25.97, + "y": 68.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_B3", + "uuid": "4b56473e-e2fa-44fe-8d3c-f241447a08dc", + "name": "PRCXI_300ul_Tips_tipspot_B3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 25.97, + "y": 59.0, + "z": 2.0 + }, + "position3d": { + "x": 25.97, + "y": 59.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_B3#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_B3#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_B3#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_B3#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 25.97, + "y": 59.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_C3", + "uuid": "40558b2c-4d43-4afb-9564-55c888d09151", + "name": "PRCXI_300ul_Tips_tipspot_C3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 25.97, + "y": 50.0, + "z": 2.0 + }, + "position3d": { + "x": 25.97, + "y": 50.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_C3#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_C3#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_C3#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_C3#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 25.97, + "y": 50.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_D3", + "uuid": "e771b6b0-0d51-4c4f-8d1c-767caca5f0e8", + "name": "PRCXI_300ul_Tips_tipspot_D3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 25.97, + "y": 41.0, + "z": 2.0 + }, + "position3d": { + "x": 25.97, + "y": 41.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_D3#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_D3#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_D3#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_D3#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 25.97, + "y": 41.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_E3", + "uuid": "47aefd24-45b4-46cf-bb17-4a61d13440a3", + "name": "PRCXI_300ul_Tips_tipspot_E3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 25.97, + "y": 32.0, + "z": 2.0 + }, + "position3d": { + "x": 25.97, + "y": 32.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_E3#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_E3#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_E3#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_E3#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 25.97, + "y": 32.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_F3", + "uuid": "d0b1183a-0a22-42cc-9a3d-850b620226e6", + "name": "PRCXI_300ul_Tips_tipspot_F3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 25.97, + "y": 23.0, + "z": 2.0 + }, + "position3d": { + "x": 25.97, + "y": 23.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_F3#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_F3#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_F3#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_F3#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 25.97, + "y": 23.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_G3", + "uuid": "b1796ba6-9b3b-475b-8fc0-001c00b0467c", + "name": "PRCXI_300ul_Tips_tipspot_G3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 25.97, + "y": 14.0, + "z": 2.0 + }, + "position3d": { + "x": 25.97, + "y": 14.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_G3#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_G3#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_G3#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_G3#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 25.97, + "y": 14.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_H3", + "uuid": "c840b84e-c855-4ed0-93e4-316452712769", + "name": "PRCXI_300ul_Tips_tipspot_H3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 25.97, + "y": 5.0, + "z": 2.0 + }, + "position3d": { + "x": 25.97, + "y": 5.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_H3#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_H3#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_H3#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_H3#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 25.97, + "y": 5.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_A4", + "uuid": "6cf4ec55-a7a8-43fa-b726-e9dad3679b32", + "name": "PRCXI_300ul_Tips_tipspot_A4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 34.97, + "y": 68.0, + "z": 2.0 + }, + "position3d": { + "x": 34.97, + "y": 68.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_A4#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_A4#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_A4#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_A4#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 34.97, + "y": 68.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_B4", + "uuid": "b29a9a30-87fa-43ac-8628-ac9ca1600447", + "name": "PRCXI_300ul_Tips_tipspot_B4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 34.97, + "y": 59.0, + "z": 2.0 + }, + "position3d": { + "x": 34.97, + "y": 59.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_B4#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_B4#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_B4#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_B4#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 34.97, + "y": 59.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_C4", + "uuid": "c35e74de-c1e2-4433-9ed4-11129fa19887", + "name": "PRCXI_300ul_Tips_tipspot_C4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 34.97, + "y": 50.0, + "z": 2.0 + }, + "position3d": { + "x": 34.97, + "y": 50.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_C4#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_C4#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_C4#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_C4#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 34.97, + "y": 50.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_D4", + "uuid": "5d449256-787f-458c-b992-6a44ef286454", + "name": "PRCXI_300ul_Tips_tipspot_D4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 34.97, + "y": 41.0, + "z": 2.0 + }, + "position3d": { + "x": 34.97, + "y": 41.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_D4#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_D4#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_D4#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_D4#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 34.97, + "y": 41.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_E4", + "uuid": "4d7e7643-9b24-4782-b807-6568bc1c2f8c", + "name": "PRCXI_300ul_Tips_tipspot_E4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 34.97, + "y": 32.0, + "z": 2.0 + }, + "position3d": { + "x": 34.97, + "y": 32.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_E4#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_E4#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_E4#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_E4#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 34.97, + "y": 32.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_F4", + "uuid": "f6d75ec5-41cb-46ea-8284-a1f673a10663", + "name": "PRCXI_300ul_Tips_tipspot_F4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 34.97, + "y": 23.0, + "z": 2.0 + }, + "position3d": { + "x": 34.97, + "y": 23.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_F4#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_F4#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_F4#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_F4#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 34.97, + "y": 23.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_G4", + "uuid": "b0ffa773-2dfc-493d-8129-9834e9761443", + "name": "PRCXI_300ul_Tips_tipspot_G4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 34.97, + "y": 14.0, + "z": 2.0 + }, + "position3d": { + "x": 34.97, + "y": 14.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_G4#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_G4#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_G4#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_G4#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 34.97, + "y": 14.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_H4", + "uuid": "98dea198-60f9-4c33-97f4-6ef23895c23d", + "name": "PRCXI_300ul_Tips_tipspot_H4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 34.97, + "y": 5.0, + "z": 2.0 + }, + "position3d": { + "x": 34.97, + "y": 5.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_H4#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_H4#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_H4#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_H4#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 34.97, + "y": 5.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_A5", + "uuid": "075e0fb6-bcc2-402e-a3b7-6db25b5eb669", + "name": "PRCXI_300ul_Tips_tipspot_A5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 43.97, + "y": 68.0, + "z": 2.0 + }, + "position3d": { + "x": 43.97, + "y": 68.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_A5#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_A5#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_A5#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_A5#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 43.97, + "y": 68.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_B5", + "uuid": "15a9bb88-a679-4765-9dc7-697e0d467221", + "name": "PRCXI_300ul_Tips_tipspot_B5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 43.97, + "y": 59.0, + "z": 2.0 + }, + "position3d": { + "x": 43.97, + "y": 59.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_B5#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_B5#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_B5#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_B5#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 43.97, + "y": 59.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_C5", + "uuid": "6248c10e-57e6-43b5-88d0-cc4c7c7b07a0", + "name": "PRCXI_300ul_Tips_tipspot_C5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 43.97, + "y": 50.0, + "z": 2.0 + }, + "position3d": { + "x": 43.97, + "y": 50.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_C5#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_C5#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_C5#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_C5#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 43.97, + "y": 50.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_D5", + "uuid": "e7cf858f-50bc-4aba-bf07-92f4821399e1", + "name": "PRCXI_300ul_Tips_tipspot_D5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 43.97, + "y": 41.0, + "z": 2.0 + }, + "position3d": { + "x": 43.97, + "y": 41.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_D5#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_D5#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_D5#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_D5#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 43.97, + "y": 41.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_E5", + "uuid": "b8a0ca4e-474b-42bb-9771-c9cd875fabbd", + "name": "PRCXI_300ul_Tips_tipspot_E5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 43.97, + "y": 32.0, + "z": 2.0 + }, + "position3d": { + "x": 43.97, + "y": 32.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_E5#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_E5#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_E5#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_E5#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 43.97, + "y": 32.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_F5", + "uuid": "9e558bd4-1f97-4d88-b1df-f2344a666fe3", + "name": "PRCXI_300ul_Tips_tipspot_F5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 43.97, + "y": 23.0, + "z": 2.0 + }, + "position3d": { + "x": 43.97, + "y": 23.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_F5#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_F5#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_F5#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_F5#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 43.97, + "y": 23.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_G5", + "uuid": "9a60ab2d-91e8-4e76-8167-9732984fe01a", + "name": "PRCXI_300ul_Tips_tipspot_G5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 43.97, + "y": 14.0, + "z": 2.0 + }, + "position3d": { + "x": 43.97, + "y": 14.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_G5#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_G5#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_G5#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_G5#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 43.97, + "y": 14.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_H5", + "uuid": "823d0e65-11a6-42a6-90ec-865eefce416f", + "name": "PRCXI_300ul_Tips_tipspot_H5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 43.97, + "y": 5.0, + "z": 2.0 + }, + "position3d": { + "x": 43.97, + "y": 5.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_H5#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_H5#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_H5#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_H5#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 43.97, + "y": 5.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_A6", + "uuid": "0c8f385a-c515-4cf7-a8d7-476769810c42", + "name": "PRCXI_300ul_Tips_tipspot_A6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 52.97, + "y": 68.0, + "z": 2.0 + }, + "position3d": { + "x": 52.97, + "y": 68.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_A6#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_A6#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_A6#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_A6#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 52.97, + "y": 68.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_B6", + "uuid": "a907e053-472a-42f3-8812-61ad2d69e8e4", + "name": "PRCXI_300ul_Tips_tipspot_B6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 52.97, + "y": 59.0, + "z": 2.0 + }, + "position3d": { + "x": 52.97, + "y": 59.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_B6#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_B6#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_B6#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_B6#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 52.97, + "y": 59.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_C6", + "uuid": "f0624f2f-bfb6-420f-b920-32d2ccb07c61", + "name": "PRCXI_300ul_Tips_tipspot_C6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 52.97, + "y": 50.0, + "z": 2.0 + }, + "position3d": { + "x": 52.97, + "y": 50.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_C6#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_C6#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_C6#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_C6#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 52.97, + "y": 50.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_D6", + "uuid": "1ef1f6ab-f0df-4bbf-890b-7f21d5f4a6ab", + "name": "PRCXI_300ul_Tips_tipspot_D6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 52.97, + "y": 41.0, + "z": 2.0 + }, + "position3d": { + "x": 52.97, + "y": 41.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_D6#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_D6#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_D6#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_D6#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 52.97, + "y": 41.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_E6", + "uuid": "b309df8f-af12-4449-b53e-95fd1793e15f", + "name": "PRCXI_300ul_Tips_tipspot_E6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 52.97, + "y": 32.0, + "z": 2.0 + }, + "position3d": { + "x": 52.97, + "y": 32.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_E6#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_E6#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_E6#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_E6#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 52.97, + "y": 32.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_F6", + "uuid": "e2f15296-9600-4567-a4ba-3135e92ce371", + "name": "PRCXI_300ul_Tips_tipspot_F6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 52.97, + "y": 23.0, + "z": 2.0 + }, + "position3d": { + "x": 52.97, + "y": 23.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_F6#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_F6#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_F6#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_F6#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 52.97, + "y": 23.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_G6", + "uuid": "a6f74ae4-76a8-4d8a-9a43-6f457f6aa785", + "name": "PRCXI_300ul_Tips_tipspot_G6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 52.97, + "y": 14.0, + "z": 2.0 + }, + "position3d": { + "x": 52.97, + "y": 14.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_G6#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_G6#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_G6#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_G6#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 52.97, + "y": 14.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_H6", + "uuid": "9b708e8f-1afe-4f90-998c-a596ae14ed51", + "name": "PRCXI_300ul_Tips_tipspot_H6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 52.97, + "y": 5.0, + "z": 2.0 + }, + "position3d": { + "x": 52.97, + "y": 5.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_H6#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_H6#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_H6#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_H6#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 52.97, + "y": 5.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_A7", + "uuid": "39c5b431-bfea-4c8d-bb7b-0755293a2412", + "name": "PRCXI_300ul_Tips_tipspot_A7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 61.97, + "y": 68.0, + "z": 2.0 + }, + "position3d": { + "x": 61.97, + "y": 68.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_A7#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_A7#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_A7#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_A7#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 61.97, + "y": 68.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_B7", + "uuid": "2a0557f8-2423-484b-9625-5c255b455688", + "name": "PRCXI_300ul_Tips_tipspot_B7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 61.97, + "y": 59.0, + "z": 2.0 + }, + "position3d": { + "x": 61.97, + "y": 59.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_B7#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_B7#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_B7#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_B7#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 61.97, + "y": 59.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_C7", + "uuid": "1396f613-1fcc-4b63-9d04-c5814c304959", + "name": "PRCXI_300ul_Tips_tipspot_C7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 61.97, + "y": 50.0, + "z": 2.0 + }, + "position3d": { + "x": 61.97, + "y": 50.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_C7#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_C7#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_C7#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_C7#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 61.97, + "y": 50.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_D7", + "uuid": "7a84dbcd-a170-4847-94dc-0c9a3c759cec", + "name": "PRCXI_300ul_Tips_tipspot_D7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 61.97, + "y": 41.0, + "z": 2.0 + }, + "position3d": { + "x": 61.97, + "y": 41.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_D7#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_D7#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_D7#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_D7#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 61.97, + "y": 41.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_E7", + "uuid": "74060b2d-064c-46e2-8c53-7ddc00a141b6", + "name": "PRCXI_300ul_Tips_tipspot_E7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 61.97, + "y": 32.0, + "z": 2.0 + }, + "position3d": { + "x": 61.97, + "y": 32.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_E7#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_E7#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_E7#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_E7#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 61.97, + "y": 32.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_F7", + "uuid": "8e9313e4-d33f-4e67-a76d-7c6e4d8c2eee", + "name": "PRCXI_300ul_Tips_tipspot_F7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 61.97, + "y": 23.0, + "z": 2.0 + }, + "position3d": { + "x": 61.97, + "y": 23.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_F7#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_F7#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_F7#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_F7#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 61.97, + "y": 23.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_G7", + "uuid": "d77f5e07-f812-4520-99b6-a1883db52c8b", + "name": "PRCXI_300ul_Tips_tipspot_G7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 61.97, + "y": 14.0, + "z": 2.0 + }, + "position3d": { + "x": 61.97, + "y": 14.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_G7#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_G7#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_G7#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_G7#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 61.97, + "y": 14.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_H7", + "uuid": "8b406819-3e0b-4e27-b6b6-b15807bca140", + "name": "PRCXI_300ul_Tips_tipspot_H7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 61.97, + "y": 5.0, + "z": 2.0 + }, + "position3d": { + "x": 61.97, + "y": 5.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_H7#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_H7#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_H7#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_H7#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 61.97, + "y": 5.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_A8", + "uuid": "18b90362-3d3b-4017-a723-667e8f92dfe6", + "name": "PRCXI_300ul_Tips_tipspot_A8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 70.97, + "y": 68.0, + "z": 2.0 + }, + "position3d": { + "x": 70.97, + "y": 68.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_A8#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_A8#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_A8#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_A8#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 70.97, + "y": 68.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_B8", + "uuid": "bc8ef791-6978-4dcd-a41d-c2dc744d83fc", + "name": "PRCXI_300ul_Tips_tipspot_B8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 70.97, + "y": 59.0, + "z": 2.0 + }, + "position3d": { + "x": 70.97, + "y": 59.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_B8#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_B8#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_B8#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_B8#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 70.97, + "y": 59.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_C8", + "uuid": "436ebf98-9121-4143-909d-a7dd3ddc37e7", + "name": "PRCXI_300ul_Tips_tipspot_C8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 70.97, + "y": 50.0, + "z": 2.0 + }, + "position3d": { + "x": 70.97, + "y": 50.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_C8#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_C8#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_C8#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_C8#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 70.97, + "y": 50.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_D8", + "uuid": "a27e023a-5ead-41f2-9444-c5dffc4691db", + "name": "PRCXI_300ul_Tips_tipspot_D8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 70.97, + "y": 41.0, + "z": 2.0 + }, + "position3d": { + "x": 70.97, + "y": 41.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_D8#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_D8#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_D8#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_D8#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 70.97, + "y": 41.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_E8", + "uuid": "367d1aa0-20e8-48f8-9dd2-e586b4cdf517", + "name": "PRCXI_300ul_Tips_tipspot_E8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 70.97, + "y": 32.0, + "z": 2.0 + }, + "position3d": { + "x": 70.97, + "y": 32.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_E8#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_E8#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_E8#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_E8#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 70.97, + "y": 32.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_F8", + "uuid": "6ea7da14-f6c7-46c4-b091-699d22aec2e1", + "name": "PRCXI_300ul_Tips_tipspot_F8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 70.97, + "y": 23.0, + "z": 2.0 + }, + "position3d": { + "x": 70.97, + "y": 23.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_F8#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_F8#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_F8#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_F8#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 70.97, + "y": 23.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_G8", + "uuid": "09558cca-4c40-48f6-9c5a-326708b76bd9", + "name": "PRCXI_300ul_Tips_tipspot_G8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 70.97, + "y": 14.0, + "z": 2.0 + }, + "position3d": { + "x": 70.97, + "y": 14.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_G8#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_G8#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_G8#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_G8#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 70.97, + "y": 14.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_H8", + "uuid": "b0559116-109f-47c1-a42f-6297feababf6", + "name": "PRCXI_300ul_Tips_tipspot_H8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 70.97, + "y": 5.0, + "z": 2.0 + }, + "position3d": { + "x": 70.97, + "y": 5.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_H8#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_H8#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_H8#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_H8#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 70.97, + "y": 5.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_A9", + "uuid": "5f82cbdd-638b-435d-9d07-a938abca4d5d", + "name": "PRCXI_300ul_Tips_tipspot_A9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 79.97, + "y": 68.0, + "z": 2.0 + }, + "position3d": { + "x": 79.97, + "y": 68.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_A9#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_A9#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_A9#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_A9#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 79.97, + "y": 68.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_B9", + "uuid": "2cd9fb4f-021a-445c-8ee0-47f04624c629", + "name": "PRCXI_300ul_Tips_tipspot_B9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 79.97, + "y": 59.0, + "z": 2.0 + }, + "position3d": { + "x": 79.97, + "y": 59.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_B9#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_B9#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_B9#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_B9#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 79.97, + "y": 59.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_C9", + "uuid": "5ced637f-b530-43b7-9821-fa9f358e629a", + "name": "PRCXI_300ul_Tips_tipspot_C9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 79.97, + "y": 50.0, + "z": 2.0 + }, + "position3d": { + "x": 79.97, + "y": 50.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_C9#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_C9#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_C9#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_C9#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 79.97, + "y": 50.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_D9", + "uuid": "e03f187c-a08e-421a-85b4-1a5e3b17501b", + "name": "PRCXI_300ul_Tips_tipspot_D9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 79.97, + "y": 41.0, + "z": 2.0 + }, + "position3d": { + "x": 79.97, + "y": 41.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_D9#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_D9#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_D9#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_D9#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 79.97, + "y": 41.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_E9", + "uuid": "8b1e6038-9f59-4078-ae31-ff526b2cb5c6", + "name": "PRCXI_300ul_Tips_tipspot_E9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 79.97, + "y": 32.0, + "z": 2.0 + }, + "position3d": { + "x": 79.97, + "y": 32.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_E9#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_E9#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_E9#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_E9#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 79.97, + "y": 32.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_F9", + "uuid": "16a40ee4-01d1-4919-8c0d-58863c6862e4", + "name": "PRCXI_300ul_Tips_tipspot_F9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 79.97, + "y": 23.0, + "z": 2.0 + }, + "position3d": { + "x": 79.97, + "y": 23.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_F9#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_F9#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_F9#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_F9#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 79.97, + "y": 23.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_G9", + "uuid": "aa9cfea3-7397-4464-8b0d-bab7d09f499c", + "name": "PRCXI_300ul_Tips_tipspot_G9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 79.97, + "y": 14.0, + "z": 2.0 + }, + "position3d": { + "x": 79.97, + "y": 14.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_G9#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_G9#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_G9#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_G9#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 79.97, + "y": 14.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_H9", + "uuid": "e34289e8-465d-4abc-88b8-812cef0c76ec", + "name": "PRCXI_300ul_Tips_tipspot_H9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 79.97, + "y": 5.0, + "z": 2.0 + }, + "position3d": { + "x": 79.97, + "y": 5.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_H9#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_H9#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_H9#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_H9#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 79.97, + "y": 5.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_A10", + "uuid": "22ae1465-6bbf-4230-bab2-1ddc8da05e1e", + "name": "PRCXI_300ul_Tips_tipspot_A10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 88.97, + "y": 68.0, + "z": 2.0 + }, + "position3d": { + "x": 88.97, + "y": 68.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_A10#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_A10#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_A10#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_A10#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 88.97, + "y": 68.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_B10", + "uuid": "163a980d-264b-49ed-98a1-24869b21999e", + "name": "PRCXI_300ul_Tips_tipspot_B10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 88.97, + "y": 59.0, + "z": 2.0 + }, + "position3d": { + "x": 88.97, + "y": 59.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_B10#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_B10#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_B10#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_B10#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 88.97, + "y": 59.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_C10", + "uuid": "61875645-e870-481f-8fa2-ebb88aaa1e67", + "name": "PRCXI_300ul_Tips_tipspot_C10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 88.97, + "y": 50.0, + "z": 2.0 + }, + "position3d": { + "x": 88.97, + "y": 50.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_C10#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_C10#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_C10#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_C10#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 88.97, + "y": 50.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_D10", + "uuid": "a75e795f-6b3f-4bec-b97f-790c890b1a9b", + "name": "PRCXI_300ul_Tips_tipspot_D10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 88.97, + "y": 41.0, + "z": 2.0 + }, + "position3d": { + "x": 88.97, + "y": 41.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_D10#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_D10#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_D10#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_D10#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 88.97, + "y": 41.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_E10", + "uuid": "aa260575-cc5f-4463-b472-5a7a8582728f", + "name": "PRCXI_300ul_Tips_tipspot_E10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 88.97, + "y": 32.0, + "z": 2.0 + }, + "position3d": { + "x": 88.97, + "y": 32.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_E10#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_E10#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_E10#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_E10#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 88.97, + "y": 32.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_F10", + "uuid": "e34dc553-0f94-40d5-b94c-ca7d530e5522", + "name": "PRCXI_300ul_Tips_tipspot_F10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 88.97, + "y": 23.0, + "z": 2.0 + }, + "position3d": { + "x": 88.97, + "y": 23.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_F10#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_F10#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_F10#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_F10#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 88.97, + "y": 23.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_G10", + "uuid": "2ce5883a-a5a4-41a4-aa7c-6dba884cc384", + "name": "PRCXI_300ul_Tips_tipspot_G10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 88.97, + "y": 14.0, + "z": 2.0 + }, + "position3d": { + "x": 88.97, + "y": 14.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_G10#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_G10#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_G10#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_G10#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 88.97, + "y": 14.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_H10", + "uuid": "90b85a7f-eb7c-4f5d-a27f-d85ffce91778", + "name": "PRCXI_300ul_Tips_tipspot_H10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 88.97, + "y": 5.0, + "z": 2.0 + }, + "position3d": { + "x": 88.97, + "y": 5.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_H10#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_H10#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_H10#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_H10#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 88.97, + "y": 5.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_A11", + "uuid": "7195ca1c-5b91-4216-b861-2bc022e896d6", + "name": "PRCXI_300ul_Tips_tipspot_A11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 97.97, + "y": 68.0, + "z": 2.0 + }, + "position3d": { + "x": 97.97, + "y": 68.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_A11#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_A11#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_A11#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_A11#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 97.97, + "y": 68.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_B11", + "uuid": "7f12e6fb-cfdf-4738-bf52-a64a1557a5f6", + "name": "PRCXI_300ul_Tips_tipspot_B11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 97.97, + "y": 59.0, + "z": 2.0 + }, + "position3d": { + "x": 97.97, + "y": 59.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_B11#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_B11#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_B11#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_B11#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 97.97, + "y": 59.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_C11", + "uuid": "f74a37b1-3559-49db-b48f-242663c975de", + "name": "PRCXI_300ul_Tips_tipspot_C11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 97.97, + "y": 50.0, + "z": 2.0 + }, + "position3d": { + "x": 97.97, + "y": 50.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_C11#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_C11#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_C11#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_C11#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 97.97, + "y": 50.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_D11", + "uuid": "a7d8f94d-85ba-4d80-a7ba-d4529f92a86c", + "name": "PRCXI_300ul_Tips_tipspot_D11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 97.97, + "y": 41.0, + "z": 2.0 + }, + "position3d": { + "x": 97.97, + "y": 41.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_D11#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_D11#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_D11#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_D11#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 97.97, + "y": 41.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_E11", + "uuid": "240e0807-4bb8-4d14-96b3-f3617e1d3d82", + "name": "PRCXI_300ul_Tips_tipspot_E11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 97.97, + "y": 32.0, + "z": 2.0 + }, + "position3d": { + "x": 97.97, + "y": 32.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_E11#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_E11#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_E11#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_E11#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 97.97, + "y": 32.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_F11", + "uuid": "89fd39c6-c356-448d-b53e-85f16c6b1ba7", + "name": "PRCXI_300ul_Tips_tipspot_F11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 97.97, + "y": 23.0, + "z": 2.0 + }, + "position3d": { + "x": 97.97, + "y": 23.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_F11#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_F11#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_F11#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_F11#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 97.97, + "y": 23.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_G11", + "uuid": "78a9e726-1002-4c47-bc20-b67e133e2b95", + "name": "PRCXI_300ul_Tips_tipspot_G11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 97.97, + "y": 14.0, + "z": 2.0 + }, + "position3d": { + "x": 97.97, + "y": 14.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_G11#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_G11#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_G11#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_G11#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 97.97, + "y": 14.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_H11", + "uuid": "26222b4c-07f9-4d88-b5dc-344993597560", + "name": "PRCXI_300ul_Tips_tipspot_H11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 97.97, + "y": 5.0, + "z": 2.0 + }, + "position3d": { + "x": 97.97, + "y": 5.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_H11#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_H11#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_H11#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_H11#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 97.97, + "y": 5.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_A12", + "uuid": "3e794129-0924-4690-875b-2ea0ade3ae2d", + "name": "PRCXI_300ul_Tips_tipspot_A12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 106.97, + "y": 68.0, + "z": 2.0 + }, + "position3d": { + "x": 106.97, + "y": 68.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_A12#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_A12#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_A12#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_A12#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 106.97, + "y": 68.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_B12", + "uuid": "42438184-4e62-453c-9fbc-a5e0666a0c3d", + "name": "PRCXI_300ul_Tips_tipspot_B12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 106.97, + "y": 59.0, + "z": 2.0 + }, + "position3d": { + "x": 106.97, + "y": 59.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_B12#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_B12#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_B12#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_B12#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 106.97, + "y": 59.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_C12", + "uuid": "ce5ca25e-1d57-434b-8b19-6a2ee6e70ce8", + "name": "PRCXI_300ul_Tips_tipspot_C12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 106.97, + "y": 50.0, + "z": 2.0 + }, + "position3d": { + "x": 106.97, + "y": 50.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_C12#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_C12#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_C12#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_C12#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 106.97, + "y": 50.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_D12", + "uuid": "78ef4083-5812-4c31-98e2-c06a9640bc19", + "name": "PRCXI_300ul_Tips_tipspot_D12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 106.97, + "y": 41.0, + "z": 2.0 + }, + "position3d": { + "x": 106.97, + "y": 41.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_D12#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_D12#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_D12#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_D12#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 106.97, + "y": 41.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_E12", + "uuid": "0aaa550c-a16a-421a-a6c2-0651136bdc98", + "name": "PRCXI_300ul_Tips_tipspot_E12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 106.97, + "y": 32.0, + "z": 2.0 + }, + "position3d": { + "x": 106.97, + "y": 32.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_E12#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_E12#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_E12#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_E12#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 106.97, + "y": 32.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_F12", + "uuid": "8640e9f7-9ce9-4569-8b07-dd2718c83a12", + "name": "PRCXI_300ul_Tips_tipspot_F12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 106.97, + "y": 23.0, + "z": 2.0 + }, + "position3d": { + "x": 106.97, + "y": 23.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_F12#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_F12#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_F12#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_F12#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 106.97, + "y": 23.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_G12", + "uuid": "0065bb37-ca8f-40d4-8f4c-ae448719687f", + "name": "PRCXI_300ul_Tips_tipspot_G12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 106.97, + "y": 14.0, + "z": 2.0 + }, + "position3d": { + "x": 106.97, + "y": 14.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_G12#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_G12#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_G12#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_G12#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 106.97, + "y": 14.0, + "z": 2.0 + } + }, + { + "id": "PRCXI_300ul_Tips_tipspot_H12", + "uuid": "45ec5869-3203-4c3d-8605-58c139f41ae5", + "name": "PRCXI_300ul_Tips_tipspot_H12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "85ad99b9-4c5f-47be-837e-34d6a7211ecb", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 7.0, + "height": 7.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 106.97, + "y": 5.0, + "z": 2.0 + }, + "position3d": { + "x": 106.97, + "y": 5.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 7.0, + "size_y": 7.0, + "size_z": 0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_H12#1", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_H12#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + }, + "tip_state": { + "thing": "PRCXI_300ul_Tips_tipspot_H12#0", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "PRCXI_300ul_Tips_tipspot_H12#0", + "total_tip_length": 60.0, + "has_filter": false, + "maximal_volume": 300, + "fitting_depth": 51.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 106.97, + "y": 5.0, + "z": 2.0 + } + } + ] + }, + { + "id": "PRCXI_48_DeepWell", + "category": [ + "prcxi", + "plates" + ], + "class": { + "module": "unilabos.devices.liquid_handling.prcxi.prcxi_labware:PRCXI_48_DeepWell", + "type": "pylabrobot" + }, + "description": "48孔深孔板 (Code: 22)", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/prcxi/plates.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "PRCXI_48_DeepWell", + "uuid": "8b77cb79-567f-454e-b8f5-29bd9f11474c", + "name": "PRCXI_48_DeepWell", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "plate", + "class": "", + "pose": { + "size": { + "depth": 44.0, + "width": 127.0, + "height": 85.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "PRCXI9300Plate", + "size_x": 127, + "size_y": 85, + "size_z": 44, + "category": "plate", + "model": "PRCXI_48_DeepWell", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "PRCXI_48_DeepWell_well_A1", + "B1": "PRCXI_48_DeepWell_well_B1", + "C1": "PRCXI_48_DeepWell_well_C1", + "D1": "PRCXI_48_DeepWell_well_D1", + "E1": "PRCXI_48_DeepWell_well_E1", + "F1": "PRCXI_48_DeepWell_well_F1", + "G1": "PRCXI_48_DeepWell_well_G1", + "H1": "PRCXI_48_DeepWell_well_H1", + "A2": "PRCXI_48_DeepWell_well_A2", + "B2": "PRCXI_48_DeepWell_well_B2", + "C2": "PRCXI_48_DeepWell_well_C2", + "D2": "PRCXI_48_DeepWell_well_D2", + "E2": "PRCXI_48_DeepWell_well_E2", + "F2": "PRCXI_48_DeepWell_well_F2", + "G2": "PRCXI_48_DeepWell_well_G2", + "H2": "PRCXI_48_DeepWell_well_H2", + "A3": "PRCXI_48_DeepWell_well_A3", + "B3": "PRCXI_48_DeepWell_well_B3", + "C3": "PRCXI_48_DeepWell_well_C3", + "D3": "PRCXI_48_DeepWell_well_D3", + "E3": "PRCXI_48_DeepWell_well_E3", + "F3": "PRCXI_48_DeepWell_well_F3", + "G3": "PRCXI_48_DeepWell_well_G3", + "H3": "PRCXI_48_DeepWell_well_H3", + "A4": "PRCXI_48_DeepWell_well_A4", + "B4": "PRCXI_48_DeepWell_well_B4", + "C4": "PRCXI_48_DeepWell_well_C4", + "D4": "PRCXI_48_DeepWell_well_D4", + "E4": "PRCXI_48_DeepWell_well_E4", + "F4": "PRCXI_48_DeepWell_well_F4", + "G4": "PRCXI_48_DeepWell_well_G4", + "H4": "PRCXI_48_DeepWell_well_H4", + "A5": "PRCXI_48_DeepWell_well_A5", + "B5": "PRCXI_48_DeepWell_well_B5", + "C5": "PRCXI_48_DeepWell_well_C5", + "D5": "PRCXI_48_DeepWell_well_D5", + "E5": "PRCXI_48_DeepWell_well_E5", + "F5": "PRCXI_48_DeepWell_well_F5", + "G5": "PRCXI_48_DeepWell_well_G5", + "H5": "PRCXI_48_DeepWell_well_H5", + "A6": "PRCXI_48_DeepWell_well_A6", + "B6": "PRCXI_48_DeepWell_well_B6", + "C6": "PRCXI_48_DeepWell_well_C6", + "D6": "PRCXI_48_DeepWell_well_D6", + "E6": "PRCXI_48_DeepWell_well_E6", + "F6": "PRCXI_48_DeepWell_well_F6", + "G6": "PRCXI_48_DeepWell_well_G6", + "H6": "PRCXI_48_DeepWell_well_H6" + } + }, + "data": { + "Material": { + "uuid": "026c5d5cf3d94e56b4e16b7fb53a995b", + "Code": "22", + "Name": "48孔深孔板", + "SupplyType": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_48_DeepWell_well_A1", + "uuid": "4dab4967-dc03-4812-ac8b-04dbce544781", + "name": "PRCXI_48_DeepWell_well_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8b77cb79-567f-454e-b8f5-29bd9f11474c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 8.0, + "height": 8.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.0, + "y": 73.0, + "z": 1.0 + }, + "position3d": { + "x": 10.0, + "y": 73.0, + "z": 1.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8, + "size_y": 8, + "size_z": 40, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2010.6192982974676, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_0_0_volume_tracker", + "max_volume": 2010.6192982974676, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.0, + "y": 73.0, + "z": 1.0 + } + }, + { + "id": "PRCXI_48_DeepWell_well_B1", + "uuid": "20d1855c-6250-49be-9078-e683b3321330", + "name": "PRCXI_48_DeepWell_well_B1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8b77cb79-567f-454e-b8f5-29bd9f11474c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 8.0, + "height": 8.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.0, + "y": 64.0, + "z": 1.0 + }, + "position3d": { + "x": 10.0, + "y": 64.0, + "z": 1.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8, + "size_y": 8, + "size_z": 40, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2010.6192982974676, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_0_1_volume_tracker", + "max_volume": 2010.6192982974676, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.0, + "y": 64.0, + "z": 1.0 + } + }, + { + "id": "PRCXI_48_DeepWell_well_C1", + "uuid": "85d4febd-ee35-480b-998a-33fc21c4385d", + "name": "PRCXI_48_DeepWell_well_C1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8b77cb79-567f-454e-b8f5-29bd9f11474c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 8.0, + "height": 8.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.0, + "y": 55.0, + "z": 1.0 + }, + "position3d": { + "x": 10.0, + "y": 55.0, + "z": 1.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8, + "size_y": 8, + "size_z": 40, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2010.6192982974676, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_0_2_volume_tracker", + "max_volume": 2010.6192982974676, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.0, + "y": 55.0, + "z": 1.0 + } + }, + { + "id": "PRCXI_48_DeepWell_well_D1", + "uuid": "8db5e67f-f9e2-4580-aebf-fb8141a57eef", + "name": "PRCXI_48_DeepWell_well_D1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8b77cb79-567f-454e-b8f5-29bd9f11474c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 8.0, + "height": 8.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.0, + "y": 46.0, + "z": 1.0 + }, + "position3d": { + "x": 10.0, + "y": 46.0, + "z": 1.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8, + "size_y": 8, + "size_z": 40, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2010.6192982974676, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_0_3_volume_tracker", + "max_volume": 2010.6192982974676, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.0, + "y": 46.0, + "z": 1.0 + } + }, + { + "id": "PRCXI_48_DeepWell_well_E1", + "uuid": "4acd0dad-434e-48bf-aa44-92dc06aefc97", + "name": "PRCXI_48_DeepWell_well_E1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8b77cb79-567f-454e-b8f5-29bd9f11474c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 8.0, + "height": 8.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.0, + "y": 37.0, + "z": 1.0 + }, + "position3d": { + "x": 10.0, + "y": 37.0, + "z": 1.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8, + "size_y": 8, + "size_z": 40, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2010.6192982974676, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_0_4_volume_tracker", + "max_volume": 2010.6192982974676, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.0, + "y": 37.0, + "z": 1.0 + } + }, + { + "id": "PRCXI_48_DeepWell_well_F1", + "uuid": "9a3fbaa3-bb44-43e6-a8e7-cc11a271a246", + "name": "PRCXI_48_DeepWell_well_F1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8b77cb79-567f-454e-b8f5-29bd9f11474c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 8.0, + "height": 8.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.0, + "y": 28.0, + "z": 1.0 + }, + "position3d": { + "x": 10.0, + "y": 28.0, + "z": 1.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8, + "size_y": 8, + "size_z": 40, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2010.6192982974676, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_0_5_volume_tracker", + "max_volume": 2010.6192982974676, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.0, + "y": 28.0, + "z": 1.0 + } + }, + { + "id": "PRCXI_48_DeepWell_well_G1", + "uuid": "80f6df00-b983-4566-b485-a203faaee049", + "name": "PRCXI_48_DeepWell_well_G1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8b77cb79-567f-454e-b8f5-29bd9f11474c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 8.0, + "height": 8.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.0, + "y": 19.0, + "z": 1.0 + }, + "position3d": { + "x": 10.0, + "y": 19.0, + "z": 1.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8, + "size_y": 8, + "size_z": 40, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2010.6192982974676, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_0_6_volume_tracker", + "max_volume": 2010.6192982974676, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.0, + "y": 19.0, + "z": 1.0 + } + }, + { + "id": "PRCXI_48_DeepWell_well_H1", + "uuid": "8e326b40-a8be-48df-946d-9eef80afa2ff", + "name": "PRCXI_48_DeepWell_well_H1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8b77cb79-567f-454e-b8f5-29bd9f11474c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 8.0, + "height": 8.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.0, + "y": 10.0, + "z": 1.0 + }, + "position3d": { + "x": 10.0, + "y": 10.0, + "z": 1.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8, + "size_y": 8, + "size_z": 40, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2010.6192982974676, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_0_7_volume_tracker", + "max_volume": 2010.6192982974676, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.0, + "y": 10.0, + "z": 1.0 + } + }, + { + "id": "PRCXI_48_DeepWell_well_A2", + "uuid": "98a7055d-02c5-49fa-b82a-32fd26845c9d", + "name": "PRCXI_48_DeepWell_well_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8b77cb79-567f-454e-b8f5-29bd9f11474c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 8.0, + "height": 8.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.5, + "y": 73.0, + "z": 1.0 + }, + "position3d": { + "x": 28.5, + "y": 73.0, + "z": 1.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8, + "size_y": 8, + "size_z": 40, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2010.6192982974676, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_1_0_volume_tracker", + "max_volume": 2010.6192982974676, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.5, + "y": 73.0, + "z": 1.0 + } + }, + { + "id": "PRCXI_48_DeepWell_well_B2", + "uuid": "d1056b6a-b2a7-418d-b420-687b9924de24", + "name": "PRCXI_48_DeepWell_well_B2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8b77cb79-567f-454e-b8f5-29bd9f11474c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 8.0, + "height": 8.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.5, + "y": 64.0, + "z": 1.0 + }, + "position3d": { + "x": 28.5, + "y": 64.0, + "z": 1.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8, + "size_y": 8, + "size_z": 40, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2010.6192982974676, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_1_1_volume_tracker", + "max_volume": 2010.6192982974676, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.5, + "y": 64.0, + "z": 1.0 + } + }, + { + "id": "PRCXI_48_DeepWell_well_C2", + "uuid": "13d9a7b0-b5b9-4bff-bb23-1072dd96ff79", + "name": "PRCXI_48_DeepWell_well_C2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8b77cb79-567f-454e-b8f5-29bd9f11474c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 8.0, + "height": 8.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.5, + "y": 55.0, + "z": 1.0 + }, + "position3d": { + "x": 28.5, + "y": 55.0, + "z": 1.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8, + "size_y": 8, + "size_z": 40, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2010.6192982974676, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_1_2_volume_tracker", + "max_volume": 2010.6192982974676, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.5, + "y": 55.0, + "z": 1.0 + } + }, + { + "id": "PRCXI_48_DeepWell_well_D2", + "uuid": "9836cb0b-3af4-4c4a-a64c-e9810f3672c5", + "name": "PRCXI_48_DeepWell_well_D2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8b77cb79-567f-454e-b8f5-29bd9f11474c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 8.0, + "height": 8.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.5, + "y": 46.0, + "z": 1.0 + }, + "position3d": { + "x": 28.5, + "y": 46.0, + "z": 1.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8, + "size_y": 8, + "size_z": 40, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2010.6192982974676, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_1_3_volume_tracker", + "max_volume": 2010.6192982974676, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.5, + "y": 46.0, + "z": 1.0 + } + }, + { + "id": "PRCXI_48_DeepWell_well_E2", + "uuid": "1070d1e0-43c3-4cd8-9887-62c6db7d6962", + "name": "PRCXI_48_DeepWell_well_E2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8b77cb79-567f-454e-b8f5-29bd9f11474c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 8.0, + "height": 8.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.5, + "y": 37.0, + "z": 1.0 + }, + "position3d": { + "x": 28.5, + "y": 37.0, + "z": 1.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8, + "size_y": 8, + "size_z": 40, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2010.6192982974676, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_1_4_volume_tracker", + "max_volume": 2010.6192982974676, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.5, + "y": 37.0, + "z": 1.0 + } + }, + { + "id": "PRCXI_48_DeepWell_well_F2", + "uuid": "54455f38-e278-45c3-a171-a9d8423b3b2f", + "name": "PRCXI_48_DeepWell_well_F2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8b77cb79-567f-454e-b8f5-29bd9f11474c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 8.0, + "height": 8.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.5, + "y": 28.0, + "z": 1.0 + }, + "position3d": { + "x": 28.5, + "y": 28.0, + "z": 1.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8, + "size_y": 8, + "size_z": 40, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2010.6192982974676, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_1_5_volume_tracker", + "max_volume": 2010.6192982974676, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.5, + "y": 28.0, + "z": 1.0 + } + }, + { + "id": "PRCXI_48_DeepWell_well_G2", + "uuid": "98e6e620-33fa-444a-9626-b93dd6c1f6b4", + "name": "PRCXI_48_DeepWell_well_G2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8b77cb79-567f-454e-b8f5-29bd9f11474c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 8.0, + "height": 8.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.5, + "y": 19.0, + "z": 1.0 + }, + "position3d": { + "x": 28.5, + "y": 19.0, + "z": 1.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8, + "size_y": 8, + "size_z": 40, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2010.6192982974676, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_1_6_volume_tracker", + "max_volume": 2010.6192982974676, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.5, + "y": 19.0, + "z": 1.0 + } + }, + { + "id": "PRCXI_48_DeepWell_well_H2", + "uuid": "8aa3c18a-556b-40dc-b4d1-aad14809851c", + "name": "PRCXI_48_DeepWell_well_H2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8b77cb79-567f-454e-b8f5-29bd9f11474c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 8.0, + "height": 8.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.5, + "y": 10.0, + "z": 1.0 + }, + "position3d": { + "x": 28.5, + "y": 10.0, + "z": 1.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8, + "size_y": 8, + "size_z": 40, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2010.6192982974676, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_1_7_volume_tracker", + "max_volume": 2010.6192982974676, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.5, + "y": 10.0, + "z": 1.0 + } + }, + { + "id": "PRCXI_48_DeepWell_well_A3", + "uuid": "9c398f9c-8cb5-4213-a519-8b832f6dfcea", + "name": "PRCXI_48_DeepWell_well_A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8b77cb79-567f-454e-b8f5-29bd9f11474c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 8.0, + "height": 8.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.0, + "y": 73.0, + "z": 1.0 + }, + "position3d": { + "x": 47.0, + "y": 73.0, + "z": 1.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8, + "size_y": 8, + "size_z": 40, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2010.6192982974676, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_2_0_volume_tracker", + "max_volume": 2010.6192982974676, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.0, + "y": 73.0, + "z": 1.0 + } + }, + { + "id": "PRCXI_48_DeepWell_well_B3", + "uuid": "f8171f56-ef18-465f-9173-605a8d3fe42c", + "name": "PRCXI_48_DeepWell_well_B3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8b77cb79-567f-454e-b8f5-29bd9f11474c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 8.0, + "height": 8.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.0, + "y": 64.0, + "z": 1.0 + }, + "position3d": { + "x": 47.0, + "y": 64.0, + "z": 1.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8, + "size_y": 8, + "size_z": 40, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2010.6192982974676, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_2_1_volume_tracker", + "max_volume": 2010.6192982974676, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.0, + "y": 64.0, + "z": 1.0 + } + }, + { + "id": "PRCXI_48_DeepWell_well_C3", + "uuid": "dcd05b9c-742a-4950-9b90-626040b87546", + "name": "PRCXI_48_DeepWell_well_C3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8b77cb79-567f-454e-b8f5-29bd9f11474c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 8.0, + "height": 8.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.0, + "y": 55.0, + "z": 1.0 + }, + "position3d": { + "x": 47.0, + "y": 55.0, + "z": 1.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8, + "size_y": 8, + "size_z": 40, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2010.6192982974676, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_2_2_volume_tracker", + "max_volume": 2010.6192982974676, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.0, + "y": 55.0, + "z": 1.0 + } + }, + { + "id": "PRCXI_48_DeepWell_well_D3", + "uuid": "da1ae730-38b5-4f6f-9a01-e357e558a6f2", + "name": "PRCXI_48_DeepWell_well_D3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8b77cb79-567f-454e-b8f5-29bd9f11474c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 8.0, + "height": 8.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.0, + "y": 46.0, + "z": 1.0 + }, + "position3d": { + "x": 47.0, + "y": 46.0, + "z": 1.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8, + "size_y": 8, + "size_z": 40, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2010.6192982974676, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_2_3_volume_tracker", + "max_volume": 2010.6192982974676, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.0, + "y": 46.0, + "z": 1.0 + } + }, + { + "id": "PRCXI_48_DeepWell_well_E3", + "uuid": "4a9ea36b-9a65-46ba-bdfb-907cff909526", + "name": "PRCXI_48_DeepWell_well_E3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8b77cb79-567f-454e-b8f5-29bd9f11474c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 8.0, + "height": 8.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.0, + "y": 37.0, + "z": 1.0 + }, + "position3d": { + "x": 47.0, + "y": 37.0, + "z": 1.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8, + "size_y": 8, + "size_z": 40, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2010.6192982974676, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_2_4_volume_tracker", + "max_volume": 2010.6192982974676, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.0, + "y": 37.0, + "z": 1.0 + } + }, + { + "id": "PRCXI_48_DeepWell_well_F3", + "uuid": "488f9062-e72b-494d-afcc-f4fd8f088952", + "name": "PRCXI_48_DeepWell_well_F3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8b77cb79-567f-454e-b8f5-29bd9f11474c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 8.0, + "height": 8.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.0, + "y": 28.0, + "z": 1.0 + }, + "position3d": { + "x": 47.0, + "y": 28.0, + "z": 1.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8, + "size_y": 8, + "size_z": 40, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2010.6192982974676, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_2_5_volume_tracker", + "max_volume": 2010.6192982974676, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.0, + "y": 28.0, + "z": 1.0 + } + }, + { + "id": "PRCXI_48_DeepWell_well_G3", + "uuid": "0dc6cb42-bfa8-4694-b794-23f00d42373d", + "name": "PRCXI_48_DeepWell_well_G3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8b77cb79-567f-454e-b8f5-29bd9f11474c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 8.0, + "height": 8.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.0, + "y": 19.0, + "z": 1.0 + }, + "position3d": { + "x": 47.0, + "y": 19.0, + "z": 1.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8, + "size_y": 8, + "size_z": 40, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2010.6192982974676, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_2_6_volume_tracker", + "max_volume": 2010.6192982974676, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.0, + "y": 19.0, + "z": 1.0 + } + }, + { + "id": "PRCXI_48_DeepWell_well_H3", + "uuid": "40c0d7d0-3b11-4022-af83-d5af826c752e", + "name": "PRCXI_48_DeepWell_well_H3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8b77cb79-567f-454e-b8f5-29bd9f11474c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 8.0, + "height": 8.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.0, + "y": 10.0, + "z": 1.0 + }, + "position3d": { + "x": 47.0, + "y": 10.0, + "z": 1.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8, + "size_y": 8, + "size_z": 40, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2010.6192982974676, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_2_7_volume_tracker", + "max_volume": 2010.6192982974676, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.0, + "y": 10.0, + "z": 1.0 + } + }, + { + "id": "PRCXI_48_DeepWell_well_A4", + "uuid": "23eb737b-9be2-4cb8-901a-5cf568c672fe", + "name": "PRCXI_48_DeepWell_well_A4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8b77cb79-567f-454e-b8f5-29bd9f11474c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 8.0, + "height": 8.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.5, + "y": 73.0, + "z": 1.0 + }, + "position3d": { + "x": 65.5, + "y": 73.0, + "z": 1.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8, + "size_y": 8, + "size_z": 40, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2010.6192982974676, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_3_0_volume_tracker", + "max_volume": 2010.6192982974676, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.5, + "y": 73.0, + "z": 1.0 + } + }, + { + "id": "PRCXI_48_DeepWell_well_B4", + "uuid": "e8da8099-c597-49e9-b1f0-419716dfe858", + "name": "PRCXI_48_DeepWell_well_B4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8b77cb79-567f-454e-b8f5-29bd9f11474c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 8.0, + "height": 8.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.5, + "y": 64.0, + "z": 1.0 + }, + "position3d": { + "x": 65.5, + "y": 64.0, + "z": 1.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8, + "size_y": 8, + "size_z": 40, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2010.6192982974676, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_3_1_volume_tracker", + "max_volume": 2010.6192982974676, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.5, + "y": 64.0, + "z": 1.0 + } + }, + { + "id": "PRCXI_48_DeepWell_well_C4", + "uuid": "3acfce13-bcd8-4946-9317-6bb75042157a", + "name": "PRCXI_48_DeepWell_well_C4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8b77cb79-567f-454e-b8f5-29bd9f11474c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 8.0, + "height": 8.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.5, + "y": 55.0, + "z": 1.0 + }, + "position3d": { + "x": 65.5, + "y": 55.0, + "z": 1.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8, + "size_y": 8, + "size_z": 40, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2010.6192982974676, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_3_2_volume_tracker", + "max_volume": 2010.6192982974676, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.5, + "y": 55.0, + "z": 1.0 + } + }, + { + "id": "PRCXI_48_DeepWell_well_D4", + "uuid": "5fd5cb11-2d44-4ece-b4c9-32b9e39d8327", + "name": "PRCXI_48_DeepWell_well_D4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8b77cb79-567f-454e-b8f5-29bd9f11474c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 8.0, + "height": 8.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.5, + "y": 46.0, + "z": 1.0 + }, + "position3d": { + "x": 65.5, + "y": 46.0, + "z": 1.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8, + "size_y": 8, + "size_z": 40, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2010.6192982974676, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_3_3_volume_tracker", + "max_volume": 2010.6192982974676, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.5, + "y": 46.0, + "z": 1.0 + } + }, + { + "id": "PRCXI_48_DeepWell_well_E4", + "uuid": "d321fd2b-99a8-4be0-8a32-d15f170ad50f", + "name": "PRCXI_48_DeepWell_well_E4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8b77cb79-567f-454e-b8f5-29bd9f11474c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 8.0, + "height": 8.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.5, + "y": 37.0, + "z": 1.0 + }, + "position3d": { + "x": 65.5, + "y": 37.0, + "z": 1.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8, + "size_y": 8, + "size_z": 40, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2010.6192982974676, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_3_4_volume_tracker", + "max_volume": 2010.6192982974676, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.5, + "y": 37.0, + "z": 1.0 + } + }, + { + "id": "PRCXI_48_DeepWell_well_F4", + "uuid": "ef6960a4-0af6-4eb8-b6cb-ebfe991ee19d", + "name": "PRCXI_48_DeepWell_well_F4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8b77cb79-567f-454e-b8f5-29bd9f11474c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 8.0, + "height": 8.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.5, + "y": 28.0, + "z": 1.0 + }, + "position3d": { + "x": 65.5, + "y": 28.0, + "z": 1.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8, + "size_y": 8, + "size_z": 40, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2010.6192982974676, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_3_5_volume_tracker", + "max_volume": 2010.6192982974676, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.5, + "y": 28.0, + "z": 1.0 + } + }, + { + "id": "PRCXI_48_DeepWell_well_G4", + "uuid": "883caa00-3464-4e82-9217-d1ceb0f1e2c5", + "name": "PRCXI_48_DeepWell_well_G4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8b77cb79-567f-454e-b8f5-29bd9f11474c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 8.0, + "height": 8.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.5, + "y": 19.0, + "z": 1.0 + }, + "position3d": { + "x": 65.5, + "y": 19.0, + "z": 1.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8, + "size_y": 8, + "size_z": 40, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2010.6192982974676, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_3_6_volume_tracker", + "max_volume": 2010.6192982974676, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.5, + "y": 19.0, + "z": 1.0 + } + }, + { + "id": "PRCXI_48_DeepWell_well_H4", + "uuid": "ff4de155-30d4-4067-a793-e326233f0c55", + "name": "PRCXI_48_DeepWell_well_H4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8b77cb79-567f-454e-b8f5-29bd9f11474c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 8.0, + "height": 8.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.5, + "y": 10.0, + "z": 1.0 + }, + "position3d": { + "x": 65.5, + "y": 10.0, + "z": 1.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8, + "size_y": 8, + "size_z": 40, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2010.6192982974676, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_3_7_volume_tracker", + "max_volume": 2010.6192982974676, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.5, + "y": 10.0, + "z": 1.0 + } + }, + { + "id": "PRCXI_48_DeepWell_well_A5", + "uuid": "75528a16-0384-4cc7-857b-67d79cbe6be4", + "name": "PRCXI_48_DeepWell_well_A5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8b77cb79-567f-454e-b8f5-29bd9f11474c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 8.0, + "height": 8.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 84.0, + "y": 73.0, + "z": 1.0 + }, + "position3d": { + "x": 84.0, + "y": 73.0, + "z": 1.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8, + "size_y": 8, + "size_z": 40, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2010.6192982974676, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_4_0_volume_tracker", + "max_volume": 2010.6192982974676, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 84.0, + "y": 73.0, + "z": 1.0 + } + }, + { + "id": "PRCXI_48_DeepWell_well_B5", + "uuid": "e488188e-564c-42a7-af75-f9939680a9ff", + "name": "PRCXI_48_DeepWell_well_B5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8b77cb79-567f-454e-b8f5-29bd9f11474c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 8.0, + "height": 8.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 84.0, + "y": 64.0, + "z": 1.0 + }, + "position3d": { + "x": 84.0, + "y": 64.0, + "z": 1.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8, + "size_y": 8, + "size_z": 40, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2010.6192982974676, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_4_1_volume_tracker", + "max_volume": 2010.6192982974676, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 84.0, + "y": 64.0, + "z": 1.0 + } + }, + { + "id": "PRCXI_48_DeepWell_well_C5", + "uuid": "0eaada37-3f05-48c4-85d2-b6735f79bf14", + "name": "PRCXI_48_DeepWell_well_C5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8b77cb79-567f-454e-b8f5-29bd9f11474c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 8.0, + "height": 8.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 84.0, + "y": 55.0, + "z": 1.0 + }, + "position3d": { + "x": 84.0, + "y": 55.0, + "z": 1.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8, + "size_y": 8, + "size_z": 40, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2010.6192982974676, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_4_2_volume_tracker", + "max_volume": 2010.6192982974676, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 84.0, + "y": 55.0, + "z": 1.0 + } + }, + { + "id": "PRCXI_48_DeepWell_well_D5", + "uuid": "cb941069-361c-4894-9562-0f82d2465a44", + "name": "PRCXI_48_DeepWell_well_D5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8b77cb79-567f-454e-b8f5-29bd9f11474c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 8.0, + "height": 8.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 84.0, + "y": 46.0, + "z": 1.0 + }, + "position3d": { + "x": 84.0, + "y": 46.0, + "z": 1.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8, + "size_y": 8, + "size_z": 40, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2010.6192982974676, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_4_3_volume_tracker", + "max_volume": 2010.6192982974676, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 84.0, + "y": 46.0, + "z": 1.0 + } + }, + { + "id": "PRCXI_48_DeepWell_well_E5", + "uuid": "877ca788-0294-4f36-bf34-ee4b062c7c68", + "name": "PRCXI_48_DeepWell_well_E5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8b77cb79-567f-454e-b8f5-29bd9f11474c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 8.0, + "height": 8.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 84.0, + "y": 37.0, + "z": 1.0 + }, + "position3d": { + "x": 84.0, + "y": 37.0, + "z": 1.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8, + "size_y": 8, + "size_z": 40, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2010.6192982974676, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_4_4_volume_tracker", + "max_volume": 2010.6192982974676, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 84.0, + "y": 37.0, + "z": 1.0 + } + }, + { + "id": "PRCXI_48_DeepWell_well_F5", + "uuid": "ab02452c-1032-40c5-8a1f-45202a04c779", + "name": "PRCXI_48_DeepWell_well_F5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8b77cb79-567f-454e-b8f5-29bd9f11474c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 8.0, + "height": 8.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 84.0, + "y": 28.0, + "z": 1.0 + }, + "position3d": { + "x": 84.0, + "y": 28.0, + "z": 1.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8, + "size_y": 8, + "size_z": 40, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2010.6192982974676, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_4_5_volume_tracker", + "max_volume": 2010.6192982974676, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 84.0, + "y": 28.0, + "z": 1.0 + } + }, + { + "id": "PRCXI_48_DeepWell_well_G5", + "uuid": "ea34d6d4-34f6-44c5-968b-41be868f945f", + "name": "PRCXI_48_DeepWell_well_G5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8b77cb79-567f-454e-b8f5-29bd9f11474c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 8.0, + "height": 8.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 84.0, + "y": 19.0, + "z": 1.0 + }, + "position3d": { + "x": 84.0, + "y": 19.0, + "z": 1.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8, + "size_y": 8, + "size_z": 40, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2010.6192982974676, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_4_6_volume_tracker", + "max_volume": 2010.6192982974676, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 84.0, + "y": 19.0, + "z": 1.0 + } + }, + { + "id": "PRCXI_48_DeepWell_well_H5", + "uuid": "d4b64b30-fa69-4899-af92-64bd527b2230", + "name": "PRCXI_48_DeepWell_well_H5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8b77cb79-567f-454e-b8f5-29bd9f11474c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 8.0, + "height": 8.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 84.0, + "y": 10.0, + "z": 1.0 + }, + "position3d": { + "x": 84.0, + "y": 10.0, + "z": 1.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8, + "size_y": 8, + "size_z": 40, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2010.6192982974676, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_4_7_volume_tracker", + "max_volume": 2010.6192982974676, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 84.0, + "y": 10.0, + "z": 1.0 + } + }, + { + "id": "PRCXI_48_DeepWell_well_A6", + "uuid": "e2da6115-24d1-428d-aa84-ffc7af4273ad", + "name": "PRCXI_48_DeepWell_well_A6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8b77cb79-567f-454e-b8f5-29bd9f11474c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 8.0, + "height": 8.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 102.5, + "y": 73.0, + "z": 1.0 + }, + "position3d": { + "x": 102.5, + "y": 73.0, + "z": 1.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8, + "size_y": 8, + "size_z": 40, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2010.6192982974676, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_5_0_volume_tracker", + "max_volume": 2010.6192982974676, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 102.5, + "y": 73.0, + "z": 1.0 + } + }, + { + "id": "PRCXI_48_DeepWell_well_B6", + "uuid": "c22b5774-37db-4e58-a80d-c5e56519e950", + "name": "PRCXI_48_DeepWell_well_B6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8b77cb79-567f-454e-b8f5-29bd9f11474c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 8.0, + "height": 8.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 102.5, + "y": 64.0, + "z": 1.0 + }, + "position3d": { + "x": 102.5, + "y": 64.0, + "z": 1.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8, + "size_y": 8, + "size_z": 40, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2010.6192982974676, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_5_1_volume_tracker", + "max_volume": 2010.6192982974676, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 102.5, + "y": 64.0, + "z": 1.0 + } + }, + { + "id": "PRCXI_48_DeepWell_well_C6", + "uuid": "69875d01-c080-46ae-a1f0-085ff07e2c83", + "name": "PRCXI_48_DeepWell_well_C6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8b77cb79-567f-454e-b8f5-29bd9f11474c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 8.0, + "height": 8.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 102.5, + "y": 55.0, + "z": 1.0 + }, + "position3d": { + "x": 102.5, + "y": 55.0, + "z": 1.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8, + "size_y": 8, + "size_z": 40, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2010.6192982974676, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_5_2_volume_tracker", + "max_volume": 2010.6192982974676, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 102.5, + "y": 55.0, + "z": 1.0 + } + }, + { + "id": "PRCXI_48_DeepWell_well_D6", + "uuid": "de7f11ac-b922-4485-9869-237211793c43", + "name": "PRCXI_48_DeepWell_well_D6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8b77cb79-567f-454e-b8f5-29bd9f11474c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 8.0, + "height": 8.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 102.5, + "y": 46.0, + "z": 1.0 + }, + "position3d": { + "x": 102.5, + "y": 46.0, + "z": 1.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8, + "size_y": 8, + "size_z": 40, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2010.6192982974676, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_5_3_volume_tracker", + "max_volume": 2010.6192982974676, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 102.5, + "y": 46.0, + "z": 1.0 + } + }, + { + "id": "PRCXI_48_DeepWell_well_E6", + "uuid": "3462c54a-2cd2-4ab7-9922-407f9a5f9e05", + "name": "PRCXI_48_DeepWell_well_E6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8b77cb79-567f-454e-b8f5-29bd9f11474c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 8.0, + "height": 8.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 102.5, + "y": 37.0, + "z": 1.0 + }, + "position3d": { + "x": 102.5, + "y": 37.0, + "z": 1.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8, + "size_y": 8, + "size_z": 40, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2010.6192982974676, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_5_4_volume_tracker", + "max_volume": 2010.6192982974676, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 102.5, + "y": 37.0, + "z": 1.0 + } + }, + { + "id": "PRCXI_48_DeepWell_well_F6", + "uuid": "ccdffaac-a730-4af9-89c0-2d0a06ab1b76", + "name": "PRCXI_48_DeepWell_well_F6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8b77cb79-567f-454e-b8f5-29bd9f11474c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 8.0, + "height": 8.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 102.5, + "y": 28.0, + "z": 1.0 + }, + "position3d": { + "x": 102.5, + "y": 28.0, + "z": 1.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8, + "size_y": 8, + "size_z": 40, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2010.6192982974676, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_5_5_volume_tracker", + "max_volume": 2010.6192982974676, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 102.5, + "y": 28.0, + "z": 1.0 + } + }, + { + "id": "PRCXI_48_DeepWell_well_G6", + "uuid": "aa2332db-ffb5-45dc-ac56-66910ad80bc4", + "name": "PRCXI_48_DeepWell_well_G6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8b77cb79-567f-454e-b8f5-29bd9f11474c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 8.0, + "height": 8.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 102.5, + "y": 19.0, + "z": 1.0 + }, + "position3d": { + "x": 102.5, + "y": 19.0, + "z": 1.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8, + "size_y": 8, + "size_z": 40, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2010.6192982974676, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_5_6_volume_tracker", + "max_volume": 2010.6192982974676, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 102.5, + "y": 19.0, + "z": 1.0 + } + }, + { + "id": "PRCXI_48_DeepWell_well_H6", + "uuid": "772f8411-d214-4362-bfed-129ff839612b", + "name": "PRCXI_48_DeepWell_well_H6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8b77cb79-567f-454e-b8f5-29bd9f11474c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 8.0, + "height": 8.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 102.5, + "y": 10.0, + "z": 1.0 + }, + "position3d": { + "x": 102.5, + "y": 10.0, + "z": 1.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8, + "size_y": 8, + "size_z": 40, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2010.6192982974676, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_5_7_volume_tracker", + "max_volume": 2010.6192982974676, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 102.5, + "y": 10.0, + "z": 1.0 + } + } + ] + }, + { + "id": "PRCXI_96_DeepWell", + "category": [ + "prcxi", + "plates" + ], + "class": { + "module": "unilabos.devices.liquid_handling.prcxi.prcxi_labware:PRCXI_96_DeepWell", + "type": "pylabrobot" + }, + "description": "96深孔板 (Code: q2)", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/prcxi/plates.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "PRCXI_96_DeepWell", + "uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "name": "PRCXI_96_DeepWell", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "plate", + "class": "", + "pose": { + "size": { + "depth": 45.0, + "width": 127.3, + "height": 85.35 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "PRCXI9300Plate", + "size_x": 127.3, + "size_y": 85.35, + "size_z": 45.0, + "category": "plate", + "model": "PRCXI_96_DeepWell", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "PRCXI_96_DeepWell_well_A1", + "B1": "PRCXI_96_DeepWell_well_B1", + "C1": "PRCXI_96_DeepWell_well_C1", + "D1": "PRCXI_96_DeepWell_well_D1", + "E1": "PRCXI_96_DeepWell_well_E1", + "F1": "PRCXI_96_DeepWell_well_F1", + "G1": "PRCXI_96_DeepWell_well_G1", + "H1": "PRCXI_96_DeepWell_well_H1", + "A2": "PRCXI_96_DeepWell_well_A2", + "B2": "PRCXI_96_DeepWell_well_B2", + "C2": "PRCXI_96_DeepWell_well_C2", + "D2": "PRCXI_96_DeepWell_well_D2", + "E2": "PRCXI_96_DeepWell_well_E2", + "F2": "PRCXI_96_DeepWell_well_F2", + "G2": "PRCXI_96_DeepWell_well_G2", + "H2": "PRCXI_96_DeepWell_well_H2", + "A3": "PRCXI_96_DeepWell_well_A3", + "B3": "PRCXI_96_DeepWell_well_B3", + "C3": "PRCXI_96_DeepWell_well_C3", + "D3": "PRCXI_96_DeepWell_well_D3", + "E3": "PRCXI_96_DeepWell_well_E3", + "F3": "PRCXI_96_DeepWell_well_F3", + "G3": "PRCXI_96_DeepWell_well_G3", + "H3": "PRCXI_96_DeepWell_well_H3", + "A4": "PRCXI_96_DeepWell_well_A4", + "B4": "PRCXI_96_DeepWell_well_B4", + "C4": "PRCXI_96_DeepWell_well_C4", + "D4": "PRCXI_96_DeepWell_well_D4", + "E4": "PRCXI_96_DeepWell_well_E4", + "F4": "PRCXI_96_DeepWell_well_F4", + "G4": "PRCXI_96_DeepWell_well_G4", + "H4": "PRCXI_96_DeepWell_well_H4", + "A5": "PRCXI_96_DeepWell_well_A5", + "B5": "PRCXI_96_DeepWell_well_B5", + "C5": "PRCXI_96_DeepWell_well_C5", + "D5": "PRCXI_96_DeepWell_well_D5", + "E5": "PRCXI_96_DeepWell_well_E5", + "F5": "PRCXI_96_DeepWell_well_F5", + "G5": "PRCXI_96_DeepWell_well_G5", + "H5": "PRCXI_96_DeepWell_well_H5", + "A6": "PRCXI_96_DeepWell_well_A6", + "B6": "PRCXI_96_DeepWell_well_B6", + "C6": "PRCXI_96_DeepWell_well_C6", + "D6": "PRCXI_96_DeepWell_well_D6", + "E6": "PRCXI_96_DeepWell_well_E6", + "F6": "PRCXI_96_DeepWell_well_F6", + "G6": "PRCXI_96_DeepWell_well_G6", + "H6": "PRCXI_96_DeepWell_well_H6", + "A7": "PRCXI_96_DeepWell_well_A7", + "B7": "PRCXI_96_DeepWell_well_B7", + "C7": "PRCXI_96_DeepWell_well_C7", + "D7": "PRCXI_96_DeepWell_well_D7", + "E7": "PRCXI_96_DeepWell_well_E7", + "F7": "PRCXI_96_DeepWell_well_F7", + "G7": "PRCXI_96_DeepWell_well_G7", + "H7": "PRCXI_96_DeepWell_well_H7", + "A8": "PRCXI_96_DeepWell_well_A8", + "B8": "PRCXI_96_DeepWell_well_B8", + "C8": "PRCXI_96_DeepWell_well_C8", + "D8": "PRCXI_96_DeepWell_well_D8", + "E8": "PRCXI_96_DeepWell_well_E8", + "F8": "PRCXI_96_DeepWell_well_F8", + "G8": "PRCXI_96_DeepWell_well_G8", + "H8": "PRCXI_96_DeepWell_well_H8", + "A9": "PRCXI_96_DeepWell_well_A9", + "B9": "PRCXI_96_DeepWell_well_B9", + "C9": "PRCXI_96_DeepWell_well_C9", + "D9": "PRCXI_96_DeepWell_well_D9", + "E9": "PRCXI_96_DeepWell_well_E9", + "F9": "PRCXI_96_DeepWell_well_F9", + "G9": "PRCXI_96_DeepWell_well_G9", + "H9": "PRCXI_96_DeepWell_well_H9", + "A10": "PRCXI_96_DeepWell_well_A10", + "B10": "PRCXI_96_DeepWell_well_B10", + "C10": "PRCXI_96_DeepWell_well_C10", + "D10": "PRCXI_96_DeepWell_well_D10", + "E10": "PRCXI_96_DeepWell_well_E10", + "F10": "PRCXI_96_DeepWell_well_F10", + "G10": "PRCXI_96_DeepWell_well_G10", + "H10": "PRCXI_96_DeepWell_well_H10", + "A11": "PRCXI_96_DeepWell_well_A11", + "B11": "PRCXI_96_DeepWell_well_B11", + "C11": "PRCXI_96_DeepWell_well_C11", + "D11": "PRCXI_96_DeepWell_well_D11", + "E11": "PRCXI_96_DeepWell_well_E11", + "F11": "PRCXI_96_DeepWell_well_F11", + "G11": "PRCXI_96_DeepWell_well_G11", + "H11": "PRCXI_96_DeepWell_well_H11", + "A12": "PRCXI_96_DeepWell_well_A12", + "B12": "PRCXI_96_DeepWell_well_B12", + "C12": "PRCXI_96_DeepWell_well_C12", + "D12": "PRCXI_96_DeepWell_well_D12", + "E12": "PRCXI_96_DeepWell_well_E12", + "F12": "PRCXI_96_DeepWell_well_F12", + "G12": "PRCXI_96_DeepWell_well_G12", + "H12": "PRCXI_96_DeepWell_well_H12" + } + }, + "data": { + "Material": { + "uuid": "57b1e4711e9e4a32b529f3132fc5931f", + "Code": "q2", + "Name": "96深孔板", + "materialEnum": 0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_A1", + "uuid": "a1b574eb-f7e3-496f-8924-854fb779268c", + "name": "PRCXI_96_DeepWell_well_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.9, + "y": 71.25, + "z": 2.0 + }, + "position3d": { + "x": 10.9, + "y": 71.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_0_0_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.9, + "y": 71.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_B1", + "uuid": "bade7d24-f3cf-4548-99ab-56ef5dba43a7", + "name": "PRCXI_96_DeepWell_well_B1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.9, + "y": 62.25, + "z": 2.0 + }, + "position3d": { + "x": 10.9, + "y": 62.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_0_1_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.9, + "y": 62.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_C1", + "uuid": "4b9e1ad7-31a2-49bc-8555-46ec1551afb6", + "name": "PRCXI_96_DeepWell_well_C1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.9, + "y": 53.25, + "z": 2.0 + }, + "position3d": { + "x": 10.9, + "y": 53.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_0_2_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.9, + "y": 53.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_D1", + "uuid": "555da1a2-4bcc-4a67-bbf6-defd89d42486", + "name": "PRCXI_96_DeepWell_well_D1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.9, + "y": 44.25, + "z": 2.0 + }, + "position3d": { + "x": 10.9, + "y": 44.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_0_3_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.9, + "y": 44.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_E1", + "uuid": "2fdcc8bf-79ca-4091-95fc-e8c6138a70f3", + "name": "PRCXI_96_DeepWell_well_E1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.9, + "y": 35.25, + "z": 2.0 + }, + "position3d": { + "x": 10.9, + "y": 35.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_0_4_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.9, + "y": 35.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_F1", + "uuid": "dbbefdbd-b977-4655-90ba-df1c88539cbb", + "name": "PRCXI_96_DeepWell_well_F1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.9, + "y": 26.25, + "z": 2.0 + }, + "position3d": { + "x": 10.9, + "y": 26.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_0_5_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.9, + "y": 26.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_G1", + "uuid": "39c9042d-ace8-421f-9df6-c1b6c4958245", + "name": "PRCXI_96_DeepWell_well_G1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.9, + "y": 17.25, + "z": 2.0 + }, + "position3d": { + "x": 10.9, + "y": 17.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_0_6_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.9, + "y": 17.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_H1", + "uuid": "14fe6fe8-bc57-4a4e-9c81-ddc262ac3084", + "name": "PRCXI_96_DeepWell_well_H1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.9, + "y": 8.25, + "z": 2.0 + }, + "position3d": { + "x": 10.9, + "y": 8.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_0_7_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.9, + "y": 8.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_A2", + "uuid": "f396c70e-c8ee-4596-a9b9-160b2ae0809e", + "name": "PRCXI_96_DeepWell_well_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 19.9, + "y": 71.25, + "z": 2.0 + }, + "position3d": { + "x": 19.9, + "y": 71.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_1_0_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 19.9, + "y": 71.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_B2", + "uuid": "08bedcf4-0c33-4c47-bce3-0f3431901752", + "name": "PRCXI_96_DeepWell_well_B2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 19.9, + "y": 62.25, + "z": 2.0 + }, + "position3d": { + "x": 19.9, + "y": 62.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_1_1_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 19.9, + "y": 62.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_C2", + "uuid": "dea08270-0908-4529-98b2-ae359ce382e2", + "name": "PRCXI_96_DeepWell_well_C2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 19.9, + "y": 53.25, + "z": 2.0 + }, + "position3d": { + "x": 19.9, + "y": 53.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_1_2_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 19.9, + "y": 53.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_D2", + "uuid": "da97a051-edc1-48a8-ae5f-307c293e58d2", + "name": "PRCXI_96_DeepWell_well_D2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 19.9, + "y": 44.25, + "z": 2.0 + }, + "position3d": { + "x": 19.9, + "y": 44.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_1_3_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 19.9, + "y": 44.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_E2", + "uuid": "3104ca62-05bc-4455-8ac4-9b2d61bf8f39", + "name": "PRCXI_96_DeepWell_well_E2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 19.9, + "y": 35.25, + "z": 2.0 + }, + "position3d": { + "x": 19.9, + "y": 35.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_1_4_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 19.9, + "y": 35.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_F2", + "uuid": "5990ec1b-80dc-48ff-9537-99edb4b56d46", + "name": "PRCXI_96_DeepWell_well_F2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 19.9, + "y": 26.25, + "z": 2.0 + }, + "position3d": { + "x": 19.9, + "y": 26.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_1_5_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 19.9, + "y": 26.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_G2", + "uuid": "b983043b-e19b-47de-bcef-6b6e5ee090af", + "name": "PRCXI_96_DeepWell_well_G2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 19.9, + "y": 17.25, + "z": 2.0 + }, + "position3d": { + "x": 19.9, + "y": 17.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_1_6_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 19.9, + "y": 17.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_H2", + "uuid": "05339aa8-8bd7-49bc-a230-c5bfe5cdbca1", + "name": "PRCXI_96_DeepWell_well_H2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 19.9, + "y": 8.25, + "z": 2.0 + }, + "position3d": { + "x": 19.9, + "y": 8.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_1_7_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 19.9, + "y": 8.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_A3", + "uuid": "bb29006f-f111-44fd-95d8-38acfe972643", + "name": "PRCXI_96_DeepWell_well_A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.9, + "y": 71.25, + "z": 2.0 + }, + "position3d": { + "x": 28.9, + "y": 71.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_2_0_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.9, + "y": 71.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_B3", + "uuid": "20d9a246-eb53-4547-9e8a-78331e37eba0", + "name": "PRCXI_96_DeepWell_well_B3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.9, + "y": 62.25, + "z": 2.0 + }, + "position3d": { + "x": 28.9, + "y": 62.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_2_1_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.9, + "y": 62.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_C3", + "uuid": "b96a80f3-97b9-47f8-ad7a-8a6371a88487", + "name": "PRCXI_96_DeepWell_well_C3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.9, + "y": 53.25, + "z": 2.0 + }, + "position3d": { + "x": 28.9, + "y": 53.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_2_2_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.9, + "y": 53.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_D3", + "uuid": "38dcc914-824f-4892-96ae-9e3eb043a2e8", + "name": "PRCXI_96_DeepWell_well_D3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.9, + "y": 44.25, + "z": 2.0 + }, + "position3d": { + "x": 28.9, + "y": 44.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_2_3_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.9, + "y": 44.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_E3", + "uuid": "8363427a-c3e2-4e2f-a954-189005db336c", + "name": "PRCXI_96_DeepWell_well_E3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.9, + "y": 35.25, + "z": 2.0 + }, + "position3d": { + "x": 28.9, + "y": 35.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_2_4_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.9, + "y": 35.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_F3", + "uuid": "0a0f29bd-a722-4858-bdc3-086c93061abd", + "name": "PRCXI_96_DeepWell_well_F3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.9, + "y": 26.25, + "z": 2.0 + }, + "position3d": { + "x": 28.9, + "y": 26.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_2_5_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.9, + "y": 26.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_G3", + "uuid": "8ee8bc8e-069e-41bd-9847-8c18d67b03b3", + "name": "PRCXI_96_DeepWell_well_G3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.9, + "y": 17.25, + "z": 2.0 + }, + "position3d": { + "x": 28.9, + "y": 17.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_2_6_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.9, + "y": 17.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_H3", + "uuid": "bba89d56-a0d9-4bc6-97ed-9f93f99d4084", + "name": "PRCXI_96_DeepWell_well_H3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.9, + "y": 8.25, + "z": 2.0 + }, + "position3d": { + "x": 28.9, + "y": 8.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_2_7_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.9, + "y": 8.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_A4", + "uuid": "53183d0c-2355-4574-82b3-bf286bd805d4", + "name": "PRCXI_96_DeepWell_well_A4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.9, + "y": 71.25, + "z": 2.0 + }, + "position3d": { + "x": 37.9, + "y": 71.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_3_0_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.9, + "y": 71.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_B4", + "uuid": "2e9f5d8d-228e-42c4-8344-1b1b695ddf8a", + "name": "PRCXI_96_DeepWell_well_B4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.9, + "y": 62.25, + "z": 2.0 + }, + "position3d": { + "x": 37.9, + "y": 62.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_3_1_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.9, + "y": 62.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_C4", + "uuid": "8f94d6fe-6b55-4904-bac6-c30d09a08b59", + "name": "PRCXI_96_DeepWell_well_C4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.9, + "y": 53.25, + "z": 2.0 + }, + "position3d": { + "x": 37.9, + "y": 53.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_3_2_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.9, + "y": 53.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_D4", + "uuid": "af3cb066-f6cd-4ba1-97a5-e19a0267e441", + "name": "PRCXI_96_DeepWell_well_D4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.9, + "y": 44.25, + "z": 2.0 + }, + "position3d": { + "x": 37.9, + "y": 44.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_3_3_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.9, + "y": 44.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_E4", + "uuid": "7535c742-b518-4e86-9994-68ca4014ed54", + "name": "PRCXI_96_DeepWell_well_E4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.9, + "y": 35.25, + "z": 2.0 + }, + "position3d": { + "x": 37.9, + "y": 35.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_3_4_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.9, + "y": 35.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_F4", + "uuid": "16e0a544-d7a1-4884-b127-8e628886d7fd", + "name": "PRCXI_96_DeepWell_well_F4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.9, + "y": 26.25, + "z": 2.0 + }, + "position3d": { + "x": 37.9, + "y": 26.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_3_5_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.9, + "y": 26.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_G4", + "uuid": "e88684a7-b03c-4e8a-a02f-fb75f095808a", + "name": "PRCXI_96_DeepWell_well_G4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.9, + "y": 17.25, + "z": 2.0 + }, + "position3d": { + "x": 37.9, + "y": 17.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_3_6_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.9, + "y": 17.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_H4", + "uuid": "c6b476bf-d4b2-43e6-8ef3-ec8127f57e72", + "name": "PRCXI_96_DeepWell_well_H4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.9, + "y": 8.25, + "z": 2.0 + }, + "position3d": { + "x": 37.9, + "y": 8.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_3_7_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.9, + "y": 8.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_A5", + "uuid": "a599aaa9-92cb-4dc8-9fed-f638eb532da2", + "name": "PRCXI_96_DeepWell_well_A5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.9, + "y": 71.25, + "z": 2.0 + }, + "position3d": { + "x": 46.9, + "y": 71.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_4_0_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.9, + "y": 71.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_B5", + "uuid": "a5bcd67b-c8d0-48ad-ada7-b949a78e84e8", + "name": "PRCXI_96_DeepWell_well_B5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.9, + "y": 62.25, + "z": 2.0 + }, + "position3d": { + "x": 46.9, + "y": 62.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_4_1_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.9, + "y": 62.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_C5", + "uuid": "1fcd54c0-a2ef-494d-84fb-8ee9e7d59185", + "name": "PRCXI_96_DeepWell_well_C5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.9, + "y": 53.25, + "z": 2.0 + }, + "position3d": { + "x": 46.9, + "y": 53.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_4_2_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.9, + "y": 53.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_D5", + "uuid": "5c471be9-9683-41e5-a088-f7793b6c83b4", + "name": "PRCXI_96_DeepWell_well_D5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.9, + "y": 44.25, + "z": 2.0 + }, + "position3d": { + "x": 46.9, + "y": 44.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_4_3_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.9, + "y": 44.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_E5", + "uuid": "12d2a688-77a7-4586-a584-62f6cf14862e", + "name": "PRCXI_96_DeepWell_well_E5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.9, + "y": 35.25, + "z": 2.0 + }, + "position3d": { + "x": 46.9, + "y": 35.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_4_4_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.9, + "y": 35.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_F5", + "uuid": "a50517d0-a175-44eb-bc8f-2991bd1b64c4", + "name": "PRCXI_96_DeepWell_well_F5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.9, + "y": 26.25, + "z": 2.0 + }, + "position3d": { + "x": 46.9, + "y": 26.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_4_5_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.9, + "y": 26.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_G5", + "uuid": "d16a067e-c6f4-4a88-9340-95976b1b030e", + "name": "PRCXI_96_DeepWell_well_G5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.9, + "y": 17.25, + "z": 2.0 + }, + "position3d": { + "x": 46.9, + "y": 17.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_4_6_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.9, + "y": 17.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_H5", + "uuid": "e8360ce8-01c8-4738-b637-b6dd93e63f95", + "name": "PRCXI_96_DeepWell_well_H5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.9, + "y": 8.25, + "z": 2.0 + }, + "position3d": { + "x": 46.9, + "y": 8.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_4_7_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.9, + "y": 8.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_A6", + "uuid": "8047bacf-f28f-423f-ada2-9f0b084e6981", + "name": "PRCXI_96_DeepWell_well_A6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.9, + "y": 71.25, + "z": 2.0 + }, + "position3d": { + "x": 55.9, + "y": 71.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_5_0_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.9, + "y": 71.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_B6", + "uuid": "cf70cab9-1498-47b0-ab0e-ec17da5f8225", + "name": "PRCXI_96_DeepWell_well_B6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.9, + "y": 62.25, + "z": 2.0 + }, + "position3d": { + "x": 55.9, + "y": 62.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_5_1_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.9, + "y": 62.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_C6", + "uuid": "fb4e52ad-3ce3-409d-b591-658adced83fa", + "name": "PRCXI_96_DeepWell_well_C6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.9, + "y": 53.25, + "z": 2.0 + }, + "position3d": { + "x": 55.9, + "y": 53.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_5_2_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.9, + "y": 53.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_D6", + "uuid": "2b90c230-bf58-4cc3-b8ca-ca0a506629bd", + "name": "PRCXI_96_DeepWell_well_D6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.9, + "y": 44.25, + "z": 2.0 + }, + "position3d": { + "x": 55.9, + "y": 44.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_5_3_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.9, + "y": 44.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_E6", + "uuid": "f841b4ef-f6cc-4f50-90c6-4d794b42d23c", + "name": "PRCXI_96_DeepWell_well_E6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.9, + "y": 35.25, + "z": 2.0 + }, + "position3d": { + "x": 55.9, + "y": 35.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_5_4_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.9, + "y": 35.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_F6", + "uuid": "d156f5b5-fd94-4eeb-aefc-a59885f519f5", + "name": "PRCXI_96_DeepWell_well_F6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.9, + "y": 26.25, + "z": 2.0 + }, + "position3d": { + "x": 55.9, + "y": 26.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_5_5_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.9, + "y": 26.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_G6", + "uuid": "6202c0ca-d9e3-4cd3-a4a3-e883fd472ff7", + "name": "PRCXI_96_DeepWell_well_G6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.9, + "y": 17.25, + "z": 2.0 + }, + "position3d": { + "x": 55.9, + "y": 17.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_5_6_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.9, + "y": 17.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_H6", + "uuid": "0f782867-f884-4a59-bf99-e80b5e04a1ad", + "name": "PRCXI_96_DeepWell_well_H6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.9, + "y": 8.25, + "z": 2.0 + }, + "position3d": { + "x": 55.9, + "y": 8.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_5_7_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.9, + "y": 8.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_A7", + "uuid": "18cb39e2-e067-4277-885c-0b0fc9415805", + "name": "PRCXI_96_DeepWell_well_A7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.9, + "y": 71.25, + "z": 2.0 + }, + "position3d": { + "x": 64.9, + "y": 71.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_6_0_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.9, + "y": 71.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_B7", + "uuid": "6dfdf122-b68a-466c-a7a3-0f477d691ce1", + "name": "PRCXI_96_DeepWell_well_B7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.9, + "y": 62.25, + "z": 2.0 + }, + "position3d": { + "x": 64.9, + "y": 62.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_6_1_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.9, + "y": 62.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_C7", + "uuid": "b7b093c5-53d3-4844-a9c1-97b6c5330af9", + "name": "PRCXI_96_DeepWell_well_C7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.9, + "y": 53.25, + "z": 2.0 + }, + "position3d": { + "x": 64.9, + "y": 53.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_6_2_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.9, + "y": 53.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_D7", + "uuid": "09a7deba-88e6-49ee-84f6-a8b539ae2b4b", + "name": "PRCXI_96_DeepWell_well_D7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.9, + "y": 44.25, + "z": 2.0 + }, + "position3d": { + "x": 64.9, + "y": 44.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_6_3_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.9, + "y": 44.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_E7", + "uuid": "4a9c2b0d-d85f-4b0a-9cfb-7dfd69a90c35", + "name": "PRCXI_96_DeepWell_well_E7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.9, + "y": 35.25, + "z": 2.0 + }, + "position3d": { + "x": 64.9, + "y": 35.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_6_4_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.9, + "y": 35.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_F7", + "uuid": "ec7f5ee1-4146-4d8a-9afe-d6d75a1979a8", + "name": "PRCXI_96_DeepWell_well_F7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.9, + "y": 26.25, + "z": 2.0 + }, + "position3d": { + "x": 64.9, + "y": 26.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_6_5_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.9, + "y": 26.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_G7", + "uuid": "33d8b4de-ebfb-42a6-9c87-ba51880dea8b", + "name": "PRCXI_96_DeepWell_well_G7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.9, + "y": 17.25, + "z": 2.0 + }, + "position3d": { + "x": 64.9, + "y": 17.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_6_6_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.9, + "y": 17.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_H7", + "uuid": "4ce7a6c1-2932-4e81-a58b-9832d91e1056", + "name": "PRCXI_96_DeepWell_well_H7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.9, + "y": 8.25, + "z": 2.0 + }, + "position3d": { + "x": 64.9, + "y": 8.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_6_7_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.9, + "y": 8.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_A8", + "uuid": "e43e13ed-8e1e-406f-b53b-e6879566be34", + "name": "PRCXI_96_DeepWell_well_A8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.9, + "y": 71.25, + "z": 2.0 + }, + "position3d": { + "x": 73.9, + "y": 71.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_7_0_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.9, + "y": 71.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_B8", + "uuid": "ddc15fbe-a581-430e-a42a-a8bfc3c127dc", + "name": "PRCXI_96_DeepWell_well_B8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.9, + "y": 62.25, + "z": 2.0 + }, + "position3d": { + "x": 73.9, + "y": 62.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_7_1_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.9, + "y": 62.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_C8", + "uuid": "63b92e5d-7a14-4536-beee-c0fde5cd2190", + "name": "PRCXI_96_DeepWell_well_C8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.9, + "y": 53.25, + "z": 2.0 + }, + "position3d": { + "x": 73.9, + "y": 53.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_7_2_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.9, + "y": 53.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_D8", + "uuid": "0b7a70d7-8134-4f5a-b517-840891a2459f", + "name": "PRCXI_96_DeepWell_well_D8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.9, + "y": 44.25, + "z": 2.0 + }, + "position3d": { + "x": 73.9, + "y": 44.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_7_3_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.9, + "y": 44.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_E8", + "uuid": "2f5c66ca-1f44-45c8-840e-3e2b27f5ef57", + "name": "PRCXI_96_DeepWell_well_E8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.9, + "y": 35.25, + "z": 2.0 + }, + "position3d": { + "x": 73.9, + "y": 35.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_7_4_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.9, + "y": 35.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_F8", + "uuid": "691fe60f-9aa2-432f-846e-5b15351708b3", + "name": "PRCXI_96_DeepWell_well_F8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.9, + "y": 26.25, + "z": 2.0 + }, + "position3d": { + "x": 73.9, + "y": 26.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_7_5_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.9, + "y": 26.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_G8", + "uuid": "8adfc78c-e520-4ea5-b173-a7e5ce2be5cc", + "name": "PRCXI_96_DeepWell_well_G8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.9, + "y": 17.25, + "z": 2.0 + }, + "position3d": { + "x": 73.9, + "y": 17.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_7_6_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.9, + "y": 17.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_H8", + "uuid": "4e2a3c17-aedf-4c62-af9f-627fb8131043", + "name": "PRCXI_96_DeepWell_well_H8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.9, + "y": 8.25, + "z": 2.0 + }, + "position3d": { + "x": 73.9, + "y": 8.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_7_7_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.9, + "y": 8.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_A9", + "uuid": "3e20c072-874e-4980-b558-979a6d16d517", + "name": "PRCXI_96_DeepWell_well_A9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.9, + "y": 71.25, + "z": 2.0 + }, + "position3d": { + "x": 82.9, + "y": 71.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_8_0_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.9, + "y": 71.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_B9", + "uuid": "ecea98f9-a7f6-4b8d-97d7-a9d384eec2a8", + "name": "PRCXI_96_DeepWell_well_B9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.9, + "y": 62.25, + "z": 2.0 + }, + "position3d": { + "x": 82.9, + "y": 62.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_8_1_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.9, + "y": 62.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_C9", + "uuid": "120d0f9e-f678-44c4-87a4-0579dcc30ae1", + "name": "PRCXI_96_DeepWell_well_C9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.9, + "y": 53.25, + "z": 2.0 + }, + "position3d": { + "x": 82.9, + "y": 53.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_8_2_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.9, + "y": 53.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_D9", + "uuid": "de893045-ebc2-478f-809b-42f21995c19a", + "name": "PRCXI_96_DeepWell_well_D9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.9, + "y": 44.25, + "z": 2.0 + }, + "position3d": { + "x": 82.9, + "y": 44.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_8_3_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.9, + "y": 44.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_E9", + "uuid": "285ec430-5760-4ae3-ba19-459ac2fbe0a2", + "name": "PRCXI_96_DeepWell_well_E9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.9, + "y": 35.25, + "z": 2.0 + }, + "position3d": { + "x": 82.9, + "y": 35.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_8_4_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.9, + "y": 35.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_F9", + "uuid": "69bf6602-0cdd-4677-b837-b5e3b53dd2da", + "name": "PRCXI_96_DeepWell_well_F9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.9, + "y": 26.25, + "z": 2.0 + }, + "position3d": { + "x": 82.9, + "y": 26.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_8_5_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.9, + "y": 26.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_G9", + "uuid": "bf129bcd-48e3-4411-866c-bec5c9e879fe", + "name": "PRCXI_96_DeepWell_well_G9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.9, + "y": 17.25, + "z": 2.0 + }, + "position3d": { + "x": 82.9, + "y": 17.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_8_6_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.9, + "y": 17.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_H9", + "uuid": "fed9af4b-8164-4be3-b38c-edefa3a12b54", + "name": "PRCXI_96_DeepWell_well_H9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.9, + "y": 8.25, + "z": 2.0 + }, + "position3d": { + "x": 82.9, + "y": 8.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_8_7_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.9, + "y": 8.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_A10", + "uuid": "97a72a5f-def7-4f85-83a8-6815590b4f41", + "name": "PRCXI_96_DeepWell_well_A10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.9, + "y": 71.25, + "z": 2.0 + }, + "position3d": { + "x": 91.9, + "y": 71.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_9_0_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.9, + "y": 71.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_B10", + "uuid": "cca1d8fe-5863-4f5d-8f32-2a0e8b946e68", + "name": "PRCXI_96_DeepWell_well_B10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.9, + "y": 62.25, + "z": 2.0 + }, + "position3d": { + "x": 91.9, + "y": 62.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_9_1_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.9, + "y": 62.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_C10", + "uuid": "3c5a7172-fe27-4d13-877e-d2de87163da4", + "name": "PRCXI_96_DeepWell_well_C10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.9, + "y": 53.25, + "z": 2.0 + }, + "position3d": { + "x": 91.9, + "y": 53.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_9_2_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.9, + "y": 53.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_D10", + "uuid": "7d83dcc0-5564-4113-9dbf-04a228417452", + "name": "PRCXI_96_DeepWell_well_D10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.9, + "y": 44.25, + "z": 2.0 + }, + "position3d": { + "x": 91.9, + "y": 44.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_9_3_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.9, + "y": 44.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_E10", + "uuid": "a2427569-e745-4a72-9c93-8ad7217a432f", + "name": "PRCXI_96_DeepWell_well_E10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.9, + "y": 35.25, + "z": 2.0 + }, + "position3d": { + "x": 91.9, + "y": 35.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_9_4_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.9, + "y": 35.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_F10", + "uuid": "c3f04b43-678a-47f6-9be7-50576c99d832", + "name": "PRCXI_96_DeepWell_well_F10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.9, + "y": 26.25, + "z": 2.0 + }, + "position3d": { + "x": 91.9, + "y": 26.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_9_5_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.9, + "y": 26.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_G10", + "uuid": "2c770bfe-92aa-4e32-8b6e-679a54ed9596", + "name": "PRCXI_96_DeepWell_well_G10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.9, + "y": 17.25, + "z": 2.0 + }, + "position3d": { + "x": 91.9, + "y": 17.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_9_6_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.9, + "y": 17.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_H10", + "uuid": "6366fde0-2ff8-4b2c-884b-a481cd6c373a", + "name": "PRCXI_96_DeepWell_well_H10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.9, + "y": 8.25, + "z": 2.0 + }, + "position3d": { + "x": 91.9, + "y": 8.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_9_7_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.9, + "y": 8.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_A11", + "uuid": "2d6913b4-33d6-42d0-a04c-2dc689f5277b", + "name": "PRCXI_96_DeepWell_well_A11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.9, + "y": 71.25, + "z": 2.0 + }, + "position3d": { + "x": 100.9, + "y": 71.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_10_0_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.9, + "y": 71.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_B11", + "uuid": "4a9e6f13-ba2a-4bc1-b54b-b4a2095edfd3", + "name": "PRCXI_96_DeepWell_well_B11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.9, + "y": 62.25, + "z": 2.0 + }, + "position3d": { + "x": 100.9, + "y": 62.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_10_1_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.9, + "y": 62.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_C11", + "uuid": "f00edf6e-ef11-480c-affe-bfcabe3eb7c6", + "name": "PRCXI_96_DeepWell_well_C11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.9, + "y": 53.25, + "z": 2.0 + }, + "position3d": { + "x": 100.9, + "y": 53.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_10_2_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.9, + "y": 53.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_D11", + "uuid": "c1183a5a-5c6f-485d-9ce8-1f49f2ed3697", + "name": "PRCXI_96_DeepWell_well_D11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.9, + "y": 44.25, + "z": 2.0 + }, + "position3d": { + "x": 100.9, + "y": 44.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_10_3_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.9, + "y": 44.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_E11", + "uuid": "1e08674a-b18c-45cb-b372-795262c6cb3c", + "name": "PRCXI_96_DeepWell_well_E11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.9, + "y": 35.25, + "z": 2.0 + }, + "position3d": { + "x": 100.9, + "y": 35.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_10_4_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.9, + "y": 35.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_F11", + "uuid": "5f89364e-d16b-4bb9-967e-0ffbd9c06a45", + "name": "PRCXI_96_DeepWell_well_F11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.9, + "y": 26.25, + "z": 2.0 + }, + "position3d": { + "x": 100.9, + "y": 26.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_10_5_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.9, + "y": 26.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_G11", + "uuid": "fc82ecde-3760-4b21-8ee9-c65bac2f4375", + "name": "PRCXI_96_DeepWell_well_G11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.9, + "y": 17.25, + "z": 2.0 + }, + "position3d": { + "x": 100.9, + "y": 17.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_10_6_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.9, + "y": 17.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_H11", + "uuid": "c81985a9-c5b0-45b6-a1e5-849de8cf446e", + "name": "PRCXI_96_DeepWell_well_H11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.9, + "y": 8.25, + "z": 2.0 + }, + "position3d": { + "x": 100.9, + "y": 8.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_10_7_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.9, + "y": 8.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_A12", + "uuid": "af0ebd62-59a2-4365-98ac-aff95e52af99", + "name": "PRCXI_96_DeepWell_well_A12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.9, + "y": 71.25, + "z": 2.0 + }, + "position3d": { + "x": 109.9, + "y": 71.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_11_0_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.9, + "y": 71.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_B12", + "uuid": "dfafc23d-1cec-437b-a904-d500c1370146", + "name": "PRCXI_96_DeepWell_well_B12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.9, + "y": 62.25, + "z": 2.0 + }, + "position3d": { + "x": 109.9, + "y": 62.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_11_1_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.9, + "y": 62.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_C12", + "uuid": "c5ed5fe3-65e0-404b-ab06-9040d8e6c4c0", + "name": "PRCXI_96_DeepWell_well_C12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.9, + "y": 53.25, + "z": 2.0 + }, + "position3d": { + "x": 109.9, + "y": 53.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_11_2_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.9, + "y": 53.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_D12", + "uuid": "20999cc8-ad6a-492e-a5a5-ace83814ebd5", + "name": "PRCXI_96_DeepWell_well_D12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.9, + "y": 44.25, + "z": 2.0 + }, + "position3d": { + "x": 109.9, + "y": 44.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_11_3_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.9, + "y": 44.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_E12", + "uuid": "a1f46978-bc76-4308-9665-62e8b0edb1a6", + "name": "PRCXI_96_DeepWell_well_E12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.9, + "y": 35.25, + "z": 2.0 + }, + "position3d": { + "x": 109.9, + "y": 35.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_11_4_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.9, + "y": 35.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_F12", + "uuid": "619c05bc-9f27-4f15-8161-c72f62fd79e7", + "name": "PRCXI_96_DeepWell_well_F12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.9, + "y": 26.25, + "z": 2.0 + }, + "position3d": { + "x": 109.9, + "y": 26.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_11_5_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.9, + "y": 26.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_G12", + "uuid": "f4abb386-3c87-44fc-9ac7-3c3b3d1682d8", + "name": "PRCXI_96_DeepWell_well_G12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.9, + "y": 17.25, + "z": 2.0 + }, + "position3d": { + "x": 109.9, + "y": 17.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_11_6_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.9, + "y": 17.25, + "z": 2.0 + } + }, + { + "id": "PRCXI_96_DeepWell_well_H12", + "uuid": "f4ddb39a-0829-4482-a170-80687875104a", + "name": "PRCXI_96_DeepWell_well_H12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "8adfc5c3-6e98-4980-a7ef-146f2ab53906", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.0, + "width": 8.2, + "height": 8.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.9, + "y": 8.25, + "z": 2.0 + }, + "position3d": { + "x": 109.9, + "y": 8.25, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 8.2, + "size_z": 42.0, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_11_7_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.9, + "y": 8.25, + "z": 2.0 + } + } + ] + }, + { + "id": "PRCXI_AGenBio_4_troughplate", + "category": [ + "prcxi", + "plates" + ], + "class": { + "module": "unilabos.devices.liquid_handling.prcxi.prcxi_labware:PRCXI_AGenBio_4_troughplate", + "type": "pylabrobot" + }, + "description": "4道储液槽 (Code: sdfrth654)", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/prcxi/plates.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "PRCXI_AGenBio_4_troughplate", + "uuid": "c9b93d2e-8807-4d91-b8f4-10466ecfea96", + "name": "PRCXI_AGenBio_4_troughplate", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "plate", + "class": "", + "pose": { + "size": { + "depth": 43.8, + "width": 127.76, + "height": 85.48 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "PRCXI9300Plate", + "size_x": 127.76, + "size_y": 85.48, + "size_z": 43.8, + "category": "plate", + "model": "PRCXI_AGenBio_4_troughplate", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "PRCXI_AGenBio_4_troughplate_well_A1", + "A2": "PRCXI_AGenBio_4_troughplate_well_A2", + "A3": "PRCXI_AGenBio_4_troughplate_well_A3", + "A4": "PRCXI_AGenBio_4_troughplate_well_A4" + } + }, + "data": { + "Material": { + "uuid": "01953864f6f140ccaa8ddffd4f3e46f5", + "Code": "sdfrth654", + "Name": "4道储液槽", + "materialEnum": 0, + "SupplyType": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_AGenBio_4_troughplate_well_A1", + "uuid": "d4a49a8d-1d4c-4622-b44a-5a5365f73a7a", + "name": "PRCXI_AGenBio_4_troughplate_well_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "c9b93d2e-8807-4d91-b8f4-10466ecfea96", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.55, + "width": 26.0, + "height": 71.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 9.8, + "y": 7.2, + "z": 0.9 + }, + "position3d": { + "x": 9.8, + "y": 7.2, + "z": 0.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 26, + "size_y": 71.2, + "size_z": 42.55, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 79071.516, + "material_z_thickness": 1, + "compute_volume_from_height": { + "type": "function", + "code": "e30100000000000000000000000500000013000000f326000000950297007401000000000000000000007c0089018902a6030000ab0300000000000000005300a9014ea901da24636f6d707574655f766f6c756d655f66726f6d5f6865696768745f72656374616e676c652903da0d6c69717569645f686569676874da11494e4e45525f57454c4c5f4c454e475448da10494e4e45525f57454c4c5f57494454487303000000208080fa642f55736572732f64702f736f6674776172652f4769744875622f4c6561704c61622f556e692d4c61622d4f532f756e696c61626f732f646576696365732f6c69717569645f68616e646c696e672f70726378692f70726378695f6c6162776172652e7079fa083c6c616d6264613efa2d50524358495f4147656e42696f5f345f74726f756768706c6174652e3c6c6f63616c733e2e3c6c616d6264613ead000000f31b000000f88000d5385cd80613d80617d80616f107043906f4000439068000f300000000", + "closure": [ + { + "type": "cell", + "contents": 71.2 + }, + { + "type": "cell", + "contents": 26.1 + } + ] + }, + "compute_height_from_volume": { + "type": "function", + "code": "e30100000000000000000000000500000013000000f326000000950297007401000000000000000000007c0089018902a6030000ab0300000000000000005300a9014ea901da24636f6d707574655f6865696768745f66726f6d5f766f6c756d655f72656374616e676c652903da0d6c69717569645f766f6c756d65da11494e4e45525f57454c4c5f4c454e475448da10494e4e45525f57454c4c5f57494454487303000000208080fa642f55736572732f64702f736f6674776172652f4769744875622f4c6561704c61622f556e692d4c61622d4f532f756e696c61626f732f646576696365732f6c69717569645f68616e646c696e672f70726378692f70726378695f6c6162776172652e7079fa083c6c616d6264613efa2d50524358495f4147656e42696f5f345f74726f756768706c6174652e3c6c6f63616c733e2e3c6c616d6264613ea8000000f31b000000f88000d5385cd80613d80617d80616f107043906f4000439068000f300000000", + "closure": [ + { + "type": "cell", + "contents": 71.2 + }, + { + "type": "cell", + "contents": 26.1 + } + ] + }, + "height_volume_data": null + }, + "data": { + "thing": "well_0_0_volume_tracker", + "max_volume": 79071.516, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 9.8, + "y": 7.2, + "z": 0.9 + } + }, + { + "id": "PRCXI_AGenBio_4_troughplate_well_A2", + "uuid": "bdace615-b923-4896-883c-40278a14c4ac", + "name": "PRCXI_AGenBio_4_troughplate_well_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "c9b93d2e-8807-4d91-b8f4-10466ecfea96", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.55, + "width": 26.0, + "height": 71.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 36.9, + "y": 7.2, + "z": 0.9 + }, + "position3d": { + "x": 36.9, + "y": 7.2, + "z": 0.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 26, + "size_y": 71.2, + "size_z": 42.55, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 79071.516, + "material_z_thickness": 1, + "compute_volume_from_height": { + "type": "function", + "code": "e30100000000000000000000000500000013000000f326000000950297007401000000000000000000007c0089018902a6030000ab0300000000000000005300a9014ea901da24636f6d707574655f766f6c756d655f66726f6d5f6865696768745f72656374616e676c652903da0d6c69717569645f686569676874da11494e4e45525f57454c4c5f4c454e475448da10494e4e45525f57454c4c5f57494454487303000000208080fa642f55736572732f64702f736f6674776172652f4769744875622f4c6561704c61622f556e692d4c61622d4f532f756e696c61626f732f646576696365732f6c69717569645f68616e646c696e672f70726378692f70726378695f6c6162776172652e7079fa083c6c616d6264613efa2d50524358495f4147656e42696f5f345f74726f756768706c6174652e3c6c6f63616c733e2e3c6c616d6264613ead000000f31b000000f88000d5385cd80613d80617d80616f107043906f4000439068000f300000000", + "closure": [ + { + "type": "cell", + "contents": 71.2 + }, + { + "type": "cell", + "contents": 26.1 + } + ] + }, + "compute_height_from_volume": { + "type": "function", + "code": "e30100000000000000000000000500000013000000f326000000950297007401000000000000000000007c0089018902a6030000ab0300000000000000005300a9014ea901da24636f6d707574655f6865696768745f66726f6d5f766f6c756d655f72656374616e676c652903da0d6c69717569645f766f6c756d65da11494e4e45525f57454c4c5f4c454e475448da10494e4e45525f57454c4c5f57494454487303000000208080fa642f55736572732f64702f736f6674776172652f4769744875622f4c6561704c61622f556e692d4c61622d4f532f756e696c61626f732f646576696365732f6c69717569645f68616e646c696e672f70726378692f70726378695f6c6162776172652e7079fa083c6c616d6264613efa2d50524358495f4147656e42696f5f345f74726f756768706c6174652e3c6c6f63616c733e2e3c6c616d6264613ea8000000f31b000000f88000d5385cd80613d80617d80616f107043906f4000439068000f300000000", + "closure": [ + { + "type": "cell", + "contents": 71.2 + }, + { + "type": "cell", + "contents": 26.1 + } + ] + }, + "height_volume_data": null + }, + "data": { + "thing": "well_1_0_volume_tracker", + "max_volume": 79071.516, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 36.9, + "y": 7.2, + "z": 0.9 + } + }, + { + "id": "PRCXI_AGenBio_4_troughplate_well_A3", + "uuid": "5501c39a-ec32-470e-9dab-a10ca93cdca7", + "name": "PRCXI_AGenBio_4_troughplate_well_A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "c9b93d2e-8807-4d91-b8f4-10466ecfea96", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.55, + "width": 26.0, + "height": 71.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.0, + "y": 7.2, + "z": 0.9 + }, + "position3d": { + "x": 64.0, + "y": 7.2, + "z": 0.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 26, + "size_y": 71.2, + "size_z": 42.55, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 79071.516, + "material_z_thickness": 1, + "compute_volume_from_height": { + "type": "function", + "code": "e30100000000000000000000000500000013000000f326000000950297007401000000000000000000007c0089018902a6030000ab0300000000000000005300a9014ea901da24636f6d707574655f766f6c756d655f66726f6d5f6865696768745f72656374616e676c652903da0d6c69717569645f686569676874da11494e4e45525f57454c4c5f4c454e475448da10494e4e45525f57454c4c5f57494454487303000000208080fa642f55736572732f64702f736f6674776172652f4769744875622f4c6561704c61622f556e692d4c61622d4f532f756e696c61626f732f646576696365732f6c69717569645f68616e646c696e672f70726378692f70726378695f6c6162776172652e7079fa083c6c616d6264613efa2d50524358495f4147656e42696f5f345f74726f756768706c6174652e3c6c6f63616c733e2e3c6c616d6264613ead000000f31b000000f88000d5385cd80613d80617d80616f107043906f4000439068000f300000000", + "closure": [ + { + "type": "cell", + "contents": 71.2 + }, + { + "type": "cell", + "contents": 26.1 + } + ] + }, + "compute_height_from_volume": { + "type": "function", + "code": "e30100000000000000000000000500000013000000f326000000950297007401000000000000000000007c0089018902a6030000ab0300000000000000005300a9014ea901da24636f6d707574655f6865696768745f66726f6d5f766f6c756d655f72656374616e676c652903da0d6c69717569645f766f6c756d65da11494e4e45525f57454c4c5f4c454e475448da10494e4e45525f57454c4c5f57494454487303000000208080fa642f55736572732f64702f736f6674776172652f4769744875622f4c6561704c61622f556e692d4c61622d4f532f756e696c61626f732f646576696365732f6c69717569645f68616e646c696e672f70726378692f70726378695f6c6162776172652e7079fa083c6c616d6264613efa2d50524358495f4147656e42696f5f345f74726f756768706c6174652e3c6c6f63616c733e2e3c6c616d6264613ea8000000f31b000000f88000d5385cd80613d80617d80616f107043906f4000439068000f300000000", + "closure": [ + { + "type": "cell", + "contents": 71.2 + }, + { + "type": "cell", + "contents": 26.1 + } + ] + }, + "height_volume_data": null + }, + "data": { + "thing": "well_2_0_volume_tracker", + "max_volume": 79071.516, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.0, + "y": 7.2, + "z": 0.9 + } + }, + { + "id": "PRCXI_AGenBio_4_troughplate_well_A4", + "uuid": "e06f47a8-f61e-4681-8539-80a25eb45dec", + "name": "PRCXI_AGenBio_4_troughplate_well_A4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "c9b93d2e-8807-4d91-b8f4-10466ecfea96", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 42.55, + "width": 26.0, + "height": 71.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.1, + "y": 7.2, + "z": 0.9 + }, + "position3d": { + "x": 91.1, + "y": 7.2, + "z": 0.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 26, + "size_y": 71.2, + "size_z": 42.55, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 79071.516, + "material_z_thickness": 1, + "compute_volume_from_height": { + "type": "function", + "code": "e30100000000000000000000000500000013000000f326000000950297007401000000000000000000007c0089018902a6030000ab0300000000000000005300a9014ea901da24636f6d707574655f766f6c756d655f66726f6d5f6865696768745f72656374616e676c652903da0d6c69717569645f686569676874da11494e4e45525f57454c4c5f4c454e475448da10494e4e45525f57454c4c5f57494454487303000000208080fa642f55736572732f64702f736f6674776172652f4769744875622f4c6561704c61622f556e692d4c61622d4f532f756e696c61626f732f646576696365732f6c69717569645f68616e646c696e672f70726378692f70726378695f6c6162776172652e7079fa083c6c616d6264613efa2d50524358495f4147656e42696f5f345f74726f756768706c6174652e3c6c6f63616c733e2e3c6c616d6264613ead000000f31b000000f88000d5385cd80613d80617d80616f107043906f4000439068000f300000000", + "closure": [ + { + "type": "cell", + "contents": 71.2 + }, + { + "type": "cell", + "contents": 26.1 + } + ] + }, + "compute_height_from_volume": { + "type": "function", + "code": "e30100000000000000000000000500000013000000f326000000950297007401000000000000000000007c0089018902a6030000ab0300000000000000005300a9014ea901da24636f6d707574655f6865696768745f66726f6d5f766f6c756d655f72656374616e676c652903da0d6c69717569645f766f6c756d65da11494e4e45525f57454c4c5f4c454e475448da10494e4e45525f57454c4c5f57494454487303000000208080fa642f55736572732f64702f736f6674776172652f4769744875622f4c6561704c61622f556e692d4c61622d4f532f756e696c61626f732f646576696365732f6c69717569645f68616e646c696e672f70726378692f70726378695f6c6162776172652e7079fa083c6c616d6264613efa2d50524358495f4147656e42696f5f345f74726f756768706c6174652e3c6c6f63616c733e2e3c6c616d6264613ea8000000f31b000000f88000d5385cd80613d80617d80616f107043906f4000439068000f300000000", + "closure": [ + { + "type": "cell", + "contents": 71.2 + }, + { + "type": "cell", + "contents": 26.1 + } + ] + }, + "height_volume_data": null + }, + "data": { + "thing": "well_3_0_volume_tracker", + "max_volume": 79071.516, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.1, + "y": 7.2, + "z": 0.9 + } + } + ] + }, + { + "id": "PRCXI_BioER_96_wellplate", + "category": [ + "prcxi", + "plates" + ], + "class": { + "module": "unilabos.devices.liquid_handling.prcxi.prcxi_labware:PRCXI_BioER_96_wellplate", + "type": "pylabrobot" + }, + "description": "2.2ml 深孔板 (Code: ZX-019-2.2)", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/prcxi/plates.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "PRCXI_BioER_96_wellplate", + "uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "name": "PRCXI_BioER_96_wellplate", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "plate", + "class": "", + "pose": { + "size": { + "depth": 44.2, + "width": 127.1, + "height": 85.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "PRCXI9300Plate", + "size_x": 127.1, + "size_y": 85.0, + "size_z": 44.2, + "category": "plate", + "model": "PRCXI_BioER_96_wellplate", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "PRCXI_BioER_96_wellplate_well_A1", + "B1": "PRCXI_BioER_96_wellplate_well_B1", + "C1": "PRCXI_BioER_96_wellplate_well_C1", + "D1": "PRCXI_BioER_96_wellplate_well_D1", + "E1": "PRCXI_BioER_96_wellplate_well_E1", + "F1": "PRCXI_BioER_96_wellplate_well_F1", + "G1": "PRCXI_BioER_96_wellplate_well_G1", + "H1": "PRCXI_BioER_96_wellplate_well_H1", + "A2": "PRCXI_BioER_96_wellplate_well_A2", + "B2": "PRCXI_BioER_96_wellplate_well_B2", + "C2": "PRCXI_BioER_96_wellplate_well_C2", + "D2": "PRCXI_BioER_96_wellplate_well_D2", + "E2": "PRCXI_BioER_96_wellplate_well_E2", + "F2": "PRCXI_BioER_96_wellplate_well_F2", + "G2": "PRCXI_BioER_96_wellplate_well_G2", + "H2": "PRCXI_BioER_96_wellplate_well_H2", + "A3": "PRCXI_BioER_96_wellplate_well_A3", + "B3": "PRCXI_BioER_96_wellplate_well_B3", + "C3": "PRCXI_BioER_96_wellplate_well_C3", + "D3": "PRCXI_BioER_96_wellplate_well_D3", + "E3": "PRCXI_BioER_96_wellplate_well_E3", + "F3": "PRCXI_BioER_96_wellplate_well_F3", + "G3": "PRCXI_BioER_96_wellplate_well_G3", + "H3": "PRCXI_BioER_96_wellplate_well_H3", + "A4": "PRCXI_BioER_96_wellplate_well_A4", + "B4": "PRCXI_BioER_96_wellplate_well_B4", + "C4": "PRCXI_BioER_96_wellplate_well_C4", + "D4": "PRCXI_BioER_96_wellplate_well_D4", + "E4": "PRCXI_BioER_96_wellplate_well_E4", + "F4": "PRCXI_BioER_96_wellplate_well_F4", + "G4": "PRCXI_BioER_96_wellplate_well_G4", + "H4": "PRCXI_BioER_96_wellplate_well_H4", + "A5": "PRCXI_BioER_96_wellplate_well_A5", + "B5": "PRCXI_BioER_96_wellplate_well_B5", + "C5": "PRCXI_BioER_96_wellplate_well_C5", + "D5": "PRCXI_BioER_96_wellplate_well_D5", + "E5": "PRCXI_BioER_96_wellplate_well_E5", + "F5": "PRCXI_BioER_96_wellplate_well_F5", + "G5": "PRCXI_BioER_96_wellplate_well_G5", + "H5": "PRCXI_BioER_96_wellplate_well_H5", + "A6": "PRCXI_BioER_96_wellplate_well_A6", + "B6": "PRCXI_BioER_96_wellplate_well_B6", + "C6": "PRCXI_BioER_96_wellplate_well_C6", + "D6": "PRCXI_BioER_96_wellplate_well_D6", + "E6": "PRCXI_BioER_96_wellplate_well_E6", + "F6": "PRCXI_BioER_96_wellplate_well_F6", + "G6": "PRCXI_BioER_96_wellplate_well_G6", + "H6": "PRCXI_BioER_96_wellplate_well_H6", + "A7": "PRCXI_BioER_96_wellplate_well_A7", + "B7": "PRCXI_BioER_96_wellplate_well_B7", + "C7": "PRCXI_BioER_96_wellplate_well_C7", + "D7": "PRCXI_BioER_96_wellplate_well_D7", + "E7": "PRCXI_BioER_96_wellplate_well_E7", + "F7": "PRCXI_BioER_96_wellplate_well_F7", + "G7": "PRCXI_BioER_96_wellplate_well_G7", + "H7": "PRCXI_BioER_96_wellplate_well_H7", + "A8": "PRCXI_BioER_96_wellplate_well_A8", + "B8": "PRCXI_BioER_96_wellplate_well_B8", + "C8": "PRCXI_BioER_96_wellplate_well_C8", + "D8": "PRCXI_BioER_96_wellplate_well_D8", + "E8": "PRCXI_BioER_96_wellplate_well_E8", + "F8": "PRCXI_BioER_96_wellplate_well_F8", + "G8": "PRCXI_BioER_96_wellplate_well_G8", + "H8": "PRCXI_BioER_96_wellplate_well_H8", + "A9": "PRCXI_BioER_96_wellplate_well_A9", + "B9": "PRCXI_BioER_96_wellplate_well_B9", + "C9": "PRCXI_BioER_96_wellplate_well_C9", + "D9": "PRCXI_BioER_96_wellplate_well_D9", + "E9": "PRCXI_BioER_96_wellplate_well_E9", + "F9": "PRCXI_BioER_96_wellplate_well_F9", + "G9": "PRCXI_BioER_96_wellplate_well_G9", + "H9": "PRCXI_BioER_96_wellplate_well_H9", + "A10": "PRCXI_BioER_96_wellplate_well_A10", + "B10": "PRCXI_BioER_96_wellplate_well_B10", + "C10": "PRCXI_BioER_96_wellplate_well_C10", + "D10": "PRCXI_BioER_96_wellplate_well_D10", + "E10": "PRCXI_BioER_96_wellplate_well_E10", + "F10": "PRCXI_BioER_96_wellplate_well_F10", + "G10": "PRCXI_BioER_96_wellplate_well_G10", + "H10": "PRCXI_BioER_96_wellplate_well_H10", + "A11": "PRCXI_BioER_96_wellplate_well_A11", + "B11": "PRCXI_BioER_96_wellplate_well_B11", + "C11": "PRCXI_BioER_96_wellplate_well_C11", + "D11": "PRCXI_BioER_96_wellplate_well_D11", + "E11": "PRCXI_BioER_96_wellplate_well_E11", + "F11": "PRCXI_BioER_96_wellplate_well_F11", + "G11": "PRCXI_BioER_96_wellplate_well_G11", + "H11": "PRCXI_BioER_96_wellplate_well_H11", + "A12": "PRCXI_BioER_96_wellplate_well_A12", + "B12": "PRCXI_BioER_96_wellplate_well_B12", + "C12": "PRCXI_BioER_96_wellplate_well_C12", + "D12": "PRCXI_BioER_96_wellplate_well_D12", + "E12": "PRCXI_BioER_96_wellplate_well_E12", + "F12": "PRCXI_BioER_96_wellplate_well_F12", + "G12": "PRCXI_BioER_96_wellplate_well_G12", + "H12": "PRCXI_BioER_96_wellplate_well_H12" + } + }, + "data": { + "Material": { + "uuid": "ca877b8b114a4310b429d1de4aae96ee", + "Code": "ZX-019-2.2", + "Name": "2.2ml 深孔板", + "materialEnum": 0, + "SupplyType": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_A1", + "uuid": "acc63ccf-3564-4cd9-a606-6d4909faddf7", + "name": "PRCXI_BioER_96_wellplate_well_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 9.5, + "y": 70.5, + "z": 6.0 + }, + "position3d": { + "x": 9.5, + "y": 70.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_0_0_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 9.5, + "y": 70.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_B1", + "uuid": "aeed28cb-c6ac-4e19-8bea-810f1aed6f41", + "name": "PRCXI_BioER_96_wellplate_well_B1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 9.5, + "y": 61.5, + "z": 6.0 + }, + "position3d": { + "x": 9.5, + "y": 61.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_0_1_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 9.5, + "y": 61.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_C1", + "uuid": "06ea6769-1d72-42fa-ad65-a90eedcb51ba", + "name": "PRCXI_BioER_96_wellplate_well_C1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 9.5, + "y": 52.5, + "z": 6.0 + }, + "position3d": { + "x": 9.5, + "y": 52.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_0_2_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 9.5, + "y": 52.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_D1", + "uuid": "bebe51db-3d99-410b-8f35-5b9194db0cda", + "name": "PRCXI_BioER_96_wellplate_well_D1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 9.5, + "y": 43.5, + "z": 6.0 + }, + "position3d": { + "x": 9.5, + "y": 43.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_0_3_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 9.5, + "y": 43.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_E1", + "uuid": "9745d6ff-d142-49b6-a6b1-7c4e18068243", + "name": "PRCXI_BioER_96_wellplate_well_E1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 9.5, + "y": 34.5, + "z": 6.0 + }, + "position3d": { + "x": 9.5, + "y": 34.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_0_4_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 9.5, + "y": 34.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_F1", + "uuid": "ffd8b13e-ce8e-4ffb-8ccb-f1c03a6def00", + "name": "PRCXI_BioER_96_wellplate_well_F1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 9.5, + "y": 25.5, + "z": 6.0 + }, + "position3d": { + "x": 9.5, + "y": 25.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_0_5_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 9.5, + "y": 25.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_G1", + "uuid": "8b141b48-fede-431a-8d03-5e7826206301", + "name": "PRCXI_BioER_96_wellplate_well_G1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 9.5, + "y": 16.5, + "z": 6.0 + }, + "position3d": { + "x": 9.5, + "y": 16.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_0_6_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 9.5, + "y": 16.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_H1", + "uuid": "fc0cb6cd-235f-41a1-a15c-ad72b05647b1", + "name": "PRCXI_BioER_96_wellplate_well_H1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 9.5, + "y": 7.5, + "z": 6.0 + }, + "position3d": { + "x": 9.5, + "y": 7.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_0_7_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 9.5, + "y": 7.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_A2", + "uuid": "ef75b9d7-6a09-416d-b83e-5435ee373e37", + "name": "PRCXI_BioER_96_wellplate_well_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 18.5, + "y": 70.5, + "z": 6.0 + }, + "position3d": { + "x": 18.5, + "y": 70.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_1_0_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 18.5, + "y": 70.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_B2", + "uuid": "9930465e-093e-46c6-8bb2-d2a1dd652284", + "name": "PRCXI_BioER_96_wellplate_well_B2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 18.5, + "y": 61.5, + "z": 6.0 + }, + "position3d": { + "x": 18.5, + "y": 61.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_1_1_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 18.5, + "y": 61.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_C2", + "uuid": "c538b14c-9267-4222-9056-49e9af405fb2", + "name": "PRCXI_BioER_96_wellplate_well_C2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 18.5, + "y": 52.5, + "z": 6.0 + }, + "position3d": { + "x": 18.5, + "y": 52.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_1_2_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 18.5, + "y": 52.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_D2", + "uuid": "f8f61629-5c60-41f1-86e0-0b174815b830", + "name": "PRCXI_BioER_96_wellplate_well_D2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 18.5, + "y": 43.5, + "z": 6.0 + }, + "position3d": { + "x": 18.5, + "y": 43.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_1_3_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 18.5, + "y": 43.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_E2", + "uuid": "38720c48-e261-4bd7-b72f-005fa1e76fa8", + "name": "PRCXI_BioER_96_wellplate_well_E2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 18.5, + "y": 34.5, + "z": 6.0 + }, + "position3d": { + "x": 18.5, + "y": 34.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_1_4_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 18.5, + "y": 34.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_F2", + "uuid": "d085b7b2-d6fd-4dcb-9c31-1d9ffbfbc1ad", + "name": "PRCXI_BioER_96_wellplate_well_F2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 18.5, + "y": 25.5, + "z": 6.0 + }, + "position3d": { + "x": 18.5, + "y": 25.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_1_5_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 18.5, + "y": 25.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_G2", + "uuid": "b1b8aca7-b5ef-4040-ae08-7fe964f23d43", + "name": "PRCXI_BioER_96_wellplate_well_G2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 18.5, + "y": 16.5, + "z": 6.0 + }, + "position3d": { + "x": 18.5, + "y": 16.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_1_6_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 18.5, + "y": 16.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_H2", + "uuid": "d6705803-463f-4571-a953-bb3c55ef2fa7", + "name": "PRCXI_BioER_96_wellplate_well_H2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 18.5, + "y": 7.5, + "z": 6.0 + }, + "position3d": { + "x": 18.5, + "y": 7.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_1_7_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 18.5, + "y": 7.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_A3", + "uuid": "9515f5dc-f97f-4186-94b1-3eaee82f553b", + "name": "PRCXI_BioER_96_wellplate_well_A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 27.5, + "y": 70.5, + "z": 6.0 + }, + "position3d": { + "x": 27.5, + "y": 70.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_2_0_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 27.5, + "y": 70.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_B3", + "uuid": "e8d00086-25d2-4d6c-a392-af9db04d8132", + "name": "PRCXI_BioER_96_wellplate_well_B3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 27.5, + "y": 61.5, + "z": 6.0 + }, + "position3d": { + "x": 27.5, + "y": 61.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_2_1_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 27.5, + "y": 61.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_C3", + "uuid": "1d7e23b4-6207-4784-b582-97e7cbaf6116", + "name": "PRCXI_BioER_96_wellplate_well_C3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 27.5, + "y": 52.5, + "z": 6.0 + }, + "position3d": { + "x": 27.5, + "y": 52.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_2_2_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 27.5, + "y": 52.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_D3", + "uuid": "5532cb4f-52ef-4f4a-943b-f11c9e2d15c9", + "name": "PRCXI_BioER_96_wellplate_well_D3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 27.5, + "y": 43.5, + "z": 6.0 + }, + "position3d": { + "x": 27.5, + "y": 43.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_2_3_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 27.5, + "y": 43.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_E3", + "uuid": "580606fb-8a8b-484f-aa22-ed1e42f8b10c", + "name": "PRCXI_BioER_96_wellplate_well_E3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 27.5, + "y": 34.5, + "z": 6.0 + }, + "position3d": { + "x": 27.5, + "y": 34.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_2_4_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 27.5, + "y": 34.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_F3", + "uuid": "0a27f8ca-1d8d-466a-a0cc-1f9e9a37c827", + "name": "PRCXI_BioER_96_wellplate_well_F3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 27.5, + "y": 25.5, + "z": 6.0 + }, + "position3d": { + "x": 27.5, + "y": 25.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_2_5_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 27.5, + "y": 25.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_G3", + "uuid": "de2eaafb-8b33-4c3b-afd4-adcd669de89f", + "name": "PRCXI_BioER_96_wellplate_well_G3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 27.5, + "y": 16.5, + "z": 6.0 + }, + "position3d": { + "x": 27.5, + "y": 16.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_2_6_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 27.5, + "y": 16.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_H3", + "uuid": "2f298e1d-93a9-4987-9934-b055f01a411c", + "name": "PRCXI_BioER_96_wellplate_well_H3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 27.5, + "y": 7.5, + "z": 6.0 + }, + "position3d": { + "x": 27.5, + "y": 7.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_2_7_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 27.5, + "y": 7.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_A4", + "uuid": "88a25de0-e424-40df-9a4b-9e1c2f79ae1c", + "name": "PRCXI_BioER_96_wellplate_well_A4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 36.5, + "y": 70.5, + "z": 6.0 + }, + "position3d": { + "x": 36.5, + "y": 70.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_3_0_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 36.5, + "y": 70.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_B4", + "uuid": "c9f83266-f178-4581-b492-a8a5b122f7ac", + "name": "PRCXI_BioER_96_wellplate_well_B4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 36.5, + "y": 61.5, + "z": 6.0 + }, + "position3d": { + "x": 36.5, + "y": 61.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_3_1_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 36.5, + "y": 61.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_C4", + "uuid": "80ccb3d8-c730-4ce9-a8ef-4644e7b048f5", + "name": "PRCXI_BioER_96_wellplate_well_C4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 36.5, + "y": 52.5, + "z": 6.0 + }, + "position3d": { + "x": 36.5, + "y": 52.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_3_2_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 36.5, + "y": 52.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_D4", + "uuid": "7ae7a27b-6edc-43ec-bd02-1ad02874b85d", + "name": "PRCXI_BioER_96_wellplate_well_D4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 36.5, + "y": 43.5, + "z": 6.0 + }, + "position3d": { + "x": 36.5, + "y": 43.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_3_3_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 36.5, + "y": 43.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_E4", + "uuid": "239856fd-4a2c-4384-936e-aa1d9338cb0c", + "name": "PRCXI_BioER_96_wellplate_well_E4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 36.5, + "y": 34.5, + "z": 6.0 + }, + "position3d": { + "x": 36.5, + "y": 34.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_3_4_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 36.5, + "y": 34.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_F4", + "uuid": "4360ee24-673c-4736-a3ba-e6eda3e39cdb", + "name": "PRCXI_BioER_96_wellplate_well_F4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 36.5, + "y": 25.5, + "z": 6.0 + }, + "position3d": { + "x": 36.5, + "y": 25.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_3_5_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 36.5, + "y": 25.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_G4", + "uuid": "4ca5e727-0915-4a22-a610-bbbcd50e6501", + "name": "PRCXI_BioER_96_wellplate_well_G4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 36.5, + "y": 16.5, + "z": 6.0 + }, + "position3d": { + "x": 36.5, + "y": 16.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_3_6_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 36.5, + "y": 16.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_H4", + "uuid": "94eef20a-2ca3-46a8-a957-823e5f8b86dc", + "name": "PRCXI_BioER_96_wellplate_well_H4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 36.5, + "y": 7.5, + "z": 6.0 + }, + "position3d": { + "x": 36.5, + "y": 7.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_3_7_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 36.5, + "y": 7.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_A5", + "uuid": "c95e7f8a-7395-493a-b62f-88fd10645ea4", + "name": "PRCXI_BioER_96_wellplate_well_A5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 45.5, + "y": 70.5, + "z": 6.0 + }, + "position3d": { + "x": 45.5, + "y": 70.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_4_0_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 45.5, + "y": 70.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_B5", + "uuid": "523f2aad-ae50-49a4-8d64-910afc321688", + "name": "PRCXI_BioER_96_wellplate_well_B5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 45.5, + "y": 61.5, + "z": 6.0 + }, + "position3d": { + "x": 45.5, + "y": 61.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_4_1_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 45.5, + "y": 61.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_C5", + "uuid": "49cc0c24-8d73-4669-897d-bc09b3ab73b3", + "name": "PRCXI_BioER_96_wellplate_well_C5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 45.5, + "y": 52.5, + "z": 6.0 + }, + "position3d": { + "x": 45.5, + "y": 52.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_4_2_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 45.5, + "y": 52.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_D5", + "uuid": "cc63e928-3da1-4c4e-95b9-3d4ac2607e3f", + "name": "PRCXI_BioER_96_wellplate_well_D5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 45.5, + "y": 43.5, + "z": 6.0 + }, + "position3d": { + "x": 45.5, + "y": 43.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_4_3_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 45.5, + "y": 43.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_E5", + "uuid": "0de11b5f-a4a9-4c79-bdc7-56ac75bc8a71", + "name": "PRCXI_BioER_96_wellplate_well_E5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 45.5, + "y": 34.5, + "z": 6.0 + }, + "position3d": { + "x": 45.5, + "y": 34.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_4_4_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 45.5, + "y": 34.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_F5", + "uuid": "e58d63e2-7eee-4b66-a40f-063b4d36c5e9", + "name": "PRCXI_BioER_96_wellplate_well_F5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 45.5, + "y": 25.5, + "z": 6.0 + }, + "position3d": { + "x": 45.5, + "y": 25.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_4_5_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 45.5, + "y": 25.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_G5", + "uuid": "9f1e4283-f3a5-455c-85f2-978eec9751a5", + "name": "PRCXI_BioER_96_wellplate_well_G5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 45.5, + "y": 16.5, + "z": 6.0 + }, + "position3d": { + "x": 45.5, + "y": 16.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_4_6_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 45.5, + "y": 16.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_H5", + "uuid": "871c9420-e9eb-486b-ab17-b6daba0733cf", + "name": "PRCXI_BioER_96_wellplate_well_H5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 45.5, + "y": 7.5, + "z": 6.0 + }, + "position3d": { + "x": 45.5, + "y": 7.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_4_7_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 45.5, + "y": 7.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_A6", + "uuid": "5183a55e-0053-49d8-a44d-404f538a1693", + "name": "PRCXI_BioER_96_wellplate_well_A6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 54.5, + "y": 70.5, + "z": 6.0 + }, + "position3d": { + "x": 54.5, + "y": 70.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_5_0_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 54.5, + "y": 70.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_B6", + "uuid": "374d0da5-574b-4c02-91c0-03ad4a797dea", + "name": "PRCXI_BioER_96_wellplate_well_B6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 54.5, + "y": 61.5, + "z": 6.0 + }, + "position3d": { + "x": 54.5, + "y": 61.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_5_1_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 54.5, + "y": 61.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_C6", + "uuid": "58059688-984d-4ada-a56c-1ae713cee925", + "name": "PRCXI_BioER_96_wellplate_well_C6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 54.5, + "y": 52.5, + "z": 6.0 + }, + "position3d": { + "x": 54.5, + "y": 52.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_5_2_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 54.5, + "y": 52.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_D6", + "uuid": "b2d76a83-0dbf-441b-a442-0aed8dca6a61", + "name": "PRCXI_BioER_96_wellplate_well_D6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 54.5, + "y": 43.5, + "z": 6.0 + }, + "position3d": { + "x": 54.5, + "y": 43.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_5_3_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 54.5, + "y": 43.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_E6", + "uuid": "0341c296-2ef1-4a5e-81af-f049a8ff2a01", + "name": "PRCXI_BioER_96_wellplate_well_E6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 54.5, + "y": 34.5, + "z": 6.0 + }, + "position3d": { + "x": 54.5, + "y": 34.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_5_4_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 54.5, + "y": 34.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_F6", + "uuid": "c711215b-a5d9-4daa-9477-e58e3ed6b3eb", + "name": "PRCXI_BioER_96_wellplate_well_F6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 54.5, + "y": 25.5, + "z": 6.0 + }, + "position3d": { + "x": 54.5, + "y": 25.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_5_5_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 54.5, + "y": 25.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_G6", + "uuid": "d9373590-dbf9-4c73-892d-1a772afbd62b", + "name": "PRCXI_BioER_96_wellplate_well_G6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 54.5, + "y": 16.5, + "z": 6.0 + }, + "position3d": { + "x": 54.5, + "y": 16.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_5_6_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 54.5, + "y": 16.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_H6", + "uuid": "e300ab3f-8e67-48c5-853a-84d3308612c1", + "name": "PRCXI_BioER_96_wellplate_well_H6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 54.5, + "y": 7.5, + "z": 6.0 + }, + "position3d": { + "x": 54.5, + "y": 7.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_5_7_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 54.5, + "y": 7.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_A7", + "uuid": "2d267437-4142-4d02-83fd-d21a3d47f83b", + "name": "PRCXI_BioER_96_wellplate_well_A7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 63.5, + "y": 70.5, + "z": 6.0 + }, + "position3d": { + "x": 63.5, + "y": 70.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_6_0_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 63.5, + "y": 70.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_B7", + "uuid": "67a6f67b-8992-4a48-965e-b0d330592ba6", + "name": "PRCXI_BioER_96_wellplate_well_B7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 63.5, + "y": 61.5, + "z": 6.0 + }, + "position3d": { + "x": 63.5, + "y": 61.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_6_1_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 63.5, + "y": 61.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_C7", + "uuid": "daa72d36-77c0-4550-9fbd-b5242e397bf8", + "name": "PRCXI_BioER_96_wellplate_well_C7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 63.5, + "y": 52.5, + "z": 6.0 + }, + "position3d": { + "x": 63.5, + "y": 52.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_6_2_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 63.5, + "y": 52.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_D7", + "uuid": "dae6bd7f-e7ea-418d-bc14-42e9f6a8a9b7", + "name": "PRCXI_BioER_96_wellplate_well_D7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 63.5, + "y": 43.5, + "z": 6.0 + }, + "position3d": { + "x": 63.5, + "y": 43.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_6_3_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 63.5, + "y": 43.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_E7", + "uuid": "e69c7612-eef7-429c-b828-1fa16ecc041e", + "name": "PRCXI_BioER_96_wellplate_well_E7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 63.5, + "y": 34.5, + "z": 6.0 + }, + "position3d": { + "x": 63.5, + "y": 34.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_6_4_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 63.5, + "y": 34.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_F7", + "uuid": "228200e6-2b32-4e8b-bbda-0252da1990d6", + "name": "PRCXI_BioER_96_wellplate_well_F7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 63.5, + "y": 25.5, + "z": 6.0 + }, + "position3d": { + "x": 63.5, + "y": 25.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_6_5_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 63.5, + "y": 25.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_G7", + "uuid": "5d52a605-8599-40fd-950a-c200cf7bcd40", + "name": "PRCXI_BioER_96_wellplate_well_G7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 63.5, + "y": 16.5, + "z": 6.0 + }, + "position3d": { + "x": 63.5, + "y": 16.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_6_6_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 63.5, + "y": 16.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_H7", + "uuid": "42444c52-2aff-458a-9b8f-fab56879d735", + "name": "PRCXI_BioER_96_wellplate_well_H7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 63.5, + "y": 7.5, + "z": 6.0 + }, + "position3d": { + "x": 63.5, + "y": 7.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_6_7_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 63.5, + "y": 7.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_A8", + "uuid": "31770fc9-be16-4cc0-9154-b9ba068ad4ca", + "name": "PRCXI_BioER_96_wellplate_well_A8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 72.5, + "y": 70.5, + "z": 6.0 + }, + "position3d": { + "x": 72.5, + "y": 70.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_7_0_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 72.5, + "y": 70.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_B8", + "uuid": "e5be642b-4816-4490-b94c-9ccaad839ded", + "name": "PRCXI_BioER_96_wellplate_well_B8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 72.5, + "y": 61.5, + "z": 6.0 + }, + "position3d": { + "x": 72.5, + "y": 61.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_7_1_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 72.5, + "y": 61.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_C8", + "uuid": "6f224216-cbfb-49ee-aab2-dffcbc8a9241", + "name": "PRCXI_BioER_96_wellplate_well_C8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 72.5, + "y": 52.5, + "z": 6.0 + }, + "position3d": { + "x": 72.5, + "y": 52.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_7_2_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 72.5, + "y": 52.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_D8", + "uuid": "51057e49-15ca-445f-a91d-0c0684b9a7ef", + "name": "PRCXI_BioER_96_wellplate_well_D8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 72.5, + "y": 43.5, + "z": 6.0 + }, + "position3d": { + "x": 72.5, + "y": 43.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_7_3_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 72.5, + "y": 43.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_E8", + "uuid": "64ba3425-f016-48df-8cdc-6bac9a942fd8", + "name": "PRCXI_BioER_96_wellplate_well_E8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 72.5, + "y": 34.5, + "z": 6.0 + }, + "position3d": { + "x": 72.5, + "y": 34.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_7_4_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 72.5, + "y": 34.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_F8", + "uuid": "218149c9-c164-4f90-ba3c-7068c542f1b0", + "name": "PRCXI_BioER_96_wellplate_well_F8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 72.5, + "y": 25.5, + "z": 6.0 + }, + "position3d": { + "x": 72.5, + "y": 25.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_7_5_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 72.5, + "y": 25.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_G8", + "uuid": "99886b78-3cd7-4071-85a4-2c5a92836287", + "name": "PRCXI_BioER_96_wellplate_well_G8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 72.5, + "y": 16.5, + "z": 6.0 + }, + "position3d": { + "x": 72.5, + "y": 16.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_7_6_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 72.5, + "y": 16.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_H8", + "uuid": "99f656e1-206f-49ff-ba19-6d2c7436b2a5", + "name": "PRCXI_BioER_96_wellplate_well_H8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 72.5, + "y": 7.5, + "z": 6.0 + }, + "position3d": { + "x": 72.5, + "y": 7.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_7_7_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 72.5, + "y": 7.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_A9", + "uuid": "dcbfa680-7eaf-4834-b100-65c46b4894d7", + "name": "PRCXI_BioER_96_wellplate_well_A9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 81.5, + "y": 70.5, + "z": 6.0 + }, + "position3d": { + "x": 81.5, + "y": 70.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_8_0_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 81.5, + "y": 70.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_B9", + "uuid": "f819f368-d89e-46d5-b436-4bd1344f5742", + "name": "PRCXI_BioER_96_wellplate_well_B9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 81.5, + "y": 61.5, + "z": 6.0 + }, + "position3d": { + "x": 81.5, + "y": 61.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_8_1_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 81.5, + "y": 61.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_C9", + "uuid": "a955e417-527f-42e0-bedc-6d02e1153612", + "name": "PRCXI_BioER_96_wellplate_well_C9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 81.5, + "y": 52.5, + "z": 6.0 + }, + "position3d": { + "x": 81.5, + "y": 52.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_8_2_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 81.5, + "y": 52.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_D9", + "uuid": "ac02c052-d51d-49ba-a42e-91c854cb03e2", + "name": "PRCXI_BioER_96_wellplate_well_D9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 81.5, + "y": 43.5, + "z": 6.0 + }, + "position3d": { + "x": 81.5, + "y": 43.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_8_3_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 81.5, + "y": 43.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_E9", + "uuid": "82996f03-1d8d-46be-b4a9-02f4273709dd", + "name": "PRCXI_BioER_96_wellplate_well_E9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 81.5, + "y": 34.5, + "z": 6.0 + }, + "position3d": { + "x": 81.5, + "y": 34.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_8_4_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 81.5, + "y": 34.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_F9", + "uuid": "40647fba-600c-4407-8572-b3fd061e7497", + "name": "PRCXI_BioER_96_wellplate_well_F9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 81.5, + "y": 25.5, + "z": 6.0 + }, + "position3d": { + "x": 81.5, + "y": 25.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_8_5_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 81.5, + "y": 25.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_G9", + "uuid": "eba3566d-8896-43ab-bc6d-5d66e71dc0a3", + "name": "PRCXI_BioER_96_wellplate_well_G9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 81.5, + "y": 16.5, + "z": 6.0 + }, + "position3d": { + "x": 81.5, + "y": 16.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_8_6_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 81.5, + "y": 16.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_H9", + "uuid": "8f2674b2-a39f-4996-a872-77bca18bab42", + "name": "PRCXI_BioER_96_wellplate_well_H9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 81.5, + "y": 7.5, + "z": 6.0 + }, + "position3d": { + "x": 81.5, + "y": 7.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_8_7_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 81.5, + "y": 7.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_A10", + "uuid": "e204f5eb-eccf-478c-a0b1-7412f07fc3a5", + "name": "PRCXI_BioER_96_wellplate_well_A10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 90.5, + "y": 70.5, + "z": 6.0 + }, + "position3d": { + "x": 90.5, + "y": 70.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_9_0_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 90.5, + "y": 70.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_B10", + "uuid": "8d3086f8-5fb5-4f26-a9e0-e092cff3d02b", + "name": "PRCXI_BioER_96_wellplate_well_B10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 90.5, + "y": 61.5, + "z": 6.0 + }, + "position3d": { + "x": 90.5, + "y": 61.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_9_1_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 90.5, + "y": 61.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_C10", + "uuid": "8fd5ee82-74f6-4704-82c1-54e0410da589", + "name": "PRCXI_BioER_96_wellplate_well_C10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 90.5, + "y": 52.5, + "z": 6.0 + }, + "position3d": { + "x": 90.5, + "y": 52.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_9_2_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 90.5, + "y": 52.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_D10", + "uuid": "5f6184c0-eabc-4c4d-94b0-8d870298f54c", + "name": "PRCXI_BioER_96_wellplate_well_D10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 90.5, + "y": 43.5, + "z": 6.0 + }, + "position3d": { + "x": 90.5, + "y": 43.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_9_3_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 90.5, + "y": 43.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_E10", + "uuid": "7ba65df8-aa3d-40e9-948e-065eb4d678ef", + "name": "PRCXI_BioER_96_wellplate_well_E10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 90.5, + "y": 34.5, + "z": 6.0 + }, + "position3d": { + "x": 90.5, + "y": 34.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_9_4_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 90.5, + "y": 34.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_F10", + "uuid": "da0a1c52-33ef-4117-b3c8-8acc034888ce", + "name": "PRCXI_BioER_96_wellplate_well_F10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 90.5, + "y": 25.5, + "z": 6.0 + }, + "position3d": { + "x": 90.5, + "y": 25.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_9_5_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 90.5, + "y": 25.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_G10", + "uuid": "50879703-3423-4f9e-bc3a-1a6a8fdf2497", + "name": "PRCXI_BioER_96_wellplate_well_G10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 90.5, + "y": 16.5, + "z": 6.0 + }, + "position3d": { + "x": 90.5, + "y": 16.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_9_6_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 90.5, + "y": 16.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_H10", + "uuid": "fafd0dc5-6e3a-45ed-b58b-d895b3327f26", + "name": "PRCXI_BioER_96_wellplate_well_H10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 90.5, + "y": 7.5, + "z": 6.0 + }, + "position3d": { + "x": 90.5, + "y": 7.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_9_7_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 90.5, + "y": 7.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_A11", + "uuid": "3530ae88-bd3d-4e70-88f5-3b8bb11bead4", + "name": "PRCXI_BioER_96_wellplate_well_A11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 99.5, + "y": 70.5, + "z": 6.0 + }, + "position3d": { + "x": 99.5, + "y": 70.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_10_0_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 99.5, + "y": 70.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_B11", + "uuid": "21b107c6-d13a-4703-b580-010db7dd25c2", + "name": "PRCXI_BioER_96_wellplate_well_B11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 99.5, + "y": 61.5, + "z": 6.0 + }, + "position3d": { + "x": 99.5, + "y": 61.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_10_1_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 99.5, + "y": 61.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_C11", + "uuid": "fcae88e0-264d-4eef-b9f7-64aeeaa54c11", + "name": "PRCXI_BioER_96_wellplate_well_C11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 99.5, + "y": 52.5, + "z": 6.0 + }, + "position3d": { + "x": 99.5, + "y": 52.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_10_2_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 99.5, + "y": 52.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_D11", + "uuid": "4ae69685-e093-4f1f-ba71-d993d532b3b7", + "name": "PRCXI_BioER_96_wellplate_well_D11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 99.5, + "y": 43.5, + "z": 6.0 + }, + "position3d": { + "x": 99.5, + "y": 43.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_10_3_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 99.5, + "y": 43.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_E11", + "uuid": "cbc0ad76-a419-4fe3-aae1-6342151581d8", + "name": "PRCXI_BioER_96_wellplate_well_E11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 99.5, + "y": 34.5, + "z": 6.0 + }, + "position3d": { + "x": 99.5, + "y": 34.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_10_4_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 99.5, + "y": 34.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_F11", + "uuid": "2ac77c59-7e67-4596-9ec2-6965ff3e7e17", + "name": "PRCXI_BioER_96_wellplate_well_F11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 99.5, + "y": 25.5, + "z": 6.0 + }, + "position3d": { + "x": 99.5, + "y": 25.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_10_5_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 99.5, + "y": 25.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_G11", + "uuid": "e7691bce-9d15-4c3d-8031-b9183fad9fda", + "name": "PRCXI_BioER_96_wellplate_well_G11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 99.5, + "y": 16.5, + "z": 6.0 + }, + "position3d": { + "x": 99.5, + "y": 16.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_10_6_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 99.5, + "y": 16.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_H11", + "uuid": "ec3b791e-8873-42b7-8489-68093492a6ad", + "name": "PRCXI_BioER_96_wellplate_well_H11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 99.5, + "y": 7.5, + "z": 6.0 + }, + "position3d": { + "x": 99.5, + "y": 7.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_10_7_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 99.5, + "y": 7.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_A12", + "uuid": "49091487-0197-493e-b5ea-9e2c0f9f7a74", + "name": "PRCXI_BioER_96_wellplate_well_A12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 108.5, + "y": 70.5, + "z": 6.0 + }, + "position3d": { + "x": 108.5, + "y": 70.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_11_0_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 108.5, + "y": 70.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_B12", + "uuid": "ef63fc37-ad81-4b03-b416-4f6aaa3d7670", + "name": "PRCXI_BioER_96_wellplate_well_B12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 108.5, + "y": 61.5, + "z": 6.0 + }, + "position3d": { + "x": 108.5, + "y": 61.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_11_1_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 108.5, + "y": 61.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_C12", + "uuid": "6545d317-0fc3-4b37-a7ee-66a18eccf3d6", + "name": "PRCXI_BioER_96_wellplate_well_C12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 108.5, + "y": 52.5, + "z": 6.0 + }, + "position3d": { + "x": 108.5, + "y": 52.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_11_2_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 108.5, + "y": 52.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_D12", + "uuid": "05aae086-6df6-4d2e-a717-efc72adffbfc", + "name": "PRCXI_BioER_96_wellplate_well_D12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 108.5, + "y": 43.5, + "z": 6.0 + }, + "position3d": { + "x": 108.5, + "y": 43.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_11_3_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 108.5, + "y": 43.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_E12", + "uuid": "bf16de89-b596-4200-af14-fbee104d2bdc", + "name": "PRCXI_BioER_96_wellplate_well_E12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 108.5, + "y": 34.5, + "z": 6.0 + }, + "position3d": { + "x": 108.5, + "y": 34.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_11_4_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 108.5, + "y": 34.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_F12", + "uuid": "2287bfd1-6c26-46b4-a925-bfd259e22ab2", + "name": "PRCXI_BioER_96_wellplate_well_F12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 108.5, + "y": 25.5, + "z": 6.0 + }, + "position3d": { + "x": 108.5, + "y": 25.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_11_5_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 108.5, + "y": 25.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_G12", + "uuid": "17356c25-64b6-4342-aeee-cc79e8408afd", + "name": "PRCXI_BioER_96_wellplate_well_G12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 108.5, + "y": 16.5, + "z": 6.0 + }, + "position3d": { + "x": 108.5, + "y": 16.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_11_6_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 108.5, + "y": 16.5, + "z": 6.0 + } + }, + { + "id": "PRCXI_BioER_96_wellplate_well_H12", + "uuid": "a259f271-be64-46df-9a2a-5d1df49ee7af", + "name": "PRCXI_BioER_96_wellplate_well_H12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "3dbd80fe-3683-4f2b-a1de-28389f8e69c7", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 39.3, + "width": 8.25, + "height": 8.25 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 108.5, + "y": 7.5, + "z": 6.0 + }, + "position3d": { + "x": 108.5, + "y": 7.5, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.25, + "size_y": 8.25, + "size_z": 39.3, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 2200, + "material_z_thickness": 0.8, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_11_7_volume_tracker", + "max_volume": 2200, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 108.5, + "y": 7.5, + "z": 6.0 + } + } + ] + }, + { + "id": "PRCXI_BioRad_384_wellplate", + "category": [ + "prcxi", + "plates" + ], + "class": { + "module": "unilabos.devices.liquid_handling.prcxi.prcxi_labware:PRCXI_BioRad_384_wellplate", + "type": "pylabrobot" + }, + "description": "384板 (Code: q3)", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/prcxi/plates.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "PRCXI_BioRad_384_wellplate", + "uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "name": "PRCXI_BioRad_384_wellplate", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "plate", + "class": "", + "pose": { + "size": { + "depth": 10.4, + "width": 127.76, + "height": 85.48 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "PRCXI9300Plate", + "size_x": 127.76, + "size_y": 85.48, + "size_z": 10.4, + "category": "plate", + "model": "BioRad_384_wellplate_50uL_Vb", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "PRCXI_BioRad_384_wellplate_well_A1", + "B1": "PRCXI_BioRad_384_wellplate_well_B1", + "C1": "PRCXI_BioRad_384_wellplate_well_C1", + "D1": "PRCXI_BioRad_384_wellplate_well_D1", + "E1": "PRCXI_BioRad_384_wellplate_well_E1", + "F1": "PRCXI_BioRad_384_wellplate_well_F1", + "G1": "PRCXI_BioRad_384_wellplate_well_G1", + "H1": "PRCXI_BioRad_384_wellplate_well_H1", + "I1": "PRCXI_BioRad_384_wellplate_well_I1", + "J1": "PRCXI_BioRad_384_wellplate_well_J1", + "K1": "PRCXI_BioRad_384_wellplate_well_K1", + "L1": "PRCXI_BioRad_384_wellplate_well_L1", + "M1": "PRCXI_BioRad_384_wellplate_well_M1", + "N1": "PRCXI_BioRad_384_wellplate_well_N1", + "O1": "PRCXI_BioRad_384_wellplate_well_O1", + "P1": "PRCXI_BioRad_384_wellplate_well_P1", + "A2": "PRCXI_BioRad_384_wellplate_well_A2", + "B2": "PRCXI_BioRad_384_wellplate_well_B2", + "C2": "PRCXI_BioRad_384_wellplate_well_C2", + "D2": "PRCXI_BioRad_384_wellplate_well_D2", + "E2": "PRCXI_BioRad_384_wellplate_well_E2", + "F2": "PRCXI_BioRad_384_wellplate_well_F2", + "G2": "PRCXI_BioRad_384_wellplate_well_G2", + "H2": "PRCXI_BioRad_384_wellplate_well_H2", + "I2": "PRCXI_BioRad_384_wellplate_well_I2", + "J2": "PRCXI_BioRad_384_wellplate_well_J2", + "K2": "PRCXI_BioRad_384_wellplate_well_K2", + "L2": "PRCXI_BioRad_384_wellplate_well_L2", + "M2": "PRCXI_BioRad_384_wellplate_well_M2", + "N2": "PRCXI_BioRad_384_wellplate_well_N2", + "O2": "PRCXI_BioRad_384_wellplate_well_O2", + "P2": "PRCXI_BioRad_384_wellplate_well_P2", + "A3": "PRCXI_BioRad_384_wellplate_well_A3", + "B3": "PRCXI_BioRad_384_wellplate_well_B3", + "C3": "PRCXI_BioRad_384_wellplate_well_C3", + "D3": "PRCXI_BioRad_384_wellplate_well_D3", + "E3": "PRCXI_BioRad_384_wellplate_well_E3", + "F3": "PRCXI_BioRad_384_wellplate_well_F3", + "G3": "PRCXI_BioRad_384_wellplate_well_G3", + "H3": "PRCXI_BioRad_384_wellplate_well_H3", + "I3": "PRCXI_BioRad_384_wellplate_well_I3", + "J3": "PRCXI_BioRad_384_wellplate_well_J3", + "K3": "PRCXI_BioRad_384_wellplate_well_K3", + "L3": "PRCXI_BioRad_384_wellplate_well_L3", + "M3": "PRCXI_BioRad_384_wellplate_well_M3", + "N3": "PRCXI_BioRad_384_wellplate_well_N3", + "O3": "PRCXI_BioRad_384_wellplate_well_O3", + "P3": "PRCXI_BioRad_384_wellplate_well_P3", + "A4": "PRCXI_BioRad_384_wellplate_well_A4", + "B4": "PRCXI_BioRad_384_wellplate_well_B4", + "C4": "PRCXI_BioRad_384_wellplate_well_C4", + "D4": "PRCXI_BioRad_384_wellplate_well_D4", + "E4": "PRCXI_BioRad_384_wellplate_well_E4", + "F4": "PRCXI_BioRad_384_wellplate_well_F4", + "G4": "PRCXI_BioRad_384_wellplate_well_G4", + "H4": "PRCXI_BioRad_384_wellplate_well_H4", + "I4": "PRCXI_BioRad_384_wellplate_well_I4", + "J4": "PRCXI_BioRad_384_wellplate_well_J4", + "K4": "PRCXI_BioRad_384_wellplate_well_K4", + "L4": "PRCXI_BioRad_384_wellplate_well_L4", + "M4": "PRCXI_BioRad_384_wellplate_well_M4", + "N4": "PRCXI_BioRad_384_wellplate_well_N4", + "O4": "PRCXI_BioRad_384_wellplate_well_O4", + "P4": "PRCXI_BioRad_384_wellplate_well_P4", + "A5": "PRCXI_BioRad_384_wellplate_well_A5", + "B5": "PRCXI_BioRad_384_wellplate_well_B5", + "C5": "PRCXI_BioRad_384_wellplate_well_C5", + "D5": "PRCXI_BioRad_384_wellplate_well_D5", + "E5": "PRCXI_BioRad_384_wellplate_well_E5", + "F5": "PRCXI_BioRad_384_wellplate_well_F5", + "G5": "PRCXI_BioRad_384_wellplate_well_G5", + "H5": "PRCXI_BioRad_384_wellplate_well_H5", + "I5": "PRCXI_BioRad_384_wellplate_well_I5", + "J5": "PRCXI_BioRad_384_wellplate_well_J5", + "K5": "PRCXI_BioRad_384_wellplate_well_K5", + "L5": "PRCXI_BioRad_384_wellplate_well_L5", + "M5": "PRCXI_BioRad_384_wellplate_well_M5", + "N5": "PRCXI_BioRad_384_wellplate_well_N5", + "O5": "PRCXI_BioRad_384_wellplate_well_O5", + "P5": "PRCXI_BioRad_384_wellplate_well_P5", + "A6": "PRCXI_BioRad_384_wellplate_well_A6", + "B6": "PRCXI_BioRad_384_wellplate_well_B6", + "C6": "PRCXI_BioRad_384_wellplate_well_C6", + "D6": "PRCXI_BioRad_384_wellplate_well_D6", + "E6": "PRCXI_BioRad_384_wellplate_well_E6", + "F6": "PRCXI_BioRad_384_wellplate_well_F6", + "G6": "PRCXI_BioRad_384_wellplate_well_G6", + "H6": "PRCXI_BioRad_384_wellplate_well_H6", + "I6": "PRCXI_BioRad_384_wellplate_well_I6", + "J6": "PRCXI_BioRad_384_wellplate_well_J6", + "K6": "PRCXI_BioRad_384_wellplate_well_K6", + "L6": "PRCXI_BioRad_384_wellplate_well_L6", + "M6": "PRCXI_BioRad_384_wellplate_well_M6", + "N6": "PRCXI_BioRad_384_wellplate_well_N6", + "O6": "PRCXI_BioRad_384_wellplate_well_O6", + "P6": "PRCXI_BioRad_384_wellplate_well_P6", + "A7": "PRCXI_BioRad_384_wellplate_well_A7", + "B7": "PRCXI_BioRad_384_wellplate_well_B7", + "C7": "PRCXI_BioRad_384_wellplate_well_C7", + "D7": "PRCXI_BioRad_384_wellplate_well_D7", + "E7": "PRCXI_BioRad_384_wellplate_well_E7", + "F7": "PRCXI_BioRad_384_wellplate_well_F7", + "G7": "PRCXI_BioRad_384_wellplate_well_G7", + "H7": "PRCXI_BioRad_384_wellplate_well_H7", + "I7": "PRCXI_BioRad_384_wellplate_well_I7", + "J7": "PRCXI_BioRad_384_wellplate_well_J7", + "K7": "PRCXI_BioRad_384_wellplate_well_K7", + "L7": "PRCXI_BioRad_384_wellplate_well_L7", + "M7": "PRCXI_BioRad_384_wellplate_well_M7", + "N7": "PRCXI_BioRad_384_wellplate_well_N7", + "O7": "PRCXI_BioRad_384_wellplate_well_O7", + "P7": "PRCXI_BioRad_384_wellplate_well_P7", + "A8": "PRCXI_BioRad_384_wellplate_well_A8", + "B8": "PRCXI_BioRad_384_wellplate_well_B8", + "C8": "PRCXI_BioRad_384_wellplate_well_C8", + "D8": "PRCXI_BioRad_384_wellplate_well_D8", + "E8": "PRCXI_BioRad_384_wellplate_well_E8", + "F8": "PRCXI_BioRad_384_wellplate_well_F8", + "G8": "PRCXI_BioRad_384_wellplate_well_G8", + "H8": "PRCXI_BioRad_384_wellplate_well_H8", + "I8": "PRCXI_BioRad_384_wellplate_well_I8", + "J8": "PRCXI_BioRad_384_wellplate_well_J8", + "K8": "PRCXI_BioRad_384_wellplate_well_K8", + "L8": "PRCXI_BioRad_384_wellplate_well_L8", + "M8": "PRCXI_BioRad_384_wellplate_well_M8", + "N8": "PRCXI_BioRad_384_wellplate_well_N8", + "O8": "PRCXI_BioRad_384_wellplate_well_O8", + "P8": "PRCXI_BioRad_384_wellplate_well_P8", + "A9": "PRCXI_BioRad_384_wellplate_well_A9", + "B9": "PRCXI_BioRad_384_wellplate_well_B9", + "C9": "PRCXI_BioRad_384_wellplate_well_C9", + "D9": "PRCXI_BioRad_384_wellplate_well_D9", + "E9": "PRCXI_BioRad_384_wellplate_well_E9", + "F9": "PRCXI_BioRad_384_wellplate_well_F9", + "G9": "PRCXI_BioRad_384_wellplate_well_G9", + "H9": "PRCXI_BioRad_384_wellplate_well_H9", + "I9": "PRCXI_BioRad_384_wellplate_well_I9", + "J9": "PRCXI_BioRad_384_wellplate_well_J9", + "K9": "PRCXI_BioRad_384_wellplate_well_K9", + "L9": "PRCXI_BioRad_384_wellplate_well_L9", + "M9": "PRCXI_BioRad_384_wellplate_well_M9", + "N9": "PRCXI_BioRad_384_wellplate_well_N9", + "O9": "PRCXI_BioRad_384_wellplate_well_O9", + "P9": "PRCXI_BioRad_384_wellplate_well_P9", + "A10": "PRCXI_BioRad_384_wellplate_well_A10", + "B10": "PRCXI_BioRad_384_wellplate_well_B10", + "C10": "PRCXI_BioRad_384_wellplate_well_C10", + "D10": "PRCXI_BioRad_384_wellplate_well_D10", + "E10": "PRCXI_BioRad_384_wellplate_well_E10", + "F10": "PRCXI_BioRad_384_wellplate_well_F10", + "G10": "PRCXI_BioRad_384_wellplate_well_G10", + "H10": "PRCXI_BioRad_384_wellplate_well_H10", + "I10": "PRCXI_BioRad_384_wellplate_well_I10", + "J10": "PRCXI_BioRad_384_wellplate_well_J10", + "K10": "PRCXI_BioRad_384_wellplate_well_K10", + "L10": "PRCXI_BioRad_384_wellplate_well_L10", + "M10": "PRCXI_BioRad_384_wellplate_well_M10", + "N10": "PRCXI_BioRad_384_wellplate_well_N10", + "O10": "PRCXI_BioRad_384_wellplate_well_O10", + "P10": "PRCXI_BioRad_384_wellplate_well_P10", + "A11": "PRCXI_BioRad_384_wellplate_well_A11", + "B11": "PRCXI_BioRad_384_wellplate_well_B11", + "C11": "PRCXI_BioRad_384_wellplate_well_C11", + "D11": "PRCXI_BioRad_384_wellplate_well_D11", + "E11": "PRCXI_BioRad_384_wellplate_well_E11", + "F11": "PRCXI_BioRad_384_wellplate_well_F11", + "G11": "PRCXI_BioRad_384_wellplate_well_G11", + "H11": "PRCXI_BioRad_384_wellplate_well_H11", + "I11": "PRCXI_BioRad_384_wellplate_well_I11", + "J11": "PRCXI_BioRad_384_wellplate_well_J11", + "K11": "PRCXI_BioRad_384_wellplate_well_K11", + "L11": "PRCXI_BioRad_384_wellplate_well_L11", + "M11": "PRCXI_BioRad_384_wellplate_well_M11", + "N11": "PRCXI_BioRad_384_wellplate_well_N11", + "O11": "PRCXI_BioRad_384_wellplate_well_O11", + "P11": "PRCXI_BioRad_384_wellplate_well_P11", + "A12": "PRCXI_BioRad_384_wellplate_well_A12", + "B12": "PRCXI_BioRad_384_wellplate_well_B12", + "C12": "PRCXI_BioRad_384_wellplate_well_C12", + "D12": "PRCXI_BioRad_384_wellplate_well_D12", + "E12": "PRCXI_BioRad_384_wellplate_well_E12", + "F12": "PRCXI_BioRad_384_wellplate_well_F12", + "G12": "PRCXI_BioRad_384_wellplate_well_G12", + "H12": "PRCXI_BioRad_384_wellplate_well_H12", + "I12": "PRCXI_BioRad_384_wellplate_well_I12", + "J12": "PRCXI_BioRad_384_wellplate_well_J12", + "K12": "PRCXI_BioRad_384_wellplate_well_K12", + "L12": "PRCXI_BioRad_384_wellplate_well_L12", + "M12": "PRCXI_BioRad_384_wellplate_well_M12", + "N12": "PRCXI_BioRad_384_wellplate_well_N12", + "O12": "PRCXI_BioRad_384_wellplate_well_O12", + "P12": "PRCXI_BioRad_384_wellplate_well_P12", + "A13": "PRCXI_BioRad_384_wellplate_well_A13", + "B13": "PRCXI_BioRad_384_wellplate_well_B13", + "C13": "PRCXI_BioRad_384_wellplate_well_C13", + "D13": "PRCXI_BioRad_384_wellplate_well_D13", + "E13": "PRCXI_BioRad_384_wellplate_well_E13", + "F13": "PRCXI_BioRad_384_wellplate_well_F13", + "G13": "PRCXI_BioRad_384_wellplate_well_G13", + "H13": "PRCXI_BioRad_384_wellplate_well_H13", + "I13": "PRCXI_BioRad_384_wellplate_well_I13", + "J13": "PRCXI_BioRad_384_wellplate_well_J13", + "K13": "PRCXI_BioRad_384_wellplate_well_K13", + "L13": "PRCXI_BioRad_384_wellplate_well_L13", + "M13": "PRCXI_BioRad_384_wellplate_well_M13", + "N13": "PRCXI_BioRad_384_wellplate_well_N13", + "O13": "PRCXI_BioRad_384_wellplate_well_O13", + "P13": "PRCXI_BioRad_384_wellplate_well_P13", + "A14": "PRCXI_BioRad_384_wellplate_well_A14", + "B14": "PRCXI_BioRad_384_wellplate_well_B14", + "C14": "PRCXI_BioRad_384_wellplate_well_C14", + "D14": "PRCXI_BioRad_384_wellplate_well_D14", + "E14": "PRCXI_BioRad_384_wellplate_well_E14", + "F14": "PRCXI_BioRad_384_wellplate_well_F14", + "G14": "PRCXI_BioRad_384_wellplate_well_G14", + "H14": "PRCXI_BioRad_384_wellplate_well_H14", + "I14": "PRCXI_BioRad_384_wellplate_well_I14", + "J14": "PRCXI_BioRad_384_wellplate_well_J14", + "K14": "PRCXI_BioRad_384_wellplate_well_K14", + "L14": "PRCXI_BioRad_384_wellplate_well_L14", + "M14": "PRCXI_BioRad_384_wellplate_well_M14", + "N14": "PRCXI_BioRad_384_wellplate_well_N14", + "O14": "PRCXI_BioRad_384_wellplate_well_O14", + "P14": "PRCXI_BioRad_384_wellplate_well_P14", + "A15": "PRCXI_BioRad_384_wellplate_well_A15", + "B15": "PRCXI_BioRad_384_wellplate_well_B15", + "C15": "PRCXI_BioRad_384_wellplate_well_C15", + "D15": "PRCXI_BioRad_384_wellplate_well_D15", + "E15": "PRCXI_BioRad_384_wellplate_well_E15", + "F15": "PRCXI_BioRad_384_wellplate_well_F15", + "G15": "PRCXI_BioRad_384_wellplate_well_G15", + "H15": "PRCXI_BioRad_384_wellplate_well_H15", + "I15": "PRCXI_BioRad_384_wellplate_well_I15", + "J15": "PRCXI_BioRad_384_wellplate_well_J15", + "K15": "PRCXI_BioRad_384_wellplate_well_K15", + "L15": "PRCXI_BioRad_384_wellplate_well_L15", + "M15": "PRCXI_BioRad_384_wellplate_well_M15", + "N15": "PRCXI_BioRad_384_wellplate_well_N15", + "O15": "PRCXI_BioRad_384_wellplate_well_O15", + "P15": "PRCXI_BioRad_384_wellplate_well_P15", + "A16": "PRCXI_BioRad_384_wellplate_well_A16", + "B16": "PRCXI_BioRad_384_wellplate_well_B16", + "C16": "PRCXI_BioRad_384_wellplate_well_C16", + "D16": "PRCXI_BioRad_384_wellplate_well_D16", + "E16": "PRCXI_BioRad_384_wellplate_well_E16", + "F16": "PRCXI_BioRad_384_wellplate_well_F16", + "G16": "PRCXI_BioRad_384_wellplate_well_G16", + "H16": "PRCXI_BioRad_384_wellplate_well_H16", + "I16": "PRCXI_BioRad_384_wellplate_well_I16", + "J16": "PRCXI_BioRad_384_wellplate_well_J16", + "K16": "PRCXI_BioRad_384_wellplate_well_K16", + "L16": "PRCXI_BioRad_384_wellplate_well_L16", + "M16": "PRCXI_BioRad_384_wellplate_well_M16", + "N16": "PRCXI_BioRad_384_wellplate_well_N16", + "O16": "PRCXI_BioRad_384_wellplate_well_O16", + "P16": "PRCXI_BioRad_384_wellplate_well_P16", + "A17": "PRCXI_BioRad_384_wellplate_well_A17", + "B17": "PRCXI_BioRad_384_wellplate_well_B17", + "C17": "PRCXI_BioRad_384_wellplate_well_C17", + "D17": "PRCXI_BioRad_384_wellplate_well_D17", + "E17": "PRCXI_BioRad_384_wellplate_well_E17", + "F17": "PRCXI_BioRad_384_wellplate_well_F17", + "G17": "PRCXI_BioRad_384_wellplate_well_G17", + "H17": "PRCXI_BioRad_384_wellplate_well_H17", + "I17": "PRCXI_BioRad_384_wellplate_well_I17", + "J17": "PRCXI_BioRad_384_wellplate_well_J17", + "K17": "PRCXI_BioRad_384_wellplate_well_K17", + "L17": "PRCXI_BioRad_384_wellplate_well_L17", + "M17": "PRCXI_BioRad_384_wellplate_well_M17", + "N17": "PRCXI_BioRad_384_wellplate_well_N17", + "O17": "PRCXI_BioRad_384_wellplate_well_O17", + "P17": "PRCXI_BioRad_384_wellplate_well_P17", + "A18": "PRCXI_BioRad_384_wellplate_well_A18", + "B18": "PRCXI_BioRad_384_wellplate_well_B18", + "C18": "PRCXI_BioRad_384_wellplate_well_C18", + "D18": "PRCXI_BioRad_384_wellplate_well_D18", + "E18": "PRCXI_BioRad_384_wellplate_well_E18", + "F18": "PRCXI_BioRad_384_wellplate_well_F18", + "G18": "PRCXI_BioRad_384_wellplate_well_G18", + "H18": "PRCXI_BioRad_384_wellplate_well_H18", + "I18": "PRCXI_BioRad_384_wellplate_well_I18", + "J18": "PRCXI_BioRad_384_wellplate_well_J18", + "K18": "PRCXI_BioRad_384_wellplate_well_K18", + "L18": "PRCXI_BioRad_384_wellplate_well_L18", + "M18": "PRCXI_BioRad_384_wellplate_well_M18", + "N18": "PRCXI_BioRad_384_wellplate_well_N18", + "O18": "PRCXI_BioRad_384_wellplate_well_O18", + "P18": "PRCXI_BioRad_384_wellplate_well_P18", + "A19": "PRCXI_BioRad_384_wellplate_well_A19", + "B19": "PRCXI_BioRad_384_wellplate_well_B19", + "C19": "PRCXI_BioRad_384_wellplate_well_C19", + "D19": "PRCXI_BioRad_384_wellplate_well_D19", + "E19": "PRCXI_BioRad_384_wellplate_well_E19", + "F19": "PRCXI_BioRad_384_wellplate_well_F19", + "G19": "PRCXI_BioRad_384_wellplate_well_G19", + "H19": "PRCXI_BioRad_384_wellplate_well_H19", + "I19": "PRCXI_BioRad_384_wellplate_well_I19", + "J19": "PRCXI_BioRad_384_wellplate_well_J19", + "K19": "PRCXI_BioRad_384_wellplate_well_K19", + "L19": "PRCXI_BioRad_384_wellplate_well_L19", + "M19": "PRCXI_BioRad_384_wellplate_well_M19", + "N19": "PRCXI_BioRad_384_wellplate_well_N19", + "O19": "PRCXI_BioRad_384_wellplate_well_O19", + "P19": "PRCXI_BioRad_384_wellplate_well_P19", + "A20": "PRCXI_BioRad_384_wellplate_well_A20", + "B20": "PRCXI_BioRad_384_wellplate_well_B20", + "C20": "PRCXI_BioRad_384_wellplate_well_C20", + "D20": "PRCXI_BioRad_384_wellplate_well_D20", + "E20": "PRCXI_BioRad_384_wellplate_well_E20", + "F20": "PRCXI_BioRad_384_wellplate_well_F20", + "G20": "PRCXI_BioRad_384_wellplate_well_G20", + "H20": "PRCXI_BioRad_384_wellplate_well_H20", + "I20": "PRCXI_BioRad_384_wellplate_well_I20", + "J20": "PRCXI_BioRad_384_wellplate_well_J20", + "K20": "PRCXI_BioRad_384_wellplate_well_K20", + "L20": "PRCXI_BioRad_384_wellplate_well_L20", + "M20": "PRCXI_BioRad_384_wellplate_well_M20", + "N20": "PRCXI_BioRad_384_wellplate_well_N20", + "O20": "PRCXI_BioRad_384_wellplate_well_O20", + "P20": "PRCXI_BioRad_384_wellplate_well_P20", + "A21": "PRCXI_BioRad_384_wellplate_well_A21", + "B21": "PRCXI_BioRad_384_wellplate_well_B21", + "C21": "PRCXI_BioRad_384_wellplate_well_C21", + "D21": "PRCXI_BioRad_384_wellplate_well_D21", + "E21": "PRCXI_BioRad_384_wellplate_well_E21", + "F21": "PRCXI_BioRad_384_wellplate_well_F21", + "G21": "PRCXI_BioRad_384_wellplate_well_G21", + "H21": "PRCXI_BioRad_384_wellplate_well_H21", + "I21": "PRCXI_BioRad_384_wellplate_well_I21", + "J21": "PRCXI_BioRad_384_wellplate_well_J21", + "K21": "PRCXI_BioRad_384_wellplate_well_K21", + "L21": "PRCXI_BioRad_384_wellplate_well_L21", + "M21": "PRCXI_BioRad_384_wellplate_well_M21", + "N21": "PRCXI_BioRad_384_wellplate_well_N21", + "O21": "PRCXI_BioRad_384_wellplate_well_O21", + "P21": "PRCXI_BioRad_384_wellplate_well_P21", + "A22": "PRCXI_BioRad_384_wellplate_well_A22", + "B22": "PRCXI_BioRad_384_wellplate_well_B22", + "C22": "PRCXI_BioRad_384_wellplate_well_C22", + "D22": "PRCXI_BioRad_384_wellplate_well_D22", + "E22": "PRCXI_BioRad_384_wellplate_well_E22", + "F22": "PRCXI_BioRad_384_wellplate_well_F22", + "G22": "PRCXI_BioRad_384_wellplate_well_G22", + "H22": "PRCXI_BioRad_384_wellplate_well_H22", + "I22": "PRCXI_BioRad_384_wellplate_well_I22", + "J22": "PRCXI_BioRad_384_wellplate_well_J22", + "K22": "PRCXI_BioRad_384_wellplate_well_K22", + "L22": "PRCXI_BioRad_384_wellplate_well_L22", + "M22": "PRCXI_BioRad_384_wellplate_well_M22", + "N22": "PRCXI_BioRad_384_wellplate_well_N22", + "O22": "PRCXI_BioRad_384_wellplate_well_O22", + "P22": "PRCXI_BioRad_384_wellplate_well_P22", + "A23": "PRCXI_BioRad_384_wellplate_well_A23", + "B23": "PRCXI_BioRad_384_wellplate_well_B23", + "C23": "PRCXI_BioRad_384_wellplate_well_C23", + "D23": "PRCXI_BioRad_384_wellplate_well_D23", + "E23": "PRCXI_BioRad_384_wellplate_well_E23", + "F23": "PRCXI_BioRad_384_wellplate_well_F23", + "G23": "PRCXI_BioRad_384_wellplate_well_G23", + "H23": "PRCXI_BioRad_384_wellplate_well_H23", + "I23": "PRCXI_BioRad_384_wellplate_well_I23", + "J23": "PRCXI_BioRad_384_wellplate_well_J23", + "K23": "PRCXI_BioRad_384_wellplate_well_K23", + "L23": "PRCXI_BioRad_384_wellplate_well_L23", + "M23": "PRCXI_BioRad_384_wellplate_well_M23", + "N23": "PRCXI_BioRad_384_wellplate_well_N23", + "O23": "PRCXI_BioRad_384_wellplate_well_O23", + "P23": "PRCXI_BioRad_384_wellplate_well_P23", + "A24": "PRCXI_BioRad_384_wellplate_well_A24", + "B24": "PRCXI_BioRad_384_wellplate_well_B24", + "C24": "PRCXI_BioRad_384_wellplate_well_C24", + "D24": "PRCXI_BioRad_384_wellplate_well_D24", + "E24": "PRCXI_BioRad_384_wellplate_well_E24", + "F24": "PRCXI_BioRad_384_wellplate_well_F24", + "G24": "PRCXI_BioRad_384_wellplate_well_G24", + "H24": "PRCXI_BioRad_384_wellplate_well_H24", + "I24": "PRCXI_BioRad_384_wellplate_well_I24", + "J24": "PRCXI_BioRad_384_wellplate_well_J24", + "K24": "PRCXI_BioRad_384_wellplate_well_K24", + "L24": "PRCXI_BioRad_384_wellplate_well_L24", + "M24": "PRCXI_BioRad_384_wellplate_well_M24", + "N24": "PRCXI_BioRad_384_wellplate_well_N24", + "O24": "PRCXI_BioRad_384_wellplate_well_O24", + "P24": "PRCXI_BioRad_384_wellplate_well_P24" + } + }, + "data": { + "Material": { + "uuid": "853dcfb6226f476e8b23c250217dc7da", + "Code": "q3", + "Name": "384板", + "SupplyType": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_A1", + "uuid": "d5fc5065-90da-4c98-b24b-13c2d076f281", + "name": "PRCXI_BioRad_384_wellplate_well_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.58, + "y": 74.94, + "z": 1.05 + }, + "position3d": { + "x": 10.58, + "y": 74.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_0_0_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.58, + "y": 74.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_B1", + "uuid": "445e5121-5750-450a-9a1f-7229e7baec5f", + "name": "PRCXI_BioRad_384_wellplate_well_B1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.58, + "y": 70.44, + "z": 1.05 + }, + "position3d": { + "x": 10.58, + "y": 70.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_0_1_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.58, + "y": 70.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_C1", + "uuid": "7098a794-8af2-4607-8728-981be294aaac", + "name": "PRCXI_BioRad_384_wellplate_well_C1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.58, + "y": 65.94, + "z": 1.05 + }, + "position3d": { + "x": 10.58, + "y": 65.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_0_2_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.58, + "y": 65.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_D1", + "uuid": "da54fc92-a235-404a-9b7a-374b5186b749", + "name": "PRCXI_BioRad_384_wellplate_well_D1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.58, + "y": 61.44, + "z": 1.05 + }, + "position3d": { + "x": 10.58, + "y": 61.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_0_3_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.58, + "y": 61.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_E1", + "uuid": "b4e122e4-12e9-42c6-b463-37f4f818bf6c", + "name": "PRCXI_BioRad_384_wellplate_well_E1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.58, + "y": 56.94, + "z": 1.05 + }, + "position3d": { + "x": 10.58, + "y": 56.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_0_4_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.58, + "y": 56.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_F1", + "uuid": "d28829b9-24c6-4c28-a786-0af615aec0ce", + "name": "PRCXI_BioRad_384_wellplate_well_F1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.58, + "y": 52.44, + "z": 1.05 + }, + "position3d": { + "x": 10.58, + "y": 52.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_0_5_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.58, + "y": 52.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_G1", + "uuid": "fd015a4f-f878-4dd8-8615-5ac23fc618f5", + "name": "PRCXI_BioRad_384_wellplate_well_G1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.58, + "y": 47.94, + "z": 1.05 + }, + "position3d": { + "x": 10.58, + "y": 47.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_0_6_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.58, + "y": 47.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_H1", + "uuid": "79095d92-6323-47d5-b574-275c2b7f8ab0", + "name": "PRCXI_BioRad_384_wellplate_well_H1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.58, + "y": 43.44, + "z": 1.05 + }, + "position3d": { + "x": 10.58, + "y": 43.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_0_7_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.58, + "y": 43.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_I1", + "uuid": "b7e7e0cf-2309-4636-9021-9856ac87e3c7", + "name": "PRCXI_BioRad_384_wellplate_well_I1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.58, + "y": 38.94, + "z": 1.05 + }, + "position3d": { + "x": 10.58, + "y": 38.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_0_8_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.58, + "y": 38.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_J1", + "uuid": "07369313-a40c-4096-852f-c963a595bdda", + "name": "PRCXI_BioRad_384_wellplate_well_J1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.58, + "y": 34.44, + "z": 1.05 + }, + "position3d": { + "x": 10.58, + "y": 34.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_0_9_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.58, + "y": 34.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_K1", + "uuid": "6afa434f-df7d-4d22-ad84-959e075f60bf", + "name": "PRCXI_BioRad_384_wellplate_well_K1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.58, + "y": 29.94, + "z": 1.05 + }, + "position3d": { + "x": 10.58, + "y": 29.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_0_10_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.58, + "y": 29.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_L1", + "uuid": "4a470222-698b-47b5-8a98-416f12b8eed7", + "name": "PRCXI_BioRad_384_wellplate_well_L1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.58, + "y": 25.44, + "z": 1.05 + }, + "position3d": { + "x": 10.58, + "y": 25.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_0_11_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.58, + "y": 25.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_M1", + "uuid": "8fcb70be-d874-4f15-97e1-f415681a2a23", + "name": "PRCXI_BioRad_384_wellplate_well_M1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.58, + "y": 20.94, + "z": 1.05 + }, + "position3d": { + "x": 10.58, + "y": 20.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_0_12_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.58, + "y": 20.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_N1", + "uuid": "06eb0623-1445-4569-9706-5f988506ec20", + "name": "PRCXI_BioRad_384_wellplate_well_N1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.58, + "y": 16.44, + "z": 1.05 + }, + "position3d": { + "x": 10.58, + "y": 16.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_0_13_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.58, + "y": 16.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_O1", + "uuid": "958f7e7a-6879-4a75-a3b9-b1ad9dbca8fd", + "name": "PRCXI_BioRad_384_wellplate_well_O1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.58, + "y": 11.94, + "z": 1.05 + }, + "position3d": { + "x": 10.58, + "y": 11.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_0_14_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.58, + "y": 11.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_P1", + "uuid": "5b32b47e-6557-4c73-bf02-57f4a7410e9c", + "name": "PRCXI_BioRad_384_wellplate_well_P1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.58, + "y": 7.44, + "z": 1.05 + }, + "position3d": { + "x": 10.58, + "y": 7.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_0_15_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.58, + "y": 7.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_A2", + "uuid": "feda3c61-18e9-4ed8-964f-4534e33301d7", + "name": "PRCXI_BioRad_384_wellplate_well_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 15.08, + "y": 74.94, + "z": 1.05 + }, + "position3d": { + "x": 15.08, + "y": 74.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_1_0_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 15.08, + "y": 74.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_B2", + "uuid": "561fb250-92eb-4446-81f1-9d241a02c734", + "name": "PRCXI_BioRad_384_wellplate_well_B2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 15.08, + "y": 70.44, + "z": 1.05 + }, + "position3d": { + "x": 15.08, + "y": 70.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_1_1_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 15.08, + "y": 70.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_C2", + "uuid": "c59452e9-a8f6-4a70-b970-fe84770866ff", + "name": "PRCXI_BioRad_384_wellplate_well_C2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 15.08, + "y": 65.94, + "z": 1.05 + }, + "position3d": { + "x": 15.08, + "y": 65.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_1_2_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 15.08, + "y": 65.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_D2", + "uuid": "eafc773a-8b52-4a58-9a6e-91b415f6a535", + "name": "PRCXI_BioRad_384_wellplate_well_D2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 15.08, + "y": 61.44, + "z": 1.05 + }, + "position3d": { + "x": 15.08, + "y": 61.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_1_3_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 15.08, + "y": 61.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_E2", + "uuid": "18b58508-aa2e-4c79-b8a9-d06070b17e3f", + "name": "PRCXI_BioRad_384_wellplate_well_E2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 15.08, + "y": 56.94, + "z": 1.05 + }, + "position3d": { + "x": 15.08, + "y": 56.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_1_4_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 15.08, + "y": 56.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_F2", + "uuid": "6cd3b413-e940-4a6f-88c1-be11e4c687e3", + "name": "PRCXI_BioRad_384_wellplate_well_F2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 15.08, + "y": 52.44, + "z": 1.05 + }, + "position3d": { + "x": 15.08, + "y": 52.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_1_5_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 15.08, + "y": 52.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_G2", + "uuid": "f0de868a-6284-4962-8072-89ba7ff7fb16", + "name": "PRCXI_BioRad_384_wellplate_well_G2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 15.08, + "y": 47.94, + "z": 1.05 + }, + "position3d": { + "x": 15.08, + "y": 47.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_1_6_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 15.08, + "y": 47.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_H2", + "uuid": "44374e98-71d2-4c04-b083-59499826d25b", + "name": "PRCXI_BioRad_384_wellplate_well_H2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 15.08, + "y": 43.44, + "z": 1.05 + }, + "position3d": { + "x": 15.08, + "y": 43.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_1_7_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 15.08, + "y": 43.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_I2", + "uuid": "d9de1b1e-3f13-4d92-896d-1e78350bcffb", + "name": "PRCXI_BioRad_384_wellplate_well_I2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 15.08, + "y": 38.94, + "z": 1.05 + }, + "position3d": { + "x": 15.08, + "y": 38.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_1_8_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 15.08, + "y": 38.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_J2", + "uuid": "86a2d747-3d20-4726-bd5f-2222d0b150c8", + "name": "PRCXI_BioRad_384_wellplate_well_J2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 15.08, + "y": 34.44, + "z": 1.05 + }, + "position3d": { + "x": 15.08, + "y": 34.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_1_9_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 15.08, + "y": 34.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_K2", + "uuid": "b92ecd6a-8f9a-4c23-b306-700b0c020cad", + "name": "PRCXI_BioRad_384_wellplate_well_K2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 15.08, + "y": 29.94, + "z": 1.05 + }, + "position3d": { + "x": 15.08, + "y": 29.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_1_10_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 15.08, + "y": 29.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_L2", + "uuid": "aece1f48-39d2-498a-8968-0448946ffa1b", + "name": "PRCXI_BioRad_384_wellplate_well_L2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 15.08, + "y": 25.44, + "z": 1.05 + }, + "position3d": { + "x": 15.08, + "y": 25.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_1_11_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 15.08, + "y": 25.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_M2", + "uuid": "32e88aa0-6b59-47eb-8f1f-5b5df8d756b7", + "name": "PRCXI_BioRad_384_wellplate_well_M2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 15.08, + "y": 20.94, + "z": 1.05 + }, + "position3d": { + "x": 15.08, + "y": 20.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_1_12_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 15.08, + "y": 20.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_N2", + "uuid": "1946eb0f-3e41-4cd0-b469-ca07e75317e7", + "name": "PRCXI_BioRad_384_wellplate_well_N2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 15.08, + "y": 16.44, + "z": 1.05 + }, + "position3d": { + "x": 15.08, + "y": 16.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_1_13_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 15.08, + "y": 16.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_O2", + "uuid": "cc721ec4-f981-48d4-bb67-9515582ff7fd", + "name": "PRCXI_BioRad_384_wellplate_well_O2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 15.08, + "y": 11.94, + "z": 1.05 + }, + "position3d": { + "x": 15.08, + "y": 11.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_1_14_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 15.08, + "y": 11.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_P2", + "uuid": "5fa6a1a5-c795-4f0d-8505-9d0339200802", + "name": "PRCXI_BioRad_384_wellplate_well_P2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 15.08, + "y": 7.44, + "z": 1.05 + }, + "position3d": { + "x": 15.08, + "y": 7.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_1_15_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 15.08, + "y": 7.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_A3", + "uuid": "caaba817-2eb7-4136-9b9e-1c3bac9d5223", + "name": "PRCXI_BioRad_384_wellplate_well_A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 19.58, + "y": 74.94, + "z": 1.05 + }, + "position3d": { + "x": 19.58, + "y": 74.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_2_0_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 19.58, + "y": 74.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_B3", + "uuid": "f050a759-b28e-4fd2-a62f-f65dc95c4ca9", + "name": "PRCXI_BioRad_384_wellplate_well_B3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 19.58, + "y": 70.44, + "z": 1.05 + }, + "position3d": { + "x": 19.58, + "y": 70.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_2_1_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 19.58, + "y": 70.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_C3", + "uuid": "9b6849c1-2a2e-4938-ad49-eb2a1df6d7ad", + "name": "PRCXI_BioRad_384_wellplate_well_C3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 19.58, + "y": 65.94, + "z": 1.05 + }, + "position3d": { + "x": 19.58, + "y": 65.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_2_2_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 19.58, + "y": 65.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_D3", + "uuid": "f20fab29-c112-4b3a-8ce5-56e426124fd5", + "name": "PRCXI_BioRad_384_wellplate_well_D3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 19.58, + "y": 61.44, + "z": 1.05 + }, + "position3d": { + "x": 19.58, + "y": 61.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_2_3_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 19.58, + "y": 61.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_E3", + "uuid": "52366295-be2c-44a2-8c0a-da5deb162855", + "name": "PRCXI_BioRad_384_wellplate_well_E3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 19.58, + "y": 56.94, + "z": 1.05 + }, + "position3d": { + "x": 19.58, + "y": 56.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_2_4_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 19.58, + "y": 56.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_F3", + "uuid": "951f5c73-ed51-43e7-9251-15fce13bc0b8", + "name": "PRCXI_BioRad_384_wellplate_well_F3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 19.58, + "y": 52.44, + "z": 1.05 + }, + "position3d": { + "x": 19.58, + "y": 52.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_2_5_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 19.58, + "y": 52.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_G3", + "uuid": "727f692b-d98b-4e94-8dfe-124662a26f30", + "name": "PRCXI_BioRad_384_wellplate_well_G3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 19.58, + "y": 47.94, + "z": 1.05 + }, + "position3d": { + "x": 19.58, + "y": 47.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_2_6_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 19.58, + "y": 47.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_H3", + "uuid": "2340ce17-1112-4cf3-92bb-de225dc1381b", + "name": "PRCXI_BioRad_384_wellplate_well_H3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 19.58, + "y": 43.44, + "z": 1.05 + }, + "position3d": { + "x": 19.58, + "y": 43.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_2_7_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 19.58, + "y": 43.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_I3", + "uuid": "508d7323-97e1-4324-81d0-8d9ab3cfefba", + "name": "PRCXI_BioRad_384_wellplate_well_I3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 19.58, + "y": 38.94, + "z": 1.05 + }, + "position3d": { + "x": 19.58, + "y": 38.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_2_8_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 19.58, + "y": 38.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_J3", + "uuid": "9141716e-5cf9-4fdf-b22d-e02e0f982e19", + "name": "PRCXI_BioRad_384_wellplate_well_J3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 19.58, + "y": 34.44, + "z": 1.05 + }, + "position3d": { + "x": 19.58, + "y": 34.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_2_9_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 19.58, + "y": 34.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_K3", + "uuid": "24d87f26-e718-4cba-a0e7-3394ad98148c", + "name": "PRCXI_BioRad_384_wellplate_well_K3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 19.58, + "y": 29.94, + "z": 1.05 + }, + "position3d": { + "x": 19.58, + "y": 29.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_2_10_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 19.58, + "y": 29.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_L3", + "uuid": "9b48ab65-2f1b-462a-b290-131cfabdf8cc", + "name": "PRCXI_BioRad_384_wellplate_well_L3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 19.58, + "y": 25.44, + "z": 1.05 + }, + "position3d": { + "x": 19.58, + "y": 25.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_2_11_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 19.58, + "y": 25.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_M3", + "uuid": "69b81f93-e104-46cd-a89d-d5ca5af405cc", + "name": "PRCXI_BioRad_384_wellplate_well_M3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 19.58, + "y": 20.94, + "z": 1.05 + }, + "position3d": { + "x": 19.58, + "y": 20.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_2_12_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 19.58, + "y": 20.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_N3", + "uuid": "bac7e1b2-551e-4962-9755-c556e78d2715", + "name": "PRCXI_BioRad_384_wellplate_well_N3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 19.58, + "y": 16.44, + "z": 1.05 + }, + "position3d": { + "x": 19.58, + "y": 16.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_2_13_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 19.58, + "y": 16.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_O3", + "uuid": "136e9122-6c63-4053-bba6-c5a1462c0447", + "name": "PRCXI_BioRad_384_wellplate_well_O3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 19.58, + "y": 11.94, + "z": 1.05 + }, + "position3d": { + "x": 19.58, + "y": 11.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_2_14_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 19.58, + "y": 11.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_P3", + "uuid": "d3cc8a76-c87a-4015-bd3d-01fdd4a9be95", + "name": "PRCXI_BioRad_384_wellplate_well_P3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 19.58, + "y": 7.44, + "z": 1.05 + }, + "position3d": { + "x": 19.58, + "y": 7.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_2_15_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 19.58, + "y": 7.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_A4", + "uuid": "0cecb5d3-649f-425a-b938-e9a0d10e9810", + "name": "PRCXI_BioRad_384_wellplate_well_A4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 24.08, + "y": 74.94, + "z": 1.05 + }, + "position3d": { + "x": 24.08, + "y": 74.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_3_0_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 24.08, + "y": 74.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_B4", + "uuid": "93505833-3f1f-45fa-87ce-efd4f26ece54", + "name": "PRCXI_BioRad_384_wellplate_well_B4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 24.08, + "y": 70.44, + "z": 1.05 + }, + "position3d": { + "x": 24.08, + "y": 70.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_3_1_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 24.08, + "y": 70.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_C4", + "uuid": "c85f0612-ee61-4140-aa87-faedacf84dec", + "name": "PRCXI_BioRad_384_wellplate_well_C4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 24.08, + "y": 65.94, + "z": 1.05 + }, + "position3d": { + "x": 24.08, + "y": 65.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_3_2_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 24.08, + "y": 65.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_D4", + "uuid": "19781536-0971-4faf-8261-51a7024e0348", + "name": "PRCXI_BioRad_384_wellplate_well_D4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 24.08, + "y": 61.44, + "z": 1.05 + }, + "position3d": { + "x": 24.08, + "y": 61.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_3_3_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 24.08, + "y": 61.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_E4", + "uuid": "873b69cc-c0c3-4c94-8647-324acec44933", + "name": "PRCXI_BioRad_384_wellplate_well_E4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 24.08, + "y": 56.94, + "z": 1.05 + }, + "position3d": { + "x": 24.08, + "y": 56.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_3_4_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 24.08, + "y": 56.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_F4", + "uuid": "01e09aeb-1cc8-4a0b-a086-78d1e91520c8", + "name": "PRCXI_BioRad_384_wellplate_well_F4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 24.08, + "y": 52.44, + "z": 1.05 + }, + "position3d": { + "x": 24.08, + "y": 52.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_3_5_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 24.08, + "y": 52.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_G4", + "uuid": "ba0759e5-6a40-4260-b0bf-c1ebe9b3e0fb", + "name": "PRCXI_BioRad_384_wellplate_well_G4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 24.08, + "y": 47.94, + "z": 1.05 + }, + "position3d": { + "x": 24.08, + "y": 47.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_3_6_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 24.08, + "y": 47.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_H4", + "uuid": "f8c5e391-95a8-45b0-bf80-ba8bee4634fb", + "name": "PRCXI_BioRad_384_wellplate_well_H4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 24.08, + "y": 43.44, + "z": 1.05 + }, + "position3d": { + "x": 24.08, + "y": 43.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_3_7_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 24.08, + "y": 43.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_I4", + "uuid": "b2532c6f-3ec1-464e-86a6-6fc670290b99", + "name": "PRCXI_BioRad_384_wellplate_well_I4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 24.08, + "y": 38.94, + "z": 1.05 + }, + "position3d": { + "x": 24.08, + "y": 38.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_3_8_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 24.08, + "y": 38.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_J4", + "uuid": "0851bf52-9835-49b1-a69b-fd3f024e36b3", + "name": "PRCXI_BioRad_384_wellplate_well_J4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 24.08, + "y": 34.44, + "z": 1.05 + }, + "position3d": { + "x": 24.08, + "y": 34.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_3_9_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 24.08, + "y": 34.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_K4", + "uuid": "508ec932-3d6d-4ca7-ad73-dac0efabed4d", + "name": "PRCXI_BioRad_384_wellplate_well_K4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 24.08, + "y": 29.94, + "z": 1.05 + }, + "position3d": { + "x": 24.08, + "y": 29.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_3_10_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 24.08, + "y": 29.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_L4", + "uuid": "3e59a872-a0c3-47ac-9881-661851c4f5e2", + "name": "PRCXI_BioRad_384_wellplate_well_L4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 24.08, + "y": 25.44, + "z": 1.05 + }, + "position3d": { + "x": 24.08, + "y": 25.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_3_11_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 24.08, + "y": 25.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_M4", + "uuid": "8829d80e-49a8-4b2c-9232-ccaf14df7971", + "name": "PRCXI_BioRad_384_wellplate_well_M4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 24.08, + "y": 20.94, + "z": 1.05 + }, + "position3d": { + "x": 24.08, + "y": 20.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_3_12_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 24.08, + "y": 20.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_N4", + "uuid": "c7f74360-1260-4459-901a-3b9f061f141d", + "name": "PRCXI_BioRad_384_wellplate_well_N4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 24.08, + "y": 16.44, + "z": 1.05 + }, + "position3d": { + "x": 24.08, + "y": 16.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_3_13_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 24.08, + "y": 16.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_O4", + "uuid": "8ac60d6b-d8d8-4644-8dd7-6e49e20c5455", + "name": "PRCXI_BioRad_384_wellplate_well_O4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 24.08, + "y": 11.94, + "z": 1.05 + }, + "position3d": { + "x": 24.08, + "y": 11.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_3_14_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 24.08, + "y": 11.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_P4", + "uuid": "91dcdabc-c742-4a75-ad48-1deb004bb337", + "name": "PRCXI_BioRad_384_wellplate_well_P4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 24.08, + "y": 7.44, + "z": 1.05 + }, + "position3d": { + "x": 24.08, + "y": 7.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_3_15_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 24.08, + "y": 7.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_A5", + "uuid": "4a0f9294-505c-4210-ab19-56c3a248859f", + "name": "PRCXI_BioRad_384_wellplate_well_A5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.58, + "y": 74.94, + "z": 1.05 + }, + "position3d": { + "x": 28.58, + "y": 74.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_4_0_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.58, + "y": 74.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_B5", + "uuid": "698ada52-ccef-4536-b730-eef79ef4dd18", + "name": "PRCXI_BioRad_384_wellplate_well_B5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.58, + "y": 70.44, + "z": 1.05 + }, + "position3d": { + "x": 28.58, + "y": 70.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_4_1_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.58, + "y": 70.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_C5", + "uuid": "ac2f924e-c67d-4511-9263-b98a40234d30", + "name": "PRCXI_BioRad_384_wellplate_well_C5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.58, + "y": 65.94, + "z": 1.05 + }, + "position3d": { + "x": 28.58, + "y": 65.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_4_2_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.58, + "y": 65.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_D5", + "uuid": "ef6c0b42-c04c-4f96-af7b-e7bbf9123a92", + "name": "PRCXI_BioRad_384_wellplate_well_D5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.58, + "y": 61.44, + "z": 1.05 + }, + "position3d": { + "x": 28.58, + "y": 61.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_4_3_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.58, + "y": 61.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_E5", + "uuid": "8cafbc9f-73db-436e-bcc1-082c3c4a4f03", + "name": "PRCXI_BioRad_384_wellplate_well_E5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.58, + "y": 56.94, + "z": 1.05 + }, + "position3d": { + "x": 28.58, + "y": 56.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_4_4_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.58, + "y": 56.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_F5", + "uuid": "a4622d46-7bec-4b62-a8e8-2cd5c6c6a034", + "name": "PRCXI_BioRad_384_wellplate_well_F5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.58, + "y": 52.44, + "z": 1.05 + }, + "position3d": { + "x": 28.58, + "y": 52.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_4_5_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.58, + "y": 52.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_G5", + "uuid": "51862c5d-dad6-4985-86f0-1048ece585b7", + "name": "PRCXI_BioRad_384_wellplate_well_G5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.58, + "y": 47.94, + "z": 1.05 + }, + "position3d": { + "x": 28.58, + "y": 47.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_4_6_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.58, + "y": 47.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_H5", + "uuid": "e2004668-449d-4cd2-95c7-04ee490c2c5d", + "name": "PRCXI_BioRad_384_wellplate_well_H5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.58, + "y": 43.44, + "z": 1.05 + }, + "position3d": { + "x": 28.58, + "y": 43.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_4_7_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.58, + "y": 43.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_I5", + "uuid": "2bdf2a18-76a5-4417-86cd-bb36cee1e373", + "name": "PRCXI_BioRad_384_wellplate_well_I5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.58, + "y": 38.94, + "z": 1.05 + }, + "position3d": { + "x": 28.58, + "y": 38.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_4_8_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.58, + "y": 38.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_J5", + "uuid": "4ad77749-8d4b-480c-b4c1-ea5e21954728", + "name": "PRCXI_BioRad_384_wellplate_well_J5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.58, + "y": 34.44, + "z": 1.05 + }, + "position3d": { + "x": 28.58, + "y": 34.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_4_9_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.58, + "y": 34.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_K5", + "uuid": "d8d45a3e-6ace-4feb-88bf-ea9c50508195", + "name": "PRCXI_BioRad_384_wellplate_well_K5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.58, + "y": 29.94, + "z": 1.05 + }, + "position3d": { + "x": 28.58, + "y": 29.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_4_10_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.58, + "y": 29.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_L5", + "uuid": "c497b4b2-d0d4-4437-9a5c-7611ac47b213", + "name": "PRCXI_BioRad_384_wellplate_well_L5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.58, + "y": 25.44, + "z": 1.05 + }, + "position3d": { + "x": 28.58, + "y": 25.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_4_11_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.58, + "y": 25.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_M5", + "uuid": "6cccd35b-2900-4b5d-a442-54c4c48d0d41", + "name": "PRCXI_BioRad_384_wellplate_well_M5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.58, + "y": 20.94, + "z": 1.05 + }, + "position3d": { + "x": 28.58, + "y": 20.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_4_12_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.58, + "y": 20.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_N5", + "uuid": "9a6958c5-1863-46e1-b509-9e15b4c8dcc1", + "name": "PRCXI_BioRad_384_wellplate_well_N5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.58, + "y": 16.44, + "z": 1.05 + }, + "position3d": { + "x": 28.58, + "y": 16.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_4_13_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.58, + "y": 16.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_O5", + "uuid": "34a4c98d-c1d3-4840-b1db-a9eaab69a74e", + "name": "PRCXI_BioRad_384_wellplate_well_O5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.58, + "y": 11.94, + "z": 1.05 + }, + "position3d": { + "x": 28.58, + "y": 11.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_4_14_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.58, + "y": 11.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_P5", + "uuid": "46a3501a-6f0d-4cf4-8c5a-6ff0ca8c9cb1", + "name": "PRCXI_BioRad_384_wellplate_well_P5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.58, + "y": 7.44, + "z": 1.05 + }, + "position3d": { + "x": 28.58, + "y": 7.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_4_15_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.58, + "y": 7.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_A6", + "uuid": "b0fc06ae-50b8-4311-810b-bb122e29c600", + "name": "PRCXI_BioRad_384_wellplate_well_A6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 33.08, + "y": 74.94, + "z": 1.05 + }, + "position3d": { + "x": 33.08, + "y": 74.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_5_0_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 33.08, + "y": 74.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_B6", + "uuid": "d3c5c7c8-ab20-4d84-a9cd-aeaded456d70", + "name": "PRCXI_BioRad_384_wellplate_well_B6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 33.08, + "y": 70.44, + "z": 1.05 + }, + "position3d": { + "x": 33.08, + "y": 70.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_5_1_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 33.08, + "y": 70.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_C6", + "uuid": "93e473d0-8b73-42d5-a78b-edccae49c513", + "name": "PRCXI_BioRad_384_wellplate_well_C6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 33.08, + "y": 65.94, + "z": 1.05 + }, + "position3d": { + "x": 33.08, + "y": 65.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_5_2_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 33.08, + "y": 65.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_D6", + "uuid": "ecfb2772-ed4a-4861-a676-877cb456fda6", + "name": "PRCXI_BioRad_384_wellplate_well_D6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 33.08, + "y": 61.44, + "z": 1.05 + }, + "position3d": { + "x": 33.08, + "y": 61.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_5_3_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 33.08, + "y": 61.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_E6", + "uuid": "e6a968a7-1882-4976-afce-93d85d893047", + "name": "PRCXI_BioRad_384_wellplate_well_E6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 33.08, + "y": 56.94, + "z": 1.05 + }, + "position3d": { + "x": 33.08, + "y": 56.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_5_4_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 33.08, + "y": 56.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_F6", + "uuid": "b4112465-df95-4919-938f-fbcedfbb9cef", + "name": "PRCXI_BioRad_384_wellplate_well_F6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 33.08, + "y": 52.44, + "z": 1.05 + }, + "position3d": { + "x": 33.08, + "y": 52.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_5_5_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 33.08, + "y": 52.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_G6", + "uuid": "fe904080-0a34-47e1-899a-12accf7ad8c8", + "name": "PRCXI_BioRad_384_wellplate_well_G6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 33.08, + "y": 47.94, + "z": 1.05 + }, + "position3d": { + "x": 33.08, + "y": 47.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_5_6_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 33.08, + "y": 47.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_H6", + "uuid": "9dc0f057-281a-4b9d-861f-52b2999509b5", + "name": "PRCXI_BioRad_384_wellplate_well_H6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 33.08, + "y": 43.44, + "z": 1.05 + }, + "position3d": { + "x": 33.08, + "y": 43.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_5_7_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 33.08, + "y": 43.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_I6", + "uuid": "8be7e103-8573-4efb-8476-080cd6e238d4", + "name": "PRCXI_BioRad_384_wellplate_well_I6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 33.08, + "y": 38.94, + "z": 1.05 + }, + "position3d": { + "x": 33.08, + "y": 38.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_5_8_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 33.08, + "y": 38.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_J6", + "uuid": "3d669230-f7e6-4efb-8fab-bd8eeb1ce6d4", + "name": "PRCXI_BioRad_384_wellplate_well_J6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 33.08, + "y": 34.44, + "z": 1.05 + }, + "position3d": { + "x": 33.08, + "y": 34.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_5_9_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 33.08, + "y": 34.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_K6", + "uuid": "0c2a67cd-c74f-4e84-b126-a941fe9ce174", + "name": "PRCXI_BioRad_384_wellplate_well_K6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 33.08, + "y": 29.94, + "z": 1.05 + }, + "position3d": { + "x": 33.08, + "y": 29.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_5_10_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 33.08, + "y": 29.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_L6", + "uuid": "a4cbeb2b-13f4-45e1-8db0-47943fc41686", + "name": "PRCXI_BioRad_384_wellplate_well_L6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 33.08, + "y": 25.44, + "z": 1.05 + }, + "position3d": { + "x": 33.08, + "y": 25.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_5_11_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 33.08, + "y": 25.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_M6", + "uuid": "f6f20028-4abf-44be-a18b-8a17f032df27", + "name": "PRCXI_BioRad_384_wellplate_well_M6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 33.08, + "y": 20.94, + "z": 1.05 + }, + "position3d": { + "x": 33.08, + "y": 20.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_5_12_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 33.08, + "y": 20.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_N6", + "uuid": "173ff81d-fb8c-4120-92a7-9c4e5fdd9e3b", + "name": "PRCXI_BioRad_384_wellplate_well_N6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 33.08, + "y": 16.44, + "z": 1.05 + }, + "position3d": { + "x": 33.08, + "y": 16.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_5_13_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 33.08, + "y": 16.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_O6", + "uuid": "2c7b9c1d-7002-4e87-93fe-b1f5cca3b6aa", + "name": "PRCXI_BioRad_384_wellplate_well_O6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 33.08, + "y": 11.94, + "z": 1.05 + }, + "position3d": { + "x": 33.08, + "y": 11.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_5_14_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 33.08, + "y": 11.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_P6", + "uuid": "c1866e2b-34f8-4198-98c2-923c2011507a", + "name": "PRCXI_BioRad_384_wellplate_well_P6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 33.08, + "y": 7.44, + "z": 1.05 + }, + "position3d": { + "x": 33.08, + "y": 7.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_5_15_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 33.08, + "y": 7.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_A7", + "uuid": "84552e9d-ca36-49fa-b9f4-271560994444", + "name": "PRCXI_BioRad_384_wellplate_well_A7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.58, + "y": 74.94, + "z": 1.05 + }, + "position3d": { + "x": 37.58, + "y": 74.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_6_0_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.58, + "y": 74.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_B7", + "uuid": "7a75afbf-278e-4a25-9a93-ef41ad61d8e0", + "name": "PRCXI_BioRad_384_wellplate_well_B7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.58, + "y": 70.44, + "z": 1.05 + }, + "position3d": { + "x": 37.58, + "y": 70.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_6_1_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.58, + "y": 70.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_C7", + "uuid": "da109a90-aaa9-4a47-9474-e7b1729496a1", + "name": "PRCXI_BioRad_384_wellplate_well_C7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.58, + "y": 65.94, + "z": 1.05 + }, + "position3d": { + "x": 37.58, + "y": 65.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_6_2_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.58, + "y": 65.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_D7", + "uuid": "de070e29-18ac-451f-b8e6-2c93c08c7b8b", + "name": "PRCXI_BioRad_384_wellplate_well_D7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.58, + "y": 61.44, + "z": 1.05 + }, + "position3d": { + "x": 37.58, + "y": 61.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_6_3_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.58, + "y": 61.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_E7", + "uuid": "da5883ab-d426-4954-b75e-c4699e3232ef", + "name": "PRCXI_BioRad_384_wellplate_well_E7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.58, + "y": 56.94, + "z": 1.05 + }, + "position3d": { + "x": 37.58, + "y": 56.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_6_4_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.58, + "y": 56.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_F7", + "uuid": "f1906a46-f0fd-4abd-9c0d-5aa1fad87d77", + "name": "PRCXI_BioRad_384_wellplate_well_F7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.58, + "y": 52.44, + "z": 1.05 + }, + "position3d": { + "x": 37.58, + "y": 52.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_6_5_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.58, + "y": 52.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_G7", + "uuid": "009e8a25-f30d-4584-991b-d33214aebe35", + "name": "PRCXI_BioRad_384_wellplate_well_G7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.58, + "y": 47.94, + "z": 1.05 + }, + "position3d": { + "x": 37.58, + "y": 47.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_6_6_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.58, + "y": 47.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_H7", + "uuid": "4f9cbb2d-c238-4074-9abe-cc22bb509fb5", + "name": "PRCXI_BioRad_384_wellplate_well_H7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.58, + "y": 43.44, + "z": 1.05 + }, + "position3d": { + "x": 37.58, + "y": 43.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_6_7_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.58, + "y": 43.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_I7", + "uuid": "0271f63e-125e-4da6-a644-70bf0cbeff8e", + "name": "PRCXI_BioRad_384_wellplate_well_I7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.58, + "y": 38.94, + "z": 1.05 + }, + "position3d": { + "x": 37.58, + "y": 38.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_6_8_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.58, + "y": 38.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_J7", + "uuid": "4fda5190-9a48-43fa-823c-4d1e2fea2ee8", + "name": "PRCXI_BioRad_384_wellplate_well_J7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.58, + "y": 34.44, + "z": 1.05 + }, + "position3d": { + "x": 37.58, + "y": 34.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_6_9_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.58, + "y": 34.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_K7", + "uuid": "14aacd90-35be-4d7c-a12b-492328b60fc6", + "name": "PRCXI_BioRad_384_wellplate_well_K7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.58, + "y": 29.94, + "z": 1.05 + }, + "position3d": { + "x": 37.58, + "y": 29.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_6_10_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.58, + "y": 29.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_L7", + "uuid": "56bd2ee3-8ad5-46e5-84f7-13f289dd5d8e", + "name": "PRCXI_BioRad_384_wellplate_well_L7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.58, + "y": 25.44, + "z": 1.05 + }, + "position3d": { + "x": 37.58, + "y": 25.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_6_11_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.58, + "y": 25.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_M7", + "uuid": "b2675bcd-a32b-4104-b97b-db3bc5db12b8", + "name": "PRCXI_BioRad_384_wellplate_well_M7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.58, + "y": 20.94, + "z": 1.05 + }, + "position3d": { + "x": 37.58, + "y": 20.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_6_12_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.58, + "y": 20.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_N7", + "uuid": "849d0d91-9841-40c8-a686-e80fccb2c17c", + "name": "PRCXI_BioRad_384_wellplate_well_N7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.58, + "y": 16.44, + "z": 1.05 + }, + "position3d": { + "x": 37.58, + "y": 16.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_6_13_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.58, + "y": 16.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_O7", + "uuid": "f460aa08-db3b-4b89-acee-6c29d620cced", + "name": "PRCXI_BioRad_384_wellplate_well_O7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.58, + "y": 11.94, + "z": 1.05 + }, + "position3d": { + "x": 37.58, + "y": 11.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_6_14_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.58, + "y": 11.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_P7", + "uuid": "1476fb7d-6db5-45fe-a466-70600eb49dfc", + "name": "PRCXI_BioRad_384_wellplate_well_P7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.58, + "y": 7.44, + "z": 1.05 + }, + "position3d": { + "x": 37.58, + "y": 7.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_6_15_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.58, + "y": 7.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_A8", + "uuid": "edd3d897-b295-40be-9aeb-9c844966c10a", + "name": "PRCXI_BioRad_384_wellplate_well_A8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 42.08, + "y": 74.94, + "z": 1.05 + }, + "position3d": { + "x": 42.08, + "y": 74.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_7_0_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 42.08, + "y": 74.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_B8", + "uuid": "07a6898b-7352-4fde-8bc1-ea60f44a6d2d", + "name": "PRCXI_BioRad_384_wellplate_well_B8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 42.08, + "y": 70.44, + "z": 1.05 + }, + "position3d": { + "x": 42.08, + "y": 70.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_7_1_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 42.08, + "y": 70.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_C8", + "uuid": "de65641a-7d00-4bb3-9e70-a00d7364726d", + "name": "PRCXI_BioRad_384_wellplate_well_C8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 42.08, + "y": 65.94, + "z": 1.05 + }, + "position3d": { + "x": 42.08, + "y": 65.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_7_2_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 42.08, + "y": 65.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_D8", + "uuid": "f35cc071-6395-4717-a544-77527c983d69", + "name": "PRCXI_BioRad_384_wellplate_well_D8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 42.08, + "y": 61.44, + "z": 1.05 + }, + "position3d": { + "x": 42.08, + "y": 61.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_7_3_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 42.08, + "y": 61.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_E8", + "uuid": "d442ecfe-cb3d-47ea-a430-031c783e2143", + "name": "PRCXI_BioRad_384_wellplate_well_E8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 42.08, + "y": 56.94, + "z": 1.05 + }, + "position3d": { + "x": 42.08, + "y": 56.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_7_4_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 42.08, + "y": 56.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_F8", + "uuid": "bd8c4bab-a97d-497c-a891-2a51bcadf953", + "name": "PRCXI_BioRad_384_wellplate_well_F8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 42.08, + "y": 52.44, + "z": 1.05 + }, + "position3d": { + "x": 42.08, + "y": 52.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_7_5_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 42.08, + "y": 52.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_G8", + "uuid": "1f5b8c16-d2c2-491d-b16e-9616cd66dab5", + "name": "PRCXI_BioRad_384_wellplate_well_G8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 42.08, + "y": 47.94, + "z": 1.05 + }, + "position3d": { + "x": 42.08, + "y": 47.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_7_6_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 42.08, + "y": 47.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_H8", + "uuid": "e5a0ad08-5055-47de-b894-42cbfadb3700", + "name": "PRCXI_BioRad_384_wellplate_well_H8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 42.08, + "y": 43.44, + "z": 1.05 + }, + "position3d": { + "x": 42.08, + "y": 43.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_7_7_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 42.08, + "y": 43.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_I8", + "uuid": "9984d0da-ac42-4de1-8a64-3ee87fe5c2ea", + "name": "PRCXI_BioRad_384_wellplate_well_I8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 42.08, + "y": 38.94, + "z": 1.05 + }, + "position3d": { + "x": 42.08, + "y": 38.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_7_8_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 42.08, + "y": 38.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_J8", + "uuid": "861d2cb9-3e6b-439b-8010-74962ccff022", + "name": "PRCXI_BioRad_384_wellplate_well_J8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 42.08, + "y": 34.44, + "z": 1.05 + }, + "position3d": { + "x": 42.08, + "y": 34.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_7_9_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 42.08, + "y": 34.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_K8", + "uuid": "119ce430-868b-4746-80f5-2afe39405312", + "name": "PRCXI_BioRad_384_wellplate_well_K8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 42.08, + "y": 29.94, + "z": 1.05 + }, + "position3d": { + "x": 42.08, + "y": 29.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_7_10_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 42.08, + "y": 29.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_L8", + "uuid": "bc3ae2ef-62a2-4234-917c-0848e89e66b6", + "name": "PRCXI_BioRad_384_wellplate_well_L8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 42.08, + "y": 25.44, + "z": 1.05 + }, + "position3d": { + "x": 42.08, + "y": 25.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_7_11_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 42.08, + "y": 25.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_M8", + "uuid": "7b4e560c-6973-4f47-99f9-660ee44fcc57", + "name": "PRCXI_BioRad_384_wellplate_well_M8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 42.08, + "y": 20.94, + "z": 1.05 + }, + "position3d": { + "x": 42.08, + "y": 20.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_7_12_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 42.08, + "y": 20.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_N8", + "uuid": "bcbfda64-837e-4e71-af80-57b95d7f16ce", + "name": "PRCXI_BioRad_384_wellplate_well_N8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 42.08, + "y": 16.44, + "z": 1.05 + }, + "position3d": { + "x": 42.08, + "y": 16.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_7_13_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 42.08, + "y": 16.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_O8", + "uuid": "0af4c8c2-97ac-4cc4-bea9-49c826337ba6", + "name": "PRCXI_BioRad_384_wellplate_well_O8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 42.08, + "y": 11.94, + "z": 1.05 + }, + "position3d": { + "x": 42.08, + "y": 11.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_7_14_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 42.08, + "y": 11.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_P8", + "uuid": "46dfdc68-846c-4eb2-9a50-09982589a876", + "name": "PRCXI_BioRad_384_wellplate_well_P8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 42.08, + "y": 7.44, + "z": 1.05 + }, + "position3d": { + "x": 42.08, + "y": 7.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_7_15_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 42.08, + "y": 7.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_A9", + "uuid": "e7fc06af-0654-4f66-90b7-b2c1482f8dca", + "name": "PRCXI_BioRad_384_wellplate_well_A9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.58, + "y": 74.94, + "z": 1.05 + }, + "position3d": { + "x": 46.58, + "y": 74.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_8_0_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.58, + "y": 74.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_B9", + "uuid": "2aa6a7db-782b-4651-903c-3759d2c4ccb0", + "name": "PRCXI_BioRad_384_wellplate_well_B9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.58, + "y": 70.44, + "z": 1.05 + }, + "position3d": { + "x": 46.58, + "y": 70.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_8_1_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.58, + "y": 70.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_C9", + "uuid": "97fcb0ca-3f06-4966-b7a2-a4f2073a3e29", + "name": "PRCXI_BioRad_384_wellplate_well_C9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.58, + "y": 65.94, + "z": 1.05 + }, + "position3d": { + "x": 46.58, + "y": 65.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_8_2_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.58, + "y": 65.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_D9", + "uuid": "7bdf81c5-6b9c-409a-9312-8fef49188315", + "name": "PRCXI_BioRad_384_wellplate_well_D9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.58, + "y": 61.44, + "z": 1.05 + }, + "position3d": { + "x": 46.58, + "y": 61.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_8_3_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.58, + "y": 61.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_E9", + "uuid": "e4d22b8c-0caa-412f-a24a-f2f4bcdffd02", + "name": "PRCXI_BioRad_384_wellplate_well_E9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.58, + "y": 56.94, + "z": 1.05 + }, + "position3d": { + "x": 46.58, + "y": 56.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_8_4_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.58, + "y": 56.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_F9", + "uuid": "57af2323-69be-4f19-9eec-2eabab7d0872", + "name": "PRCXI_BioRad_384_wellplate_well_F9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.58, + "y": 52.44, + "z": 1.05 + }, + "position3d": { + "x": 46.58, + "y": 52.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_8_5_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.58, + "y": 52.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_G9", + "uuid": "b4b7d550-3088-433e-afca-042c9232b5a2", + "name": "PRCXI_BioRad_384_wellplate_well_G9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.58, + "y": 47.94, + "z": 1.05 + }, + "position3d": { + "x": 46.58, + "y": 47.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_8_6_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.58, + "y": 47.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_H9", + "uuid": "3301f718-8c2c-4e5d-acd8-9a7e2e50d93d", + "name": "PRCXI_BioRad_384_wellplate_well_H9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.58, + "y": 43.44, + "z": 1.05 + }, + "position3d": { + "x": 46.58, + "y": 43.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_8_7_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.58, + "y": 43.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_I9", + "uuid": "73f4abc4-8f60-44ef-98de-af58accc2908", + "name": "PRCXI_BioRad_384_wellplate_well_I9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.58, + "y": 38.94, + "z": 1.05 + }, + "position3d": { + "x": 46.58, + "y": 38.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_8_8_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.58, + "y": 38.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_J9", + "uuid": "87eed48f-9a7c-4ebc-bd32-97de8e2edb50", + "name": "PRCXI_BioRad_384_wellplate_well_J9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.58, + "y": 34.44, + "z": 1.05 + }, + "position3d": { + "x": 46.58, + "y": 34.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_8_9_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.58, + "y": 34.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_K9", + "uuid": "1085403b-bafa-49ce-9899-4a2bbbdf7113", + "name": "PRCXI_BioRad_384_wellplate_well_K9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.58, + "y": 29.94, + "z": 1.05 + }, + "position3d": { + "x": 46.58, + "y": 29.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_8_10_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.58, + "y": 29.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_L9", + "uuid": "bf8dc062-554f-404b-9851-50c5550024c7", + "name": "PRCXI_BioRad_384_wellplate_well_L9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.58, + "y": 25.44, + "z": 1.05 + }, + "position3d": { + "x": 46.58, + "y": 25.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_8_11_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.58, + "y": 25.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_M9", + "uuid": "e7c420a2-dd5a-4817-958b-2e2268f73ab5", + "name": "PRCXI_BioRad_384_wellplate_well_M9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.58, + "y": 20.94, + "z": 1.05 + }, + "position3d": { + "x": 46.58, + "y": 20.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_8_12_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.58, + "y": 20.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_N9", + "uuid": "c4d174bb-3dd7-4fe1-b02c-cb59ef7c7c2a", + "name": "PRCXI_BioRad_384_wellplate_well_N9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.58, + "y": 16.44, + "z": 1.05 + }, + "position3d": { + "x": 46.58, + "y": 16.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_8_13_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.58, + "y": 16.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_O9", + "uuid": "d606202c-6ee1-471f-9e9d-cc21498e391f", + "name": "PRCXI_BioRad_384_wellplate_well_O9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.58, + "y": 11.94, + "z": 1.05 + }, + "position3d": { + "x": 46.58, + "y": 11.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_8_14_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.58, + "y": 11.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_P9", + "uuid": "bd6c14c6-31d2-4625-8b20-84ec7486ebcf", + "name": "PRCXI_BioRad_384_wellplate_well_P9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.58, + "y": 7.44, + "z": 1.05 + }, + "position3d": { + "x": 46.58, + "y": 7.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_8_15_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.58, + "y": 7.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_A10", + "uuid": "50bc5368-ebd9-46c3-92ed-9e336c666f27", + "name": "PRCXI_BioRad_384_wellplate_well_A10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 51.08, + "y": 74.94, + "z": 1.05 + }, + "position3d": { + "x": 51.08, + "y": 74.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_9_0_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 51.08, + "y": 74.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_B10", + "uuid": "05c58eab-16cb-4909-a65b-852b4b781ad0", + "name": "PRCXI_BioRad_384_wellplate_well_B10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 51.08, + "y": 70.44, + "z": 1.05 + }, + "position3d": { + "x": 51.08, + "y": 70.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_9_1_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 51.08, + "y": 70.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_C10", + "uuid": "5f4f1ad9-8070-4bfa-821d-4d6d0c5890fe", + "name": "PRCXI_BioRad_384_wellplate_well_C10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 51.08, + "y": 65.94, + "z": 1.05 + }, + "position3d": { + "x": 51.08, + "y": 65.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_9_2_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 51.08, + "y": 65.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_D10", + "uuid": "b7221959-d7fa-4a95-b042-3a263f3f9227", + "name": "PRCXI_BioRad_384_wellplate_well_D10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 51.08, + "y": 61.44, + "z": 1.05 + }, + "position3d": { + "x": 51.08, + "y": 61.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_9_3_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 51.08, + "y": 61.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_E10", + "uuid": "b063f83a-0a6a-47c1-bc79-d559caadd07f", + "name": "PRCXI_BioRad_384_wellplate_well_E10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 51.08, + "y": 56.94, + "z": 1.05 + }, + "position3d": { + "x": 51.08, + "y": 56.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_9_4_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 51.08, + "y": 56.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_F10", + "uuid": "fd411205-fee1-4f9a-a6ba-cfcb89f776d9", + "name": "PRCXI_BioRad_384_wellplate_well_F10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 51.08, + "y": 52.44, + "z": 1.05 + }, + "position3d": { + "x": 51.08, + "y": 52.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_9_5_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 51.08, + "y": 52.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_G10", + "uuid": "336a294e-7cf6-40c8-baa7-e5d683955e3a", + "name": "PRCXI_BioRad_384_wellplate_well_G10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 51.08, + "y": 47.94, + "z": 1.05 + }, + "position3d": { + "x": 51.08, + "y": 47.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_9_6_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 51.08, + "y": 47.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_H10", + "uuid": "8d45ffb3-c604-4f17-a51f-745f675bb2df", + "name": "PRCXI_BioRad_384_wellplate_well_H10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 51.08, + "y": 43.44, + "z": 1.05 + }, + "position3d": { + "x": 51.08, + "y": 43.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_9_7_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 51.08, + "y": 43.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_I10", + "uuid": "d8d9baf4-f6d7-4c5a-b778-f0dc24e2917d", + "name": "PRCXI_BioRad_384_wellplate_well_I10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 51.08, + "y": 38.94, + "z": 1.05 + }, + "position3d": { + "x": 51.08, + "y": 38.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_9_8_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 51.08, + "y": 38.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_J10", + "uuid": "5fff32ef-9a15-4b7b-b2b9-d2c6f1c14f55", + "name": "PRCXI_BioRad_384_wellplate_well_J10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 51.08, + "y": 34.44, + "z": 1.05 + }, + "position3d": { + "x": 51.08, + "y": 34.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_9_9_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 51.08, + "y": 34.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_K10", + "uuid": "b8ab26a0-ce51-495c-8cdd-9b89e85c5323", + "name": "PRCXI_BioRad_384_wellplate_well_K10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 51.08, + "y": 29.94, + "z": 1.05 + }, + "position3d": { + "x": 51.08, + "y": 29.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_9_10_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 51.08, + "y": 29.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_L10", + "uuid": "77800637-3e84-4e74-a180-076fd81268be", + "name": "PRCXI_BioRad_384_wellplate_well_L10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 51.08, + "y": 25.44, + "z": 1.05 + }, + "position3d": { + "x": 51.08, + "y": 25.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_9_11_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 51.08, + "y": 25.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_M10", + "uuid": "73c8e366-073d-4268-a0a8-76439a06e10f", + "name": "PRCXI_BioRad_384_wellplate_well_M10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 51.08, + "y": 20.94, + "z": 1.05 + }, + "position3d": { + "x": 51.08, + "y": 20.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_9_12_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 51.08, + "y": 20.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_N10", + "uuid": "f40e10da-9b95-4d52-8b59-1b1f91491d45", + "name": "PRCXI_BioRad_384_wellplate_well_N10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 51.08, + "y": 16.44, + "z": 1.05 + }, + "position3d": { + "x": 51.08, + "y": 16.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_9_13_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 51.08, + "y": 16.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_O10", + "uuid": "4a4a5fee-95dc-4784-bd27-3517561443da", + "name": "PRCXI_BioRad_384_wellplate_well_O10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 51.08, + "y": 11.94, + "z": 1.05 + }, + "position3d": { + "x": 51.08, + "y": 11.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_9_14_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 51.08, + "y": 11.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_P10", + "uuid": "0371f933-041a-4607-b24b-6e5bfcb0659f", + "name": "PRCXI_BioRad_384_wellplate_well_P10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 51.08, + "y": 7.44, + "z": 1.05 + }, + "position3d": { + "x": 51.08, + "y": 7.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_9_15_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 51.08, + "y": 7.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_A11", + "uuid": "0316d98a-206e-45a0-811b-949a397b3311", + "name": "PRCXI_BioRad_384_wellplate_well_A11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.58, + "y": 74.94, + "z": 1.05 + }, + "position3d": { + "x": 55.58, + "y": 74.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_10_0_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.58, + "y": 74.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_B11", + "uuid": "eb8034bc-8b47-4ab9-8e43-14d4da7da548", + "name": "PRCXI_BioRad_384_wellplate_well_B11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.58, + "y": 70.44, + "z": 1.05 + }, + "position3d": { + "x": 55.58, + "y": 70.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_10_1_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.58, + "y": 70.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_C11", + "uuid": "e2d79a5b-1490-476d-9759-b00969add36c", + "name": "PRCXI_BioRad_384_wellplate_well_C11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.58, + "y": 65.94, + "z": 1.05 + }, + "position3d": { + "x": 55.58, + "y": 65.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_10_2_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.58, + "y": 65.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_D11", + "uuid": "2efad95d-9901-461d-b8d7-147de11635ee", + "name": "PRCXI_BioRad_384_wellplate_well_D11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.58, + "y": 61.44, + "z": 1.05 + }, + "position3d": { + "x": 55.58, + "y": 61.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_10_3_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.58, + "y": 61.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_E11", + "uuid": "44993e8c-6aba-49a7-8243-561ad5a1a24c", + "name": "PRCXI_BioRad_384_wellplate_well_E11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.58, + "y": 56.94, + "z": 1.05 + }, + "position3d": { + "x": 55.58, + "y": 56.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_10_4_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.58, + "y": 56.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_F11", + "uuid": "9e18be26-4909-4228-b478-04c7d0968c5e", + "name": "PRCXI_BioRad_384_wellplate_well_F11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.58, + "y": 52.44, + "z": 1.05 + }, + "position3d": { + "x": 55.58, + "y": 52.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_10_5_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.58, + "y": 52.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_G11", + "uuid": "5f6ec383-fa68-4209-96d7-3d3124be41c2", + "name": "PRCXI_BioRad_384_wellplate_well_G11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.58, + "y": 47.94, + "z": 1.05 + }, + "position3d": { + "x": 55.58, + "y": 47.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_10_6_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.58, + "y": 47.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_H11", + "uuid": "28fb71ac-a059-4710-b52f-b88d3ebfb909", + "name": "PRCXI_BioRad_384_wellplate_well_H11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.58, + "y": 43.44, + "z": 1.05 + }, + "position3d": { + "x": 55.58, + "y": 43.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_10_7_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.58, + "y": 43.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_I11", + "uuid": "8500bde5-4c13-40a7-b1fc-8989087d0640", + "name": "PRCXI_BioRad_384_wellplate_well_I11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.58, + "y": 38.94, + "z": 1.05 + }, + "position3d": { + "x": 55.58, + "y": 38.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_10_8_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.58, + "y": 38.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_J11", + "uuid": "30528f6d-4a81-401f-b841-d0e4e3d86018", + "name": "PRCXI_BioRad_384_wellplate_well_J11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.58, + "y": 34.44, + "z": 1.05 + }, + "position3d": { + "x": 55.58, + "y": 34.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_10_9_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.58, + "y": 34.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_K11", + "uuid": "3638f6c1-217b-4957-b5f4-db1a486278d1", + "name": "PRCXI_BioRad_384_wellplate_well_K11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.58, + "y": 29.94, + "z": 1.05 + }, + "position3d": { + "x": 55.58, + "y": 29.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_10_10_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.58, + "y": 29.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_L11", + "uuid": "1becc3b7-6883-4eb0-b738-da1a8c0af024", + "name": "PRCXI_BioRad_384_wellplate_well_L11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.58, + "y": 25.44, + "z": 1.05 + }, + "position3d": { + "x": 55.58, + "y": 25.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_10_11_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.58, + "y": 25.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_M11", + "uuid": "c6c3aa9a-e78d-4559-a682-4269b007d9d6", + "name": "PRCXI_BioRad_384_wellplate_well_M11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.58, + "y": 20.94, + "z": 1.05 + }, + "position3d": { + "x": 55.58, + "y": 20.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_10_12_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.58, + "y": 20.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_N11", + "uuid": "acf10e24-39aa-4817-bffe-0701454176f8", + "name": "PRCXI_BioRad_384_wellplate_well_N11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.58, + "y": 16.44, + "z": 1.05 + }, + "position3d": { + "x": 55.58, + "y": 16.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_10_13_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.58, + "y": 16.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_O11", + "uuid": "cdd85ced-c673-4257-9991-e6d69a71650a", + "name": "PRCXI_BioRad_384_wellplate_well_O11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.58, + "y": 11.94, + "z": 1.05 + }, + "position3d": { + "x": 55.58, + "y": 11.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_10_14_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.58, + "y": 11.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_P11", + "uuid": "a13b57f0-4938-4897-81b4-5721fdf6d0fa", + "name": "PRCXI_BioRad_384_wellplate_well_P11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.58, + "y": 7.44, + "z": 1.05 + }, + "position3d": { + "x": 55.58, + "y": 7.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_10_15_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.58, + "y": 7.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_A12", + "uuid": "ded57a15-b440-4dfa-b24b-a67481458931", + "name": "PRCXI_BioRad_384_wellplate_well_A12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 60.08, + "y": 74.94, + "z": 1.05 + }, + "position3d": { + "x": 60.08, + "y": 74.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_11_0_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 60.08, + "y": 74.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_B12", + "uuid": "0cdbdab9-0788-40e8-8130-f1355d0ddfc8", + "name": "PRCXI_BioRad_384_wellplate_well_B12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 60.08, + "y": 70.44, + "z": 1.05 + }, + "position3d": { + "x": 60.08, + "y": 70.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_11_1_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 60.08, + "y": 70.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_C12", + "uuid": "98470567-18bb-48ed-9a33-4e81d3976d0e", + "name": "PRCXI_BioRad_384_wellplate_well_C12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 60.08, + "y": 65.94, + "z": 1.05 + }, + "position3d": { + "x": 60.08, + "y": 65.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_11_2_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 60.08, + "y": 65.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_D12", + "uuid": "957b49be-ced4-4f2a-9b8a-9c11238347fb", + "name": "PRCXI_BioRad_384_wellplate_well_D12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 60.08, + "y": 61.44, + "z": 1.05 + }, + "position3d": { + "x": 60.08, + "y": 61.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_11_3_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 60.08, + "y": 61.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_E12", + "uuid": "74160f1b-1207-40dd-8d4f-e9668bb2fdff", + "name": "PRCXI_BioRad_384_wellplate_well_E12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 60.08, + "y": 56.94, + "z": 1.05 + }, + "position3d": { + "x": 60.08, + "y": 56.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_11_4_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 60.08, + "y": 56.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_F12", + "uuid": "dfb00a98-ae60-4817-80ea-6d775b14861d", + "name": "PRCXI_BioRad_384_wellplate_well_F12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 60.08, + "y": 52.44, + "z": 1.05 + }, + "position3d": { + "x": 60.08, + "y": 52.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_11_5_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 60.08, + "y": 52.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_G12", + "uuid": "1e17d4f0-3f80-416b-9d9e-c1e8f9919a01", + "name": "PRCXI_BioRad_384_wellplate_well_G12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 60.08, + "y": 47.94, + "z": 1.05 + }, + "position3d": { + "x": 60.08, + "y": 47.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_11_6_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 60.08, + "y": 47.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_H12", + "uuid": "20f98c1d-2a1d-490d-b734-d173866e948f", + "name": "PRCXI_BioRad_384_wellplate_well_H12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 60.08, + "y": 43.44, + "z": 1.05 + }, + "position3d": { + "x": 60.08, + "y": 43.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_11_7_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 60.08, + "y": 43.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_I12", + "uuid": "c9edc02b-6e9a-4317-9861-7649c7f53b42", + "name": "PRCXI_BioRad_384_wellplate_well_I12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 60.08, + "y": 38.94, + "z": 1.05 + }, + "position3d": { + "x": 60.08, + "y": 38.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_11_8_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 60.08, + "y": 38.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_J12", + "uuid": "76aa3949-0bba-496d-b200-0a9252e45150", + "name": "PRCXI_BioRad_384_wellplate_well_J12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 60.08, + "y": 34.44, + "z": 1.05 + }, + "position3d": { + "x": 60.08, + "y": 34.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_11_9_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 60.08, + "y": 34.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_K12", + "uuid": "5cc5a9fe-b550-43f9-b8a3-3a23a703d45c", + "name": "PRCXI_BioRad_384_wellplate_well_K12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 60.08, + "y": 29.94, + "z": 1.05 + }, + "position3d": { + "x": 60.08, + "y": 29.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_11_10_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 60.08, + "y": 29.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_L12", + "uuid": "4e7e3aba-006f-4f6e-86ea-03c490b03589", + "name": "PRCXI_BioRad_384_wellplate_well_L12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 60.08, + "y": 25.44, + "z": 1.05 + }, + "position3d": { + "x": 60.08, + "y": 25.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_11_11_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 60.08, + "y": 25.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_M12", + "uuid": "be62c30e-0fb3-4b5a-add1-c1d137a6fece", + "name": "PRCXI_BioRad_384_wellplate_well_M12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 60.08, + "y": 20.94, + "z": 1.05 + }, + "position3d": { + "x": 60.08, + "y": 20.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_11_12_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 60.08, + "y": 20.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_N12", + "uuid": "0ce85e1a-d024-483b-8931-c592cda31fbb", + "name": "PRCXI_BioRad_384_wellplate_well_N12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 60.08, + "y": 16.44, + "z": 1.05 + }, + "position3d": { + "x": 60.08, + "y": 16.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_11_13_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 60.08, + "y": 16.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_O12", + "uuid": "1a558c15-bdd1-46e7-a4d3-15844e33f536", + "name": "PRCXI_BioRad_384_wellplate_well_O12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 60.08, + "y": 11.94, + "z": 1.05 + }, + "position3d": { + "x": 60.08, + "y": 11.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_11_14_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 60.08, + "y": 11.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_P12", + "uuid": "a5a30b11-571d-4a88-9994-e90445729927", + "name": "PRCXI_BioRad_384_wellplate_well_P12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 60.08, + "y": 7.44, + "z": 1.05 + }, + "position3d": { + "x": 60.08, + "y": 7.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_11_15_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 60.08, + "y": 7.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_A13", + "uuid": "978177f4-7b75-4783-b9be-647c2c6efb6b", + "name": "PRCXI_BioRad_384_wellplate_well_A13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.58, + "y": 74.94, + "z": 1.05 + }, + "position3d": { + "x": 64.58, + "y": 74.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_12_0_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.58, + "y": 74.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_B13", + "uuid": "2d4b130b-48aa-4749-ae8e-cdde8bb7d9e8", + "name": "PRCXI_BioRad_384_wellplate_well_B13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.58, + "y": 70.44, + "z": 1.05 + }, + "position3d": { + "x": 64.58, + "y": 70.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_12_1_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.58, + "y": 70.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_C13", + "uuid": "85c7f1d4-b73d-4cd0-afb8-c94f8674181f", + "name": "PRCXI_BioRad_384_wellplate_well_C13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.58, + "y": 65.94, + "z": 1.05 + }, + "position3d": { + "x": 64.58, + "y": 65.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_12_2_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.58, + "y": 65.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_D13", + "uuid": "b6e4dec9-82f0-47c4-a7be-d8f3c0415629", + "name": "PRCXI_BioRad_384_wellplate_well_D13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.58, + "y": 61.44, + "z": 1.05 + }, + "position3d": { + "x": 64.58, + "y": 61.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_12_3_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.58, + "y": 61.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_E13", + "uuid": "2bb90941-1a2a-46ce-8e29-1ef741f376cb", + "name": "PRCXI_BioRad_384_wellplate_well_E13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.58, + "y": 56.94, + "z": 1.05 + }, + "position3d": { + "x": 64.58, + "y": 56.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_12_4_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.58, + "y": 56.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_F13", + "uuid": "2285d2ce-a758-4393-afab-a75a043fe828", + "name": "PRCXI_BioRad_384_wellplate_well_F13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.58, + "y": 52.44, + "z": 1.05 + }, + "position3d": { + "x": 64.58, + "y": 52.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_12_5_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.58, + "y": 52.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_G13", + "uuid": "1340cdc9-cd93-409d-a633-e529e520f5b8", + "name": "PRCXI_BioRad_384_wellplate_well_G13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.58, + "y": 47.94, + "z": 1.05 + }, + "position3d": { + "x": 64.58, + "y": 47.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_12_6_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.58, + "y": 47.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_H13", + "uuid": "9c3fca2e-dc2b-4454-bbc5-66bfb1e65802", + "name": "PRCXI_BioRad_384_wellplate_well_H13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.58, + "y": 43.44, + "z": 1.05 + }, + "position3d": { + "x": 64.58, + "y": 43.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_12_7_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.58, + "y": 43.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_I13", + "uuid": "cc03b1ef-d1cd-43a6-b63e-94f5e4261bd3", + "name": "PRCXI_BioRad_384_wellplate_well_I13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.58, + "y": 38.94, + "z": 1.05 + }, + "position3d": { + "x": 64.58, + "y": 38.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_12_8_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.58, + "y": 38.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_J13", + "uuid": "be37fd22-a898-41ac-960d-1809cdfd831f", + "name": "PRCXI_BioRad_384_wellplate_well_J13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.58, + "y": 34.44, + "z": 1.05 + }, + "position3d": { + "x": 64.58, + "y": 34.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_12_9_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.58, + "y": 34.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_K13", + "uuid": "211d7bab-a4a8-4ab8-8043-07c818823632", + "name": "PRCXI_BioRad_384_wellplate_well_K13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.58, + "y": 29.94, + "z": 1.05 + }, + "position3d": { + "x": 64.58, + "y": 29.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_12_10_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.58, + "y": 29.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_L13", + "uuid": "bcc95bb9-6c41-4999-a1f6-a4fd10ad21ce", + "name": "PRCXI_BioRad_384_wellplate_well_L13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.58, + "y": 25.44, + "z": 1.05 + }, + "position3d": { + "x": 64.58, + "y": 25.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_12_11_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.58, + "y": 25.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_M13", + "uuid": "c6e535db-9da3-4027-834f-567ec58be919", + "name": "PRCXI_BioRad_384_wellplate_well_M13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.58, + "y": 20.94, + "z": 1.05 + }, + "position3d": { + "x": 64.58, + "y": 20.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_12_12_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.58, + "y": 20.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_N13", + "uuid": "8a456e6d-3802-484e-a00c-9061800c1a29", + "name": "PRCXI_BioRad_384_wellplate_well_N13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.58, + "y": 16.44, + "z": 1.05 + }, + "position3d": { + "x": 64.58, + "y": 16.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_12_13_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.58, + "y": 16.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_O13", + "uuid": "1eba2bde-d403-4c5d-bc14-b8824cdf6580", + "name": "PRCXI_BioRad_384_wellplate_well_O13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.58, + "y": 11.94, + "z": 1.05 + }, + "position3d": { + "x": 64.58, + "y": 11.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_12_14_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.58, + "y": 11.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_P13", + "uuid": "d630e33b-5602-4cf9-af19-64ecf3fe3f8c", + "name": "PRCXI_BioRad_384_wellplate_well_P13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.58, + "y": 7.44, + "z": 1.05 + }, + "position3d": { + "x": 64.58, + "y": 7.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_12_15_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.58, + "y": 7.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_A14", + "uuid": "cc0d43d9-00fb-4ae5-a1df-fe1bc348590f", + "name": "PRCXI_BioRad_384_wellplate_well_A14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 69.08, + "y": 74.94, + "z": 1.05 + }, + "position3d": { + "x": 69.08, + "y": 74.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_13_0_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 69.08, + "y": 74.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_B14", + "uuid": "72147a61-0e55-4884-ab71-1c0c58d7dab0", + "name": "PRCXI_BioRad_384_wellplate_well_B14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 69.08, + "y": 70.44, + "z": 1.05 + }, + "position3d": { + "x": 69.08, + "y": 70.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_13_1_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 69.08, + "y": 70.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_C14", + "uuid": "5c4f6314-801b-447d-951b-433c523c6f5f", + "name": "PRCXI_BioRad_384_wellplate_well_C14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 69.08, + "y": 65.94, + "z": 1.05 + }, + "position3d": { + "x": 69.08, + "y": 65.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_13_2_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 69.08, + "y": 65.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_D14", + "uuid": "897732a0-4194-4e10-b548-21ba35e5e642", + "name": "PRCXI_BioRad_384_wellplate_well_D14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 69.08, + "y": 61.44, + "z": 1.05 + }, + "position3d": { + "x": 69.08, + "y": 61.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_13_3_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 69.08, + "y": 61.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_E14", + "uuid": "219625c1-481e-46cb-ad43-ed2917771317", + "name": "PRCXI_BioRad_384_wellplate_well_E14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 69.08, + "y": 56.94, + "z": 1.05 + }, + "position3d": { + "x": 69.08, + "y": 56.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_13_4_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 69.08, + "y": 56.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_F14", + "uuid": "5d5d8a86-d83e-4730-b9c3-5859ea6bf09c", + "name": "PRCXI_BioRad_384_wellplate_well_F14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 69.08, + "y": 52.44, + "z": 1.05 + }, + "position3d": { + "x": 69.08, + "y": 52.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_13_5_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 69.08, + "y": 52.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_G14", + "uuid": "ff11042d-d12b-4460-98f8-62ad53248cef", + "name": "PRCXI_BioRad_384_wellplate_well_G14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 69.08, + "y": 47.94, + "z": 1.05 + }, + "position3d": { + "x": 69.08, + "y": 47.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_13_6_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 69.08, + "y": 47.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_H14", + "uuid": "60d5a9ea-d5d0-48f9-a2b2-0c7097debc9f", + "name": "PRCXI_BioRad_384_wellplate_well_H14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 69.08, + "y": 43.44, + "z": 1.05 + }, + "position3d": { + "x": 69.08, + "y": 43.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_13_7_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 69.08, + "y": 43.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_I14", + "uuid": "36582b1a-8f72-4ef0-a565-b777caa176ed", + "name": "PRCXI_BioRad_384_wellplate_well_I14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 69.08, + "y": 38.94, + "z": 1.05 + }, + "position3d": { + "x": 69.08, + "y": 38.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_13_8_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 69.08, + "y": 38.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_J14", + "uuid": "e95008f3-b19a-455f-8d9a-d513c7242725", + "name": "PRCXI_BioRad_384_wellplate_well_J14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 69.08, + "y": 34.44, + "z": 1.05 + }, + "position3d": { + "x": 69.08, + "y": 34.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_13_9_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 69.08, + "y": 34.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_K14", + "uuid": "e2388b51-6e7a-4c49-9b2b-13ddb823ebec", + "name": "PRCXI_BioRad_384_wellplate_well_K14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 69.08, + "y": 29.94, + "z": 1.05 + }, + "position3d": { + "x": 69.08, + "y": 29.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_13_10_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 69.08, + "y": 29.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_L14", + "uuid": "b169eb6d-2cee-4883-a97e-e4c798cf639f", + "name": "PRCXI_BioRad_384_wellplate_well_L14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 69.08, + "y": 25.44, + "z": 1.05 + }, + "position3d": { + "x": 69.08, + "y": 25.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_13_11_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 69.08, + "y": 25.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_M14", + "uuid": "6c953a0c-aeb8-40c8-8ae7-3a0243ff46bc", + "name": "PRCXI_BioRad_384_wellplate_well_M14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 69.08, + "y": 20.94, + "z": 1.05 + }, + "position3d": { + "x": 69.08, + "y": 20.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_13_12_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 69.08, + "y": 20.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_N14", + "uuid": "02b835f4-5e5c-4844-86be-0261539786fc", + "name": "PRCXI_BioRad_384_wellplate_well_N14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 69.08, + "y": 16.44, + "z": 1.05 + }, + "position3d": { + "x": 69.08, + "y": 16.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_13_13_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 69.08, + "y": 16.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_O14", + "uuid": "7af2fb28-7b6a-4b32-a041-82f82ee3fd53", + "name": "PRCXI_BioRad_384_wellplate_well_O14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 69.08, + "y": 11.94, + "z": 1.05 + }, + "position3d": { + "x": 69.08, + "y": 11.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_13_14_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 69.08, + "y": 11.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_P14", + "uuid": "9dd8e00c-d6ab-485f-8ac7-9965079431ab", + "name": "PRCXI_BioRad_384_wellplate_well_P14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 69.08, + "y": 7.44, + "z": 1.05 + }, + "position3d": { + "x": 69.08, + "y": 7.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_13_15_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 69.08, + "y": 7.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_A15", + "uuid": "d7355598-f92f-4b8d-a802-098082fac30e", + "name": "PRCXI_BioRad_384_wellplate_well_A15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.58, + "y": 74.94, + "z": 1.05 + }, + "position3d": { + "x": 73.58, + "y": 74.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_14_0_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.58, + "y": 74.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_B15", + "uuid": "38f41e03-8de8-4c7b-8176-1cedb1ed0368", + "name": "PRCXI_BioRad_384_wellplate_well_B15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.58, + "y": 70.44, + "z": 1.05 + }, + "position3d": { + "x": 73.58, + "y": 70.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_14_1_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.58, + "y": 70.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_C15", + "uuid": "1b3decf4-dca7-46b5-a248-1f6253548fa3", + "name": "PRCXI_BioRad_384_wellplate_well_C15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.58, + "y": 65.94, + "z": 1.05 + }, + "position3d": { + "x": 73.58, + "y": 65.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_14_2_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.58, + "y": 65.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_D15", + "uuid": "4f57b38a-8c68-489c-aa22-7d0a46ac2b59", + "name": "PRCXI_BioRad_384_wellplate_well_D15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.58, + "y": 61.44, + "z": 1.05 + }, + "position3d": { + "x": 73.58, + "y": 61.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_14_3_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.58, + "y": 61.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_E15", + "uuid": "d87ca248-e4ef-4bcd-8cf4-dfc2e1c7b747", + "name": "PRCXI_BioRad_384_wellplate_well_E15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.58, + "y": 56.94, + "z": 1.05 + }, + "position3d": { + "x": 73.58, + "y": 56.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_14_4_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.58, + "y": 56.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_F15", + "uuid": "f7b14939-4848-43ff-bf12-afb1a8c892d0", + "name": "PRCXI_BioRad_384_wellplate_well_F15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.58, + "y": 52.44, + "z": 1.05 + }, + "position3d": { + "x": 73.58, + "y": 52.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_14_5_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.58, + "y": 52.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_G15", + "uuid": "849e68eb-00aa-4afe-b1a7-6a5282d7e268", + "name": "PRCXI_BioRad_384_wellplate_well_G15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.58, + "y": 47.94, + "z": 1.05 + }, + "position3d": { + "x": 73.58, + "y": 47.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_14_6_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.58, + "y": 47.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_H15", + "uuid": "cdc27e9c-f305-40ae-a848-7f9de7905507", + "name": "PRCXI_BioRad_384_wellplate_well_H15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.58, + "y": 43.44, + "z": 1.05 + }, + "position3d": { + "x": 73.58, + "y": 43.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_14_7_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.58, + "y": 43.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_I15", + "uuid": "f963db52-551d-4a06-9a23-f899e5624667", + "name": "PRCXI_BioRad_384_wellplate_well_I15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.58, + "y": 38.94, + "z": 1.05 + }, + "position3d": { + "x": 73.58, + "y": 38.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_14_8_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.58, + "y": 38.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_J15", + "uuid": "72fb6ba7-814b-4ad7-9833-c28ae09bd9ec", + "name": "PRCXI_BioRad_384_wellplate_well_J15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.58, + "y": 34.44, + "z": 1.05 + }, + "position3d": { + "x": 73.58, + "y": 34.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_14_9_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.58, + "y": 34.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_K15", + "uuid": "2691cf07-63e7-49a9-b236-2c0f978aa6ef", + "name": "PRCXI_BioRad_384_wellplate_well_K15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.58, + "y": 29.94, + "z": 1.05 + }, + "position3d": { + "x": 73.58, + "y": 29.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_14_10_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.58, + "y": 29.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_L15", + "uuid": "5932766b-0403-4604-9f5b-49d66493859a", + "name": "PRCXI_BioRad_384_wellplate_well_L15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.58, + "y": 25.44, + "z": 1.05 + }, + "position3d": { + "x": 73.58, + "y": 25.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_14_11_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.58, + "y": 25.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_M15", + "uuid": "572f8c5a-ea15-4f4b-b4f7-2c0ddeab9bc1", + "name": "PRCXI_BioRad_384_wellplate_well_M15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.58, + "y": 20.94, + "z": 1.05 + }, + "position3d": { + "x": 73.58, + "y": 20.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_14_12_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.58, + "y": 20.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_N15", + "uuid": "3de43155-db6d-43dd-84de-00c85466ec48", + "name": "PRCXI_BioRad_384_wellplate_well_N15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.58, + "y": 16.44, + "z": 1.05 + }, + "position3d": { + "x": 73.58, + "y": 16.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_14_13_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.58, + "y": 16.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_O15", + "uuid": "7e96587a-03cc-492a-841c-5985d02bb1a4", + "name": "PRCXI_BioRad_384_wellplate_well_O15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.58, + "y": 11.94, + "z": 1.05 + }, + "position3d": { + "x": 73.58, + "y": 11.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_14_14_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.58, + "y": 11.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_P15", + "uuid": "b241116b-3c15-44b1-84b2-9d677f081364", + "name": "PRCXI_BioRad_384_wellplate_well_P15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.58, + "y": 7.44, + "z": 1.05 + }, + "position3d": { + "x": 73.58, + "y": 7.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_14_15_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.58, + "y": 7.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_A16", + "uuid": "f4df6de7-2722-4c6a-a585-6a1f942be613", + "name": "PRCXI_BioRad_384_wellplate_well_A16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 78.08, + "y": 74.94, + "z": 1.05 + }, + "position3d": { + "x": 78.08, + "y": 74.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_15_0_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 78.08, + "y": 74.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_B16", + "uuid": "d0934c30-f964-4e1b-8c07-191a50691f12", + "name": "PRCXI_BioRad_384_wellplate_well_B16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 78.08, + "y": 70.44, + "z": 1.05 + }, + "position3d": { + "x": 78.08, + "y": 70.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_15_1_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 78.08, + "y": 70.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_C16", + "uuid": "100a0d61-00f9-4392-b13a-d3719a7a2586", + "name": "PRCXI_BioRad_384_wellplate_well_C16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 78.08, + "y": 65.94, + "z": 1.05 + }, + "position3d": { + "x": 78.08, + "y": 65.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_15_2_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 78.08, + "y": 65.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_D16", + "uuid": "93c2f49f-f5f2-43c3-ad54-7fab3b02e867", + "name": "PRCXI_BioRad_384_wellplate_well_D16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 78.08, + "y": 61.44, + "z": 1.05 + }, + "position3d": { + "x": 78.08, + "y": 61.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_15_3_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 78.08, + "y": 61.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_E16", + "uuid": "ec196fdd-195e-4bff-996a-8f94d57f10a8", + "name": "PRCXI_BioRad_384_wellplate_well_E16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 78.08, + "y": 56.94, + "z": 1.05 + }, + "position3d": { + "x": 78.08, + "y": 56.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_15_4_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 78.08, + "y": 56.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_F16", + "uuid": "a9a0ec6f-71b5-4d94-9032-5d57da5472c6", + "name": "PRCXI_BioRad_384_wellplate_well_F16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 78.08, + "y": 52.44, + "z": 1.05 + }, + "position3d": { + "x": 78.08, + "y": 52.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_15_5_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 78.08, + "y": 52.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_G16", + "uuid": "a4f4e725-0fbe-456f-bc9a-8cd45df29324", + "name": "PRCXI_BioRad_384_wellplate_well_G16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 78.08, + "y": 47.94, + "z": 1.05 + }, + "position3d": { + "x": 78.08, + "y": 47.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_15_6_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 78.08, + "y": 47.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_H16", + "uuid": "06e58f17-b9c9-43d0-bbea-e4477cb6e58b", + "name": "PRCXI_BioRad_384_wellplate_well_H16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 78.08, + "y": 43.44, + "z": 1.05 + }, + "position3d": { + "x": 78.08, + "y": 43.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_15_7_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 78.08, + "y": 43.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_I16", + "uuid": "9f9f39bb-053f-4722-8d6d-740132b80f97", + "name": "PRCXI_BioRad_384_wellplate_well_I16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 78.08, + "y": 38.94, + "z": 1.05 + }, + "position3d": { + "x": 78.08, + "y": 38.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_15_8_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 78.08, + "y": 38.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_J16", + "uuid": "79fad518-0e2b-49f2-b745-0214cda8e158", + "name": "PRCXI_BioRad_384_wellplate_well_J16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 78.08, + "y": 34.44, + "z": 1.05 + }, + "position3d": { + "x": 78.08, + "y": 34.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_15_9_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 78.08, + "y": 34.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_K16", + "uuid": "025ba837-6479-40c3-a3e8-a09262614a16", + "name": "PRCXI_BioRad_384_wellplate_well_K16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 78.08, + "y": 29.94, + "z": 1.05 + }, + "position3d": { + "x": 78.08, + "y": 29.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_15_10_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 78.08, + "y": 29.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_L16", + "uuid": "7bae6ce8-8a2f-4c4e-8807-b409db6e83ef", + "name": "PRCXI_BioRad_384_wellplate_well_L16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 78.08, + "y": 25.44, + "z": 1.05 + }, + "position3d": { + "x": 78.08, + "y": 25.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_15_11_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 78.08, + "y": 25.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_M16", + "uuid": "bf688e98-5bc5-46d4-85b5-7ab4d0d16868", + "name": "PRCXI_BioRad_384_wellplate_well_M16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 78.08, + "y": 20.94, + "z": 1.05 + }, + "position3d": { + "x": 78.08, + "y": 20.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_15_12_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 78.08, + "y": 20.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_N16", + "uuid": "21045365-2451-4c7c-81fd-31a01b13804e", + "name": "PRCXI_BioRad_384_wellplate_well_N16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 78.08, + "y": 16.44, + "z": 1.05 + }, + "position3d": { + "x": 78.08, + "y": 16.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_15_13_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 78.08, + "y": 16.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_O16", + "uuid": "0352351e-3535-4076-9627-7333c2c419b2", + "name": "PRCXI_BioRad_384_wellplate_well_O16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 78.08, + "y": 11.94, + "z": 1.05 + }, + "position3d": { + "x": 78.08, + "y": 11.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_15_14_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 78.08, + "y": 11.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_P16", + "uuid": "08d4f103-d83f-4e50-b3a5-4e3118d89ef2", + "name": "PRCXI_BioRad_384_wellplate_well_P16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 78.08, + "y": 7.44, + "z": 1.05 + }, + "position3d": { + "x": 78.08, + "y": 7.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_15_15_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 78.08, + "y": 7.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_A17", + "uuid": "7bb5764c-3a86-4cbe-8031-3f7aae0b69f2", + "name": "PRCXI_BioRad_384_wellplate_well_A17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.58, + "y": 74.94, + "z": 1.05 + }, + "position3d": { + "x": 82.58, + "y": 74.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_16_0_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.58, + "y": 74.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_B17", + "uuid": "0f6944b5-aecd-478e-ac0b-9e387dccc02f", + "name": "PRCXI_BioRad_384_wellplate_well_B17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.58, + "y": 70.44, + "z": 1.05 + }, + "position3d": { + "x": 82.58, + "y": 70.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_16_1_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.58, + "y": 70.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_C17", + "uuid": "a705a43c-3d3a-49ea-8709-c2c923b9157a", + "name": "PRCXI_BioRad_384_wellplate_well_C17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.58, + "y": 65.94, + "z": 1.05 + }, + "position3d": { + "x": 82.58, + "y": 65.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_16_2_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.58, + "y": 65.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_D17", + "uuid": "f53ea36e-e69c-4631-9d6f-94ffbea05cb1", + "name": "PRCXI_BioRad_384_wellplate_well_D17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.58, + "y": 61.44, + "z": 1.05 + }, + "position3d": { + "x": 82.58, + "y": 61.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_16_3_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.58, + "y": 61.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_E17", + "uuid": "82f7a173-fc59-4478-9515-1b0dc00191ca", + "name": "PRCXI_BioRad_384_wellplate_well_E17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.58, + "y": 56.94, + "z": 1.05 + }, + "position3d": { + "x": 82.58, + "y": 56.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_16_4_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.58, + "y": 56.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_F17", + "uuid": "d9f15d87-1601-4f8c-b7d3-b5b7230a6276", + "name": "PRCXI_BioRad_384_wellplate_well_F17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.58, + "y": 52.44, + "z": 1.05 + }, + "position3d": { + "x": 82.58, + "y": 52.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_16_5_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.58, + "y": 52.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_G17", + "uuid": "cbfa3ecb-03f7-4cbd-9d31-4e4c239779d3", + "name": "PRCXI_BioRad_384_wellplate_well_G17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.58, + "y": 47.94, + "z": 1.05 + }, + "position3d": { + "x": 82.58, + "y": 47.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_16_6_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.58, + "y": 47.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_H17", + "uuid": "94d13a5d-64b6-4e60-b4ef-395825497c25", + "name": "PRCXI_BioRad_384_wellplate_well_H17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.58, + "y": 43.44, + "z": 1.05 + }, + "position3d": { + "x": 82.58, + "y": 43.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_16_7_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.58, + "y": 43.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_I17", + "uuid": "aecf5710-0038-47f1-861c-8c3e48b22ebc", + "name": "PRCXI_BioRad_384_wellplate_well_I17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.58, + "y": 38.94, + "z": 1.05 + }, + "position3d": { + "x": 82.58, + "y": 38.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_16_8_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.58, + "y": 38.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_J17", + "uuid": "39d62026-c8ed-4bea-9af8-2e8ace231cd9", + "name": "PRCXI_BioRad_384_wellplate_well_J17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.58, + "y": 34.44, + "z": 1.05 + }, + "position3d": { + "x": 82.58, + "y": 34.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_16_9_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.58, + "y": 34.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_K17", + "uuid": "e7804899-a69b-46b2-bc8f-d5570bb1e1fc", + "name": "PRCXI_BioRad_384_wellplate_well_K17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.58, + "y": 29.94, + "z": 1.05 + }, + "position3d": { + "x": 82.58, + "y": 29.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_16_10_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.58, + "y": 29.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_L17", + "uuid": "248c2dfd-eef8-476b-884c-ed28adefc23a", + "name": "PRCXI_BioRad_384_wellplate_well_L17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.58, + "y": 25.44, + "z": 1.05 + }, + "position3d": { + "x": 82.58, + "y": 25.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_16_11_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.58, + "y": 25.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_M17", + "uuid": "531d6836-6a2b-4076-9209-70095ff8c405", + "name": "PRCXI_BioRad_384_wellplate_well_M17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.58, + "y": 20.94, + "z": 1.05 + }, + "position3d": { + "x": 82.58, + "y": 20.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_16_12_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.58, + "y": 20.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_N17", + "uuid": "517a3a0d-68fe-4952-962a-12cdf8d51c1c", + "name": "PRCXI_BioRad_384_wellplate_well_N17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.58, + "y": 16.44, + "z": 1.05 + }, + "position3d": { + "x": 82.58, + "y": 16.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_16_13_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.58, + "y": 16.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_O17", + "uuid": "2382614a-88bf-4f1d-b3a4-656821809787", + "name": "PRCXI_BioRad_384_wellplate_well_O17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.58, + "y": 11.94, + "z": 1.05 + }, + "position3d": { + "x": 82.58, + "y": 11.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_16_14_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.58, + "y": 11.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_P17", + "uuid": "c04d1a9d-00a8-44c5-8fe6-ca421c8999f6", + "name": "PRCXI_BioRad_384_wellplate_well_P17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.58, + "y": 7.44, + "z": 1.05 + }, + "position3d": { + "x": 82.58, + "y": 7.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_16_15_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.58, + "y": 7.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_A18", + "uuid": "b54bc8e9-d72c-4ef2-b6a3-6282a441dfd0", + "name": "PRCXI_BioRad_384_wellplate_well_A18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 87.08, + "y": 74.94, + "z": 1.05 + }, + "position3d": { + "x": 87.08, + "y": 74.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_17_0_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 87.08, + "y": 74.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_B18", + "uuid": "2487ed1a-e71d-4212-918f-3ef239e1e4af", + "name": "PRCXI_BioRad_384_wellplate_well_B18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 87.08, + "y": 70.44, + "z": 1.05 + }, + "position3d": { + "x": 87.08, + "y": 70.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_17_1_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 87.08, + "y": 70.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_C18", + "uuid": "4f10e52f-6a37-4dfe-9303-6d35fd988f79", + "name": "PRCXI_BioRad_384_wellplate_well_C18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 87.08, + "y": 65.94, + "z": 1.05 + }, + "position3d": { + "x": 87.08, + "y": 65.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_17_2_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 87.08, + "y": 65.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_D18", + "uuid": "f7cce859-f634-4f09-869a-52a80820e313", + "name": "PRCXI_BioRad_384_wellplate_well_D18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 87.08, + "y": 61.44, + "z": 1.05 + }, + "position3d": { + "x": 87.08, + "y": 61.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_17_3_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 87.08, + "y": 61.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_E18", + "uuid": "af2f1561-cd01-4512-9158-4d5f9f36afc4", + "name": "PRCXI_BioRad_384_wellplate_well_E18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 87.08, + "y": 56.94, + "z": 1.05 + }, + "position3d": { + "x": 87.08, + "y": 56.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_17_4_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 87.08, + "y": 56.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_F18", + "uuid": "8d2a6deb-b240-4056-8366-c233f003f6a5", + "name": "PRCXI_BioRad_384_wellplate_well_F18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 87.08, + "y": 52.44, + "z": 1.05 + }, + "position3d": { + "x": 87.08, + "y": 52.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_17_5_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 87.08, + "y": 52.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_G18", + "uuid": "b192a3d5-6ffb-4791-a0c1-dfa26dccd062", + "name": "PRCXI_BioRad_384_wellplate_well_G18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 87.08, + "y": 47.94, + "z": 1.05 + }, + "position3d": { + "x": 87.08, + "y": 47.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_17_6_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 87.08, + "y": 47.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_H18", + "uuid": "58794396-b826-4961-9be2-3dbfa86be30d", + "name": "PRCXI_BioRad_384_wellplate_well_H18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 87.08, + "y": 43.44, + "z": 1.05 + }, + "position3d": { + "x": 87.08, + "y": 43.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_17_7_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 87.08, + "y": 43.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_I18", + "uuid": "f153b641-615e-41b1-92d5-3151ce5b9d82", + "name": "PRCXI_BioRad_384_wellplate_well_I18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 87.08, + "y": 38.94, + "z": 1.05 + }, + "position3d": { + "x": 87.08, + "y": 38.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_17_8_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 87.08, + "y": 38.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_J18", + "uuid": "15c4a9f8-10ba-492d-8ad1-4a6140d75f17", + "name": "PRCXI_BioRad_384_wellplate_well_J18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 87.08, + "y": 34.44, + "z": 1.05 + }, + "position3d": { + "x": 87.08, + "y": 34.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_17_9_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 87.08, + "y": 34.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_K18", + "uuid": "5799795d-5572-45b5-9a7d-7d40edd6efda", + "name": "PRCXI_BioRad_384_wellplate_well_K18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 87.08, + "y": 29.94, + "z": 1.05 + }, + "position3d": { + "x": 87.08, + "y": 29.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_17_10_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 87.08, + "y": 29.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_L18", + "uuid": "90a64beb-b54b-46bf-b1a8-4bec6f0b7da0", + "name": "PRCXI_BioRad_384_wellplate_well_L18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 87.08, + "y": 25.44, + "z": 1.05 + }, + "position3d": { + "x": 87.08, + "y": 25.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_17_11_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 87.08, + "y": 25.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_M18", + "uuid": "d8d0e6c6-93e1-4570-b9d4-4846d4faab04", + "name": "PRCXI_BioRad_384_wellplate_well_M18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 87.08, + "y": 20.94, + "z": 1.05 + }, + "position3d": { + "x": 87.08, + "y": 20.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_17_12_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 87.08, + "y": 20.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_N18", + "uuid": "acf18645-c02e-4ff8-9437-21e567938f0a", + "name": "PRCXI_BioRad_384_wellplate_well_N18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 87.08, + "y": 16.44, + "z": 1.05 + }, + "position3d": { + "x": 87.08, + "y": 16.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_17_13_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 87.08, + "y": 16.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_O18", + "uuid": "e2c48b92-4d63-4762-9f42-b5eaf4988603", + "name": "PRCXI_BioRad_384_wellplate_well_O18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 87.08, + "y": 11.94, + "z": 1.05 + }, + "position3d": { + "x": 87.08, + "y": 11.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_17_14_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 87.08, + "y": 11.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_P18", + "uuid": "f75d0c46-dd2e-4225-b519-08e4d809f369", + "name": "PRCXI_BioRad_384_wellplate_well_P18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 87.08, + "y": 7.44, + "z": 1.05 + }, + "position3d": { + "x": 87.08, + "y": 7.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_17_15_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 87.08, + "y": 7.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_A19", + "uuid": "70169583-2223-4e4b-94bd-48788ab80075", + "name": "PRCXI_BioRad_384_wellplate_well_A19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.58, + "y": 74.94, + "z": 1.05 + }, + "position3d": { + "x": 91.58, + "y": 74.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_18_0_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.58, + "y": 74.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_B19", + "uuid": "d715fba6-0bf1-49c1-8aff-82d50a19ab75", + "name": "PRCXI_BioRad_384_wellplate_well_B19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.58, + "y": 70.44, + "z": 1.05 + }, + "position3d": { + "x": 91.58, + "y": 70.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_18_1_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.58, + "y": 70.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_C19", + "uuid": "814626c4-28d5-4717-8eb6-9b499eb6bcf6", + "name": "PRCXI_BioRad_384_wellplate_well_C19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.58, + "y": 65.94, + "z": 1.05 + }, + "position3d": { + "x": 91.58, + "y": 65.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_18_2_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.58, + "y": 65.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_D19", + "uuid": "13905d78-3f5b-43be-9faf-300872e8d3bb", + "name": "PRCXI_BioRad_384_wellplate_well_D19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.58, + "y": 61.44, + "z": 1.05 + }, + "position3d": { + "x": 91.58, + "y": 61.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_18_3_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.58, + "y": 61.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_E19", + "uuid": "9f0b656d-f982-41e0-850e-bd4c4632bc19", + "name": "PRCXI_BioRad_384_wellplate_well_E19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.58, + "y": 56.94, + "z": 1.05 + }, + "position3d": { + "x": 91.58, + "y": 56.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_18_4_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.58, + "y": 56.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_F19", + "uuid": "bbb3f027-c224-4eb8-9964-64ff8e7ac0e7", + "name": "PRCXI_BioRad_384_wellplate_well_F19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.58, + "y": 52.44, + "z": 1.05 + }, + "position3d": { + "x": 91.58, + "y": 52.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_18_5_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.58, + "y": 52.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_G19", + "uuid": "d425a103-816c-41c1-afa2-0f254be70496", + "name": "PRCXI_BioRad_384_wellplate_well_G19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.58, + "y": 47.94, + "z": 1.05 + }, + "position3d": { + "x": 91.58, + "y": 47.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_18_6_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.58, + "y": 47.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_H19", + "uuid": "bc5b3acc-cbb9-4c56-9393-686f94ca6cf1", + "name": "PRCXI_BioRad_384_wellplate_well_H19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.58, + "y": 43.44, + "z": 1.05 + }, + "position3d": { + "x": 91.58, + "y": 43.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_18_7_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.58, + "y": 43.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_I19", + "uuid": "75d38ced-9a09-4338-aff2-491cbff6398e", + "name": "PRCXI_BioRad_384_wellplate_well_I19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.58, + "y": 38.94, + "z": 1.05 + }, + "position3d": { + "x": 91.58, + "y": 38.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_18_8_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.58, + "y": 38.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_J19", + "uuid": "f3fa53a9-3e0e-4e98-b1c8-f3313fcd6ad8", + "name": "PRCXI_BioRad_384_wellplate_well_J19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.58, + "y": 34.44, + "z": 1.05 + }, + "position3d": { + "x": 91.58, + "y": 34.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_18_9_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.58, + "y": 34.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_K19", + "uuid": "b3b18d55-0581-4dd0-860c-76b4cb7dfe5d", + "name": "PRCXI_BioRad_384_wellplate_well_K19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.58, + "y": 29.94, + "z": 1.05 + }, + "position3d": { + "x": 91.58, + "y": 29.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_18_10_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.58, + "y": 29.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_L19", + "uuid": "e3cfca4d-3880-460c-98f8-52826e9937db", + "name": "PRCXI_BioRad_384_wellplate_well_L19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.58, + "y": 25.44, + "z": 1.05 + }, + "position3d": { + "x": 91.58, + "y": 25.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_18_11_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.58, + "y": 25.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_M19", + "uuid": "74467187-6ddc-4098-938a-a6fe25f07531", + "name": "PRCXI_BioRad_384_wellplate_well_M19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.58, + "y": 20.94, + "z": 1.05 + }, + "position3d": { + "x": 91.58, + "y": 20.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_18_12_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.58, + "y": 20.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_N19", + "uuid": "2d09f5fc-8b0b-4f7b-87e0-4461646610df", + "name": "PRCXI_BioRad_384_wellplate_well_N19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.58, + "y": 16.44, + "z": 1.05 + }, + "position3d": { + "x": 91.58, + "y": 16.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_18_13_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.58, + "y": 16.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_O19", + "uuid": "bb2919ed-c1a1-462f-9a97-674aba990f33", + "name": "PRCXI_BioRad_384_wellplate_well_O19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.58, + "y": 11.94, + "z": 1.05 + }, + "position3d": { + "x": 91.58, + "y": 11.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_18_14_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.58, + "y": 11.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_P19", + "uuid": "544321a8-a194-4a2f-ae59-44f1ed150fe4", + "name": "PRCXI_BioRad_384_wellplate_well_P19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.58, + "y": 7.44, + "z": 1.05 + }, + "position3d": { + "x": 91.58, + "y": 7.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_18_15_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.58, + "y": 7.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_A20", + "uuid": "0745440b-0cd6-4e64-bfc1-5868d3a8382c", + "name": "PRCXI_BioRad_384_wellplate_well_A20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 96.08, + "y": 74.94, + "z": 1.05 + }, + "position3d": { + "x": 96.08, + "y": 74.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_19_0_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 96.08, + "y": 74.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_B20", + "uuid": "12ec2152-c6f9-44b3-ae22-e8fc2084c7b0", + "name": "PRCXI_BioRad_384_wellplate_well_B20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 96.08, + "y": 70.44, + "z": 1.05 + }, + "position3d": { + "x": 96.08, + "y": 70.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_19_1_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 96.08, + "y": 70.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_C20", + "uuid": "54c4bbdc-c2df-4a67-a819-5843e54c16a7", + "name": "PRCXI_BioRad_384_wellplate_well_C20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 96.08, + "y": 65.94, + "z": 1.05 + }, + "position3d": { + "x": 96.08, + "y": 65.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_19_2_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 96.08, + "y": 65.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_D20", + "uuid": "b2937cda-846c-4ee0-9c8a-ce2c00de09cc", + "name": "PRCXI_BioRad_384_wellplate_well_D20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 96.08, + "y": 61.44, + "z": 1.05 + }, + "position3d": { + "x": 96.08, + "y": 61.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_19_3_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 96.08, + "y": 61.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_E20", + "uuid": "6cac1858-74aa-43d8-9df7-74047e463e97", + "name": "PRCXI_BioRad_384_wellplate_well_E20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 96.08, + "y": 56.94, + "z": 1.05 + }, + "position3d": { + "x": 96.08, + "y": 56.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_19_4_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 96.08, + "y": 56.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_F20", + "uuid": "44f11f9e-d7c6-42b4-8ad6-dec3a3c62558", + "name": "PRCXI_BioRad_384_wellplate_well_F20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 96.08, + "y": 52.44, + "z": 1.05 + }, + "position3d": { + "x": 96.08, + "y": 52.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_19_5_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 96.08, + "y": 52.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_G20", + "uuid": "0b106167-2f64-4e0f-ab37-eb41fcb4e93f", + "name": "PRCXI_BioRad_384_wellplate_well_G20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 96.08, + "y": 47.94, + "z": 1.05 + }, + "position3d": { + "x": 96.08, + "y": 47.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_19_6_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 96.08, + "y": 47.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_H20", + "uuid": "0de76918-6f9f-48ac-ad78-1d77319d91cc", + "name": "PRCXI_BioRad_384_wellplate_well_H20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 96.08, + "y": 43.44, + "z": 1.05 + }, + "position3d": { + "x": 96.08, + "y": 43.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_19_7_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 96.08, + "y": 43.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_I20", + "uuid": "44d78da2-9e21-41b6-95e9-075003657bf9", + "name": "PRCXI_BioRad_384_wellplate_well_I20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 96.08, + "y": 38.94, + "z": 1.05 + }, + "position3d": { + "x": 96.08, + "y": 38.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_19_8_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 96.08, + "y": 38.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_J20", + "uuid": "881e613f-65b3-4878-9564-d338300eef6f", + "name": "PRCXI_BioRad_384_wellplate_well_J20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 96.08, + "y": 34.44, + "z": 1.05 + }, + "position3d": { + "x": 96.08, + "y": 34.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_19_9_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 96.08, + "y": 34.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_K20", + "uuid": "ba719456-e0e2-4ba0-a03e-6f9f7adeed6b", + "name": "PRCXI_BioRad_384_wellplate_well_K20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 96.08, + "y": 29.94, + "z": 1.05 + }, + "position3d": { + "x": 96.08, + "y": 29.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_19_10_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 96.08, + "y": 29.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_L20", + "uuid": "63b65cb6-3b6e-4f18-a730-920d68b17868", + "name": "PRCXI_BioRad_384_wellplate_well_L20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 96.08, + "y": 25.44, + "z": 1.05 + }, + "position3d": { + "x": 96.08, + "y": 25.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_19_11_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 96.08, + "y": 25.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_M20", + "uuid": "76267bfb-ab2b-4835-8cee-99f94e04ef90", + "name": "PRCXI_BioRad_384_wellplate_well_M20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 96.08, + "y": 20.94, + "z": 1.05 + }, + "position3d": { + "x": 96.08, + "y": 20.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_19_12_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 96.08, + "y": 20.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_N20", + "uuid": "446106e7-9bba-4939-80e2-158fbad065c7", + "name": "PRCXI_BioRad_384_wellplate_well_N20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 96.08, + "y": 16.44, + "z": 1.05 + }, + "position3d": { + "x": 96.08, + "y": 16.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_19_13_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 96.08, + "y": 16.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_O20", + "uuid": "d5a71a09-9aae-4649-adf4-f83a9869b4db", + "name": "PRCXI_BioRad_384_wellplate_well_O20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 96.08, + "y": 11.94, + "z": 1.05 + }, + "position3d": { + "x": 96.08, + "y": 11.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_19_14_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 96.08, + "y": 11.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_P20", + "uuid": "fc1ae5e0-13c1-47df-ae16-934137ca945b", + "name": "PRCXI_BioRad_384_wellplate_well_P20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 96.08, + "y": 7.44, + "z": 1.05 + }, + "position3d": { + "x": 96.08, + "y": 7.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_19_15_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 96.08, + "y": 7.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_A21", + "uuid": "ef95f5ea-d947-46f2-96bd-798aa734cff4", + "name": "PRCXI_BioRad_384_wellplate_well_A21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.58, + "y": 74.94, + "z": 1.05 + }, + "position3d": { + "x": 100.58, + "y": 74.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_20_0_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.58, + "y": 74.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_B21", + "uuid": "ca8bd0e2-c97f-4bf8-97b6-1c8cd68464f7", + "name": "PRCXI_BioRad_384_wellplate_well_B21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.58, + "y": 70.44, + "z": 1.05 + }, + "position3d": { + "x": 100.58, + "y": 70.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_20_1_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.58, + "y": 70.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_C21", + "uuid": "24d935fa-4645-4066-aabc-fc08863bbff5", + "name": "PRCXI_BioRad_384_wellplate_well_C21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.58, + "y": 65.94, + "z": 1.05 + }, + "position3d": { + "x": 100.58, + "y": 65.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_20_2_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.58, + "y": 65.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_D21", + "uuid": "4b3b827e-1489-4a8a-8031-eccf9241c82b", + "name": "PRCXI_BioRad_384_wellplate_well_D21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.58, + "y": 61.44, + "z": 1.05 + }, + "position3d": { + "x": 100.58, + "y": 61.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_20_3_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.58, + "y": 61.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_E21", + "uuid": "fc352968-d437-48f3-b427-826b492d69a3", + "name": "PRCXI_BioRad_384_wellplate_well_E21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.58, + "y": 56.94, + "z": 1.05 + }, + "position3d": { + "x": 100.58, + "y": 56.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_20_4_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.58, + "y": 56.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_F21", + "uuid": "5ce09c81-13f0-48d0-b5a0-80197c42c928", + "name": "PRCXI_BioRad_384_wellplate_well_F21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.58, + "y": 52.44, + "z": 1.05 + }, + "position3d": { + "x": 100.58, + "y": 52.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_20_5_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.58, + "y": 52.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_G21", + "uuid": "c6d63178-2b8a-4d82-867b-dfc0acef0f70", + "name": "PRCXI_BioRad_384_wellplate_well_G21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.58, + "y": 47.94, + "z": 1.05 + }, + "position3d": { + "x": 100.58, + "y": 47.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_20_6_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.58, + "y": 47.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_H21", + "uuid": "bb5b325b-e1e0-410a-9037-5c014082747c", + "name": "PRCXI_BioRad_384_wellplate_well_H21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.58, + "y": 43.44, + "z": 1.05 + }, + "position3d": { + "x": 100.58, + "y": 43.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_20_7_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.58, + "y": 43.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_I21", + "uuid": "b7e665fa-b03b-45d1-a56b-839c807b9920", + "name": "PRCXI_BioRad_384_wellplate_well_I21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.58, + "y": 38.94, + "z": 1.05 + }, + "position3d": { + "x": 100.58, + "y": 38.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_20_8_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.58, + "y": 38.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_J21", + "uuid": "4d6a000e-c615-4c21-b8ec-a0dda2091f65", + "name": "PRCXI_BioRad_384_wellplate_well_J21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.58, + "y": 34.44, + "z": 1.05 + }, + "position3d": { + "x": 100.58, + "y": 34.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_20_9_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.58, + "y": 34.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_K21", + "uuid": "59a8e2d0-0b6f-405f-9eb9-43635359378a", + "name": "PRCXI_BioRad_384_wellplate_well_K21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.58, + "y": 29.94, + "z": 1.05 + }, + "position3d": { + "x": 100.58, + "y": 29.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_20_10_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.58, + "y": 29.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_L21", + "uuid": "5481625c-4f11-4839-bd7c-bd040092bad2", + "name": "PRCXI_BioRad_384_wellplate_well_L21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.58, + "y": 25.44, + "z": 1.05 + }, + "position3d": { + "x": 100.58, + "y": 25.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_20_11_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.58, + "y": 25.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_M21", + "uuid": "8b2bf5e5-dc2d-402e-ae53-438fc14f0787", + "name": "PRCXI_BioRad_384_wellplate_well_M21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.58, + "y": 20.94, + "z": 1.05 + }, + "position3d": { + "x": 100.58, + "y": 20.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_20_12_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.58, + "y": 20.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_N21", + "uuid": "841c00ca-2fb8-422e-8a8f-aef9ea18ac15", + "name": "PRCXI_BioRad_384_wellplate_well_N21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.58, + "y": 16.44, + "z": 1.05 + }, + "position3d": { + "x": 100.58, + "y": 16.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_20_13_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.58, + "y": 16.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_O21", + "uuid": "e96891d3-b54b-4a65-a47c-9f33eed4660d", + "name": "PRCXI_BioRad_384_wellplate_well_O21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.58, + "y": 11.94, + "z": 1.05 + }, + "position3d": { + "x": 100.58, + "y": 11.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_20_14_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.58, + "y": 11.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_P21", + "uuid": "830787e6-7b56-43f2-a1dc-3948380ce74d", + "name": "PRCXI_BioRad_384_wellplate_well_P21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.58, + "y": 7.44, + "z": 1.05 + }, + "position3d": { + "x": 100.58, + "y": 7.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_20_15_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.58, + "y": 7.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_A22", + "uuid": "1ef3a4ac-222a-4de0-9995-03e798a48437", + "name": "PRCXI_BioRad_384_wellplate_well_A22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 105.08, + "y": 74.94, + "z": 1.05 + }, + "position3d": { + "x": 105.08, + "y": 74.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_21_0_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 105.08, + "y": 74.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_B22", + "uuid": "24551cf6-6e8b-459b-83ff-fcaa1e8e9097", + "name": "PRCXI_BioRad_384_wellplate_well_B22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 105.08, + "y": 70.44, + "z": 1.05 + }, + "position3d": { + "x": 105.08, + "y": 70.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_21_1_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 105.08, + "y": 70.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_C22", + "uuid": "5166cfc6-2faa-46ac-82f1-f70b58ef630b", + "name": "PRCXI_BioRad_384_wellplate_well_C22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 105.08, + "y": 65.94, + "z": 1.05 + }, + "position3d": { + "x": 105.08, + "y": 65.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_21_2_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 105.08, + "y": 65.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_D22", + "uuid": "ed049f38-6788-4201-bed3-8db3f3787921", + "name": "PRCXI_BioRad_384_wellplate_well_D22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 105.08, + "y": 61.44, + "z": 1.05 + }, + "position3d": { + "x": 105.08, + "y": 61.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_21_3_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 105.08, + "y": 61.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_E22", + "uuid": "8a1c2e66-86bc-4bbb-b4a6-7aaeb06b243f", + "name": "PRCXI_BioRad_384_wellplate_well_E22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 105.08, + "y": 56.94, + "z": 1.05 + }, + "position3d": { + "x": 105.08, + "y": 56.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_21_4_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 105.08, + "y": 56.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_F22", + "uuid": "2cf4f864-b224-4aaa-8b62-00c84f9f64e7", + "name": "PRCXI_BioRad_384_wellplate_well_F22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 105.08, + "y": 52.44, + "z": 1.05 + }, + "position3d": { + "x": 105.08, + "y": 52.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_21_5_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 105.08, + "y": 52.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_G22", + "uuid": "2c4707cd-619b-46c1-9b1a-aff4c072409a", + "name": "PRCXI_BioRad_384_wellplate_well_G22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 105.08, + "y": 47.94, + "z": 1.05 + }, + "position3d": { + "x": 105.08, + "y": 47.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_21_6_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 105.08, + "y": 47.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_H22", + "uuid": "84c13e12-6cd4-488b-ba7a-4c818f37d01e", + "name": "PRCXI_BioRad_384_wellplate_well_H22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 105.08, + "y": 43.44, + "z": 1.05 + }, + "position3d": { + "x": 105.08, + "y": 43.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_21_7_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 105.08, + "y": 43.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_I22", + "uuid": "21888358-b072-48e9-b21a-99355606a7e0", + "name": "PRCXI_BioRad_384_wellplate_well_I22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 105.08, + "y": 38.94, + "z": 1.05 + }, + "position3d": { + "x": 105.08, + "y": 38.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_21_8_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 105.08, + "y": 38.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_J22", + "uuid": "5f0bdbf2-9698-40a9-924e-3f3335262b66", + "name": "PRCXI_BioRad_384_wellplate_well_J22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 105.08, + "y": 34.44, + "z": 1.05 + }, + "position3d": { + "x": 105.08, + "y": 34.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_21_9_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 105.08, + "y": 34.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_K22", + "uuid": "4b981cd8-5326-4fbb-93b2-3da83b49b047", + "name": "PRCXI_BioRad_384_wellplate_well_K22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 105.08, + "y": 29.94, + "z": 1.05 + }, + "position3d": { + "x": 105.08, + "y": 29.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_21_10_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 105.08, + "y": 29.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_L22", + "uuid": "8bb92bea-0f4c-438a-98af-30050ad7c4bc", + "name": "PRCXI_BioRad_384_wellplate_well_L22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 105.08, + "y": 25.44, + "z": 1.05 + }, + "position3d": { + "x": 105.08, + "y": 25.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_21_11_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 105.08, + "y": 25.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_M22", + "uuid": "3720f0de-41d7-4d88-9b26-cffe06f77e14", + "name": "PRCXI_BioRad_384_wellplate_well_M22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 105.08, + "y": 20.94, + "z": 1.05 + }, + "position3d": { + "x": 105.08, + "y": 20.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_21_12_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 105.08, + "y": 20.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_N22", + "uuid": "5c04d42d-4c4d-409f-ae66-615ce0aefac9", + "name": "PRCXI_BioRad_384_wellplate_well_N22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 105.08, + "y": 16.44, + "z": 1.05 + }, + "position3d": { + "x": 105.08, + "y": 16.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_21_13_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 105.08, + "y": 16.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_O22", + "uuid": "0e8e8078-932d-400b-8e1d-89964e4ddac5", + "name": "PRCXI_BioRad_384_wellplate_well_O22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 105.08, + "y": 11.94, + "z": 1.05 + }, + "position3d": { + "x": 105.08, + "y": 11.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_21_14_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 105.08, + "y": 11.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_P22", + "uuid": "2940b855-ee11-44bf-ad5e-15dedd56bb00", + "name": "PRCXI_BioRad_384_wellplate_well_P22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 105.08, + "y": 7.44, + "z": 1.05 + }, + "position3d": { + "x": 105.08, + "y": 7.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_21_15_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 105.08, + "y": 7.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_A23", + "uuid": "23ec8472-20f7-48fd-98cd-4efcd95f63a2", + "name": "PRCXI_BioRad_384_wellplate_well_A23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.58, + "y": 74.94, + "z": 1.05 + }, + "position3d": { + "x": 109.58, + "y": 74.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_22_0_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.58, + "y": 74.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_B23", + "uuid": "fd76e1ac-b460-43d6-ad0a-36d4d0ff2075", + "name": "PRCXI_BioRad_384_wellplate_well_B23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.58, + "y": 70.44, + "z": 1.05 + }, + "position3d": { + "x": 109.58, + "y": 70.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_22_1_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.58, + "y": 70.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_C23", + "uuid": "c2f91c70-f7de-456e-93e1-7b420359d5c2", + "name": "PRCXI_BioRad_384_wellplate_well_C23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.58, + "y": 65.94, + "z": 1.05 + }, + "position3d": { + "x": 109.58, + "y": 65.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_22_2_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.58, + "y": 65.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_D23", + "uuid": "89542cb8-dd91-48f3-8e29-92c6fedd696f", + "name": "PRCXI_BioRad_384_wellplate_well_D23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.58, + "y": 61.44, + "z": 1.05 + }, + "position3d": { + "x": 109.58, + "y": 61.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_22_3_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.58, + "y": 61.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_E23", + "uuid": "6032a8ac-9a82-4203-a493-da6e89c6d047", + "name": "PRCXI_BioRad_384_wellplate_well_E23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.58, + "y": 56.94, + "z": 1.05 + }, + "position3d": { + "x": 109.58, + "y": 56.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_22_4_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.58, + "y": 56.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_F23", + "uuid": "281187bb-e2e9-41c9-bce3-4c361f50ca84", + "name": "PRCXI_BioRad_384_wellplate_well_F23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.58, + "y": 52.44, + "z": 1.05 + }, + "position3d": { + "x": 109.58, + "y": 52.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_22_5_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.58, + "y": 52.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_G23", + "uuid": "5d52aebc-6546-4f72-bb16-41a42ff8a437", + "name": "PRCXI_BioRad_384_wellplate_well_G23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.58, + "y": 47.94, + "z": 1.05 + }, + "position3d": { + "x": 109.58, + "y": 47.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_22_6_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.58, + "y": 47.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_H23", + "uuid": "ea41c3b8-4a6f-45e1-8bef-d332f12f1a69", + "name": "PRCXI_BioRad_384_wellplate_well_H23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.58, + "y": 43.44, + "z": 1.05 + }, + "position3d": { + "x": 109.58, + "y": 43.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_22_7_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.58, + "y": 43.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_I23", + "uuid": "3a6bb329-a134-4afc-bfb3-9f35546b3d8e", + "name": "PRCXI_BioRad_384_wellplate_well_I23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.58, + "y": 38.94, + "z": 1.05 + }, + "position3d": { + "x": 109.58, + "y": 38.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_22_8_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.58, + "y": 38.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_J23", + "uuid": "ef2b1e24-49ee-46c4-a45f-28ba594acd15", + "name": "PRCXI_BioRad_384_wellplate_well_J23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.58, + "y": 34.44, + "z": 1.05 + }, + "position3d": { + "x": 109.58, + "y": 34.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_22_9_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.58, + "y": 34.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_K23", + "uuid": "3820c560-c4e8-42db-a8b6-dcff32c38544", + "name": "PRCXI_BioRad_384_wellplate_well_K23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.58, + "y": 29.94, + "z": 1.05 + }, + "position3d": { + "x": 109.58, + "y": 29.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_22_10_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.58, + "y": 29.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_L23", + "uuid": "92b8ba9b-92ac-4d28-9ddc-d172ce6f4d27", + "name": "PRCXI_BioRad_384_wellplate_well_L23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.58, + "y": 25.44, + "z": 1.05 + }, + "position3d": { + "x": 109.58, + "y": 25.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_22_11_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.58, + "y": 25.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_M23", + "uuid": "8b04486d-3c2f-4e56-bec6-680eea3c29f9", + "name": "PRCXI_BioRad_384_wellplate_well_M23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.58, + "y": 20.94, + "z": 1.05 + }, + "position3d": { + "x": 109.58, + "y": 20.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_22_12_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.58, + "y": 20.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_N23", + "uuid": "18993d06-8830-4490-8d97-a85171720754", + "name": "PRCXI_BioRad_384_wellplate_well_N23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.58, + "y": 16.44, + "z": 1.05 + }, + "position3d": { + "x": 109.58, + "y": 16.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_22_13_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.58, + "y": 16.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_O23", + "uuid": "7e13ec70-e55b-4b8c-95c5-2882629836b1", + "name": "PRCXI_BioRad_384_wellplate_well_O23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.58, + "y": 11.94, + "z": 1.05 + }, + "position3d": { + "x": 109.58, + "y": 11.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_22_14_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.58, + "y": 11.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_P23", + "uuid": "4353fd97-6ddd-4051-b07d-74ddd622bc4c", + "name": "PRCXI_BioRad_384_wellplate_well_P23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.58, + "y": 7.44, + "z": 1.05 + }, + "position3d": { + "x": 109.58, + "y": 7.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_22_15_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.58, + "y": 7.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_A24", + "uuid": "296634b9-9d3f-46ea-8f74-fd4fac83b57a", + "name": "PRCXI_BioRad_384_wellplate_well_A24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.08, + "y": 74.94, + "z": 1.05 + }, + "position3d": { + "x": 114.08, + "y": 74.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_23_0_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.08, + "y": 74.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_B24", + "uuid": "b64c37ce-f635-4cdb-840f-f34254f032b7", + "name": "PRCXI_BioRad_384_wellplate_well_B24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.08, + "y": 70.44, + "z": 1.05 + }, + "position3d": { + "x": 114.08, + "y": 70.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_23_1_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.08, + "y": 70.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_C24", + "uuid": "d134e6aa-3b92-4faf-a167-c52327a60d2c", + "name": "PRCXI_BioRad_384_wellplate_well_C24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.08, + "y": 65.94, + "z": 1.05 + }, + "position3d": { + "x": 114.08, + "y": 65.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_23_2_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.08, + "y": 65.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_D24", + "uuid": "79dc9e4e-bb55-4b3b-9e6a-9f2314b38b43", + "name": "PRCXI_BioRad_384_wellplate_well_D24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.08, + "y": 61.44, + "z": 1.05 + }, + "position3d": { + "x": 114.08, + "y": 61.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_23_3_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.08, + "y": 61.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_E24", + "uuid": "8094086b-4292-4940-bf65-af06cdc27975", + "name": "PRCXI_BioRad_384_wellplate_well_E24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.08, + "y": 56.94, + "z": 1.05 + }, + "position3d": { + "x": 114.08, + "y": 56.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_23_4_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.08, + "y": 56.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_F24", + "uuid": "4220013a-4557-4525-904d-60452cb4a2d9", + "name": "PRCXI_BioRad_384_wellplate_well_F24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.08, + "y": 52.44, + "z": 1.05 + }, + "position3d": { + "x": 114.08, + "y": 52.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_23_5_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.08, + "y": 52.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_G24", + "uuid": "ca18d828-7412-4757-8ecf-e817d8055669", + "name": "PRCXI_BioRad_384_wellplate_well_G24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.08, + "y": 47.94, + "z": 1.05 + }, + "position3d": { + "x": 114.08, + "y": 47.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_23_6_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.08, + "y": 47.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_H24", + "uuid": "055f4b5f-aa36-48ba-8c2a-41f88efa7c6f", + "name": "PRCXI_BioRad_384_wellplate_well_H24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.08, + "y": 43.44, + "z": 1.05 + }, + "position3d": { + "x": 114.08, + "y": 43.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_23_7_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.08, + "y": 43.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_I24", + "uuid": "314c9dde-66e6-446e-bcd6-056e1de15dfb", + "name": "PRCXI_BioRad_384_wellplate_well_I24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.08, + "y": 38.94, + "z": 1.05 + }, + "position3d": { + "x": 114.08, + "y": 38.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_23_8_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.08, + "y": 38.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_J24", + "uuid": "fb4d336d-49d1-47fa-8620-dbc8b803f93e", + "name": "PRCXI_BioRad_384_wellplate_well_J24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.08, + "y": 34.44, + "z": 1.05 + }, + "position3d": { + "x": 114.08, + "y": 34.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_23_9_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.08, + "y": 34.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_K24", + "uuid": "db1adfdb-bf9c-46bc-b9d5-2656c83c4c28", + "name": "PRCXI_BioRad_384_wellplate_well_K24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.08, + "y": 29.94, + "z": 1.05 + }, + "position3d": { + "x": 114.08, + "y": 29.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_23_10_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.08, + "y": 29.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_L24", + "uuid": "a7ac8415-5015-473c-8aa2-485a76b4b1f6", + "name": "PRCXI_BioRad_384_wellplate_well_L24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.08, + "y": 25.44, + "z": 1.05 + }, + "position3d": { + "x": 114.08, + "y": 25.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_23_11_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.08, + "y": 25.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_M24", + "uuid": "53496076-4daa-44f0-b7f4-20dfe048c40c", + "name": "PRCXI_BioRad_384_wellplate_well_M24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.08, + "y": 20.94, + "z": 1.05 + }, + "position3d": { + "x": 114.08, + "y": 20.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_23_12_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.08, + "y": 20.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_N24", + "uuid": "86b3657f-3cc9-4c3c-b20c-a325d86c36eb", + "name": "PRCXI_BioRad_384_wellplate_well_N24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.08, + "y": 16.44, + "z": 1.05 + }, + "position3d": { + "x": 114.08, + "y": 16.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_23_13_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.08, + "y": 16.44, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_O24", + "uuid": "4de0fae1-5863-4b1c-b385-590f38c895f0", + "name": "PRCXI_BioRad_384_wellplate_well_O24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.08, + "y": 11.94, + "z": 1.05 + }, + "position3d": { + "x": 114.08, + "y": 11.94, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_23_14_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.08, + "y": 11.94, + "z": 1.05 + } + }, + { + "id": "PRCXI_BioRad_384_wellplate_well_P24", + "uuid": "5bff368d-41d2-4cb0-a9b7-399fd8977d84", + "name": "PRCXI_BioRad_384_wellplate_well_P24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "84048fca-c831-4b6a-a67f-3674ebecefa2", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 9.35, + "width": 3.1, + "height": 3.1 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 114.08, + "y": 7.44, + "z": 1.05 + }, + "position3d": { + "x": 114.08, + "y": 7.44, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 3.1, + "size_y": 3.1, + "size_z": 9.35, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50, + "material_z_thickness": 1, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_23_15_volume_tracker", + "max_volume": 50, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 114.08, + "y": 7.44, + "z": 1.05 + } + } + ] + }, + { + "id": "PRCXI_CellTreat_96_wellplate", + "category": [ + "prcxi", + "plates" + ], + "class": { + "module": "unilabos.devices.liquid_handling.prcxi.prcxi_labware:PRCXI_CellTreat_96_wellplate", + "type": "pylabrobot" + }, + "description": "细菌培养皿 (Code: ZX-78-096)", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/prcxi/plates.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "PRCXI_CellTreat_96_wellplate", + "uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "name": "PRCXI_CellTreat_96_wellplate", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "plate", + "class": "", + "pose": { + "size": { + "depth": 14.3, + "width": 127.61, + "height": 85.24 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "PRCXI9300Plate", + "size_x": 127.61, + "size_y": 85.24, + "size_z": 14.3, + "category": "plate", + "model": "PRCXI_CellTreat_96_wellplate", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "PRCXI_CellTreat_96_wellplate_well_A1", + "B1": "PRCXI_CellTreat_96_wellplate_well_B1", + "C1": "PRCXI_CellTreat_96_wellplate_well_C1", + "D1": "PRCXI_CellTreat_96_wellplate_well_D1", + "E1": "PRCXI_CellTreat_96_wellplate_well_E1", + "F1": "PRCXI_CellTreat_96_wellplate_well_F1", + "G1": "PRCXI_CellTreat_96_wellplate_well_G1", + "H1": "PRCXI_CellTreat_96_wellplate_well_H1", + "A2": "PRCXI_CellTreat_96_wellplate_well_A2", + "B2": "PRCXI_CellTreat_96_wellplate_well_B2", + "C2": "PRCXI_CellTreat_96_wellplate_well_C2", + "D2": "PRCXI_CellTreat_96_wellplate_well_D2", + "E2": "PRCXI_CellTreat_96_wellplate_well_E2", + "F2": "PRCXI_CellTreat_96_wellplate_well_F2", + "G2": "PRCXI_CellTreat_96_wellplate_well_G2", + "H2": "PRCXI_CellTreat_96_wellplate_well_H2", + "A3": "PRCXI_CellTreat_96_wellplate_well_A3", + "B3": "PRCXI_CellTreat_96_wellplate_well_B3", + "C3": "PRCXI_CellTreat_96_wellplate_well_C3", + "D3": "PRCXI_CellTreat_96_wellplate_well_D3", + "E3": "PRCXI_CellTreat_96_wellplate_well_E3", + "F3": "PRCXI_CellTreat_96_wellplate_well_F3", + "G3": "PRCXI_CellTreat_96_wellplate_well_G3", + "H3": "PRCXI_CellTreat_96_wellplate_well_H3", + "A4": "PRCXI_CellTreat_96_wellplate_well_A4", + "B4": "PRCXI_CellTreat_96_wellplate_well_B4", + "C4": "PRCXI_CellTreat_96_wellplate_well_C4", + "D4": "PRCXI_CellTreat_96_wellplate_well_D4", + "E4": "PRCXI_CellTreat_96_wellplate_well_E4", + "F4": "PRCXI_CellTreat_96_wellplate_well_F4", + "G4": "PRCXI_CellTreat_96_wellplate_well_G4", + "H4": "PRCXI_CellTreat_96_wellplate_well_H4", + "A5": "PRCXI_CellTreat_96_wellplate_well_A5", + "B5": "PRCXI_CellTreat_96_wellplate_well_B5", + "C5": "PRCXI_CellTreat_96_wellplate_well_C5", + "D5": "PRCXI_CellTreat_96_wellplate_well_D5", + "E5": "PRCXI_CellTreat_96_wellplate_well_E5", + "F5": "PRCXI_CellTreat_96_wellplate_well_F5", + "G5": "PRCXI_CellTreat_96_wellplate_well_G5", + "H5": "PRCXI_CellTreat_96_wellplate_well_H5", + "A6": "PRCXI_CellTreat_96_wellplate_well_A6", + "B6": "PRCXI_CellTreat_96_wellplate_well_B6", + "C6": "PRCXI_CellTreat_96_wellplate_well_C6", + "D6": "PRCXI_CellTreat_96_wellplate_well_D6", + "E6": "PRCXI_CellTreat_96_wellplate_well_E6", + "F6": "PRCXI_CellTreat_96_wellplate_well_F6", + "G6": "PRCXI_CellTreat_96_wellplate_well_G6", + "H6": "PRCXI_CellTreat_96_wellplate_well_H6", + "A7": "PRCXI_CellTreat_96_wellplate_well_A7", + "B7": "PRCXI_CellTreat_96_wellplate_well_B7", + "C7": "PRCXI_CellTreat_96_wellplate_well_C7", + "D7": "PRCXI_CellTreat_96_wellplate_well_D7", + "E7": "PRCXI_CellTreat_96_wellplate_well_E7", + "F7": "PRCXI_CellTreat_96_wellplate_well_F7", + "G7": "PRCXI_CellTreat_96_wellplate_well_G7", + "H7": "PRCXI_CellTreat_96_wellplate_well_H7", + "A8": "PRCXI_CellTreat_96_wellplate_well_A8", + "B8": "PRCXI_CellTreat_96_wellplate_well_B8", + "C8": "PRCXI_CellTreat_96_wellplate_well_C8", + "D8": "PRCXI_CellTreat_96_wellplate_well_D8", + "E8": "PRCXI_CellTreat_96_wellplate_well_E8", + "F8": "PRCXI_CellTreat_96_wellplate_well_F8", + "G8": "PRCXI_CellTreat_96_wellplate_well_G8", + "H8": "PRCXI_CellTreat_96_wellplate_well_H8", + "A9": "PRCXI_CellTreat_96_wellplate_well_A9", + "B9": "PRCXI_CellTreat_96_wellplate_well_B9", + "C9": "PRCXI_CellTreat_96_wellplate_well_C9", + "D9": "PRCXI_CellTreat_96_wellplate_well_D9", + "E9": "PRCXI_CellTreat_96_wellplate_well_E9", + "F9": "PRCXI_CellTreat_96_wellplate_well_F9", + "G9": "PRCXI_CellTreat_96_wellplate_well_G9", + "H9": "PRCXI_CellTreat_96_wellplate_well_H9", + "A10": "PRCXI_CellTreat_96_wellplate_well_A10", + "B10": "PRCXI_CellTreat_96_wellplate_well_B10", + "C10": "PRCXI_CellTreat_96_wellplate_well_C10", + "D10": "PRCXI_CellTreat_96_wellplate_well_D10", + "E10": "PRCXI_CellTreat_96_wellplate_well_E10", + "F10": "PRCXI_CellTreat_96_wellplate_well_F10", + "G10": "PRCXI_CellTreat_96_wellplate_well_G10", + "H10": "PRCXI_CellTreat_96_wellplate_well_H10", + "A11": "PRCXI_CellTreat_96_wellplate_well_A11", + "B11": "PRCXI_CellTreat_96_wellplate_well_B11", + "C11": "PRCXI_CellTreat_96_wellplate_well_C11", + "D11": "PRCXI_CellTreat_96_wellplate_well_D11", + "E11": "PRCXI_CellTreat_96_wellplate_well_E11", + "F11": "PRCXI_CellTreat_96_wellplate_well_F11", + "G11": "PRCXI_CellTreat_96_wellplate_well_G11", + "H11": "PRCXI_CellTreat_96_wellplate_well_H11", + "A12": "PRCXI_CellTreat_96_wellplate_well_A12", + "B12": "PRCXI_CellTreat_96_wellplate_well_B12", + "C12": "PRCXI_CellTreat_96_wellplate_well_C12", + "D12": "PRCXI_CellTreat_96_wellplate_well_D12", + "E12": "PRCXI_CellTreat_96_wellplate_well_E12", + "F12": "PRCXI_CellTreat_96_wellplate_well_F12", + "G12": "PRCXI_CellTreat_96_wellplate_well_G12", + "H12": "PRCXI_CellTreat_96_wellplate_well_H12" + } + }, + "data": { + "Material": { + "uuid": "b05b3b2aafd94ec38ea0cd3215ecea8f", + "Code": "ZX-78-096", + "Name": "细菌培养皿", + "materialEnum": 4, + "SupplyType": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_A1", + "uuid": "66e0b6b1-2aad-4203-a2d1-73493ab047b7", + "name": "PRCXI_CellTreat_96_wellplate_well_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.83, + "y": 70.67, + "z": 4.05 + }, + "position3d": { + "x": 10.83, + "y": 70.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_0_0_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.83, + "y": 70.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_B1", + "uuid": "75f4f7e8-a178-45dc-bb24-7810f95190f4", + "name": "PRCXI_CellTreat_96_wellplate_well_B1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.83, + "y": 61.67, + "z": 4.05 + }, + "position3d": { + "x": 10.83, + "y": 61.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_0_1_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.83, + "y": 61.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_C1", + "uuid": "92487f96-6184-4685-9335-10ad771546df", + "name": "PRCXI_CellTreat_96_wellplate_well_C1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.83, + "y": 52.67, + "z": 4.05 + }, + "position3d": { + "x": 10.83, + "y": 52.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_0_2_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.83, + "y": 52.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_D1", + "uuid": "d0fc8354-714a-4c6e-bc52-71fa9481c507", + "name": "PRCXI_CellTreat_96_wellplate_well_D1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.83, + "y": 43.67, + "z": 4.05 + }, + "position3d": { + "x": 10.83, + "y": 43.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_0_3_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.83, + "y": 43.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_E1", + "uuid": "28c6637e-5c23-4150-87db-061e9e3d8290", + "name": "PRCXI_CellTreat_96_wellplate_well_E1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.83, + "y": 34.67, + "z": 4.05 + }, + "position3d": { + "x": 10.83, + "y": 34.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_0_4_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.83, + "y": 34.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_F1", + "uuid": "8edd633c-3970-4220-89ec-6b9b1a7ea05d", + "name": "PRCXI_CellTreat_96_wellplate_well_F1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.83, + "y": 25.67, + "z": 4.05 + }, + "position3d": { + "x": 10.83, + "y": 25.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_0_5_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.83, + "y": 25.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_G1", + "uuid": "0ee9b91b-ab30-48bb-83e8-075fe3aff102", + "name": "PRCXI_CellTreat_96_wellplate_well_G1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.83, + "y": 16.67, + "z": 4.05 + }, + "position3d": { + "x": 10.83, + "y": 16.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_0_6_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.83, + "y": 16.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_H1", + "uuid": "c2a3a6bc-ca0f-477d-9f57-555165a04508", + "name": "PRCXI_CellTreat_96_wellplate_well_H1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.83, + "y": 7.67, + "z": 4.05 + }, + "position3d": { + "x": 10.83, + "y": 7.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_0_7_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.83, + "y": 7.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_A2", + "uuid": "a4076bb6-c365-4718-a16d-51963932f68a", + "name": "PRCXI_CellTreat_96_wellplate_well_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 19.83, + "y": 70.67, + "z": 4.05 + }, + "position3d": { + "x": 19.83, + "y": 70.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_1_0_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 19.83, + "y": 70.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_B2", + "uuid": "cde971a7-2ce5-41ca-80a6-caab6389ec0a", + "name": "PRCXI_CellTreat_96_wellplate_well_B2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 19.83, + "y": 61.67, + "z": 4.05 + }, + "position3d": { + "x": 19.83, + "y": 61.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_1_1_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 19.83, + "y": 61.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_C2", + "uuid": "f345daa9-899e-4c29-a098-e051a81064d6", + "name": "PRCXI_CellTreat_96_wellplate_well_C2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 19.83, + "y": 52.67, + "z": 4.05 + }, + "position3d": { + "x": 19.83, + "y": 52.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_1_2_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 19.83, + "y": 52.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_D2", + "uuid": "37906a62-1b13-4937-9b31-09fa30e7b85f", + "name": "PRCXI_CellTreat_96_wellplate_well_D2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 19.83, + "y": 43.67, + "z": 4.05 + }, + "position3d": { + "x": 19.83, + "y": 43.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_1_3_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 19.83, + "y": 43.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_E2", + "uuid": "9eeff47f-b41a-4963-94ea-236f8e56e047", + "name": "PRCXI_CellTreat_96_wellplate_well_E2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 19.83, + "y": 34.67, + "z": 4.05 + }, + "position3d": { + "x": 19.83, + "y": 34.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_1_4_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 19.83, + "y": 34.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_F2", + "uuid": "a64f9a23-af3c-49c2-8041-451f58a5866b", + "name": "PRCXI_CellTreat_96_wellplate_well_F2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 19.83, + "y": 25.67, + "z": 4.05 + }, + "position3d": { + "x": 19.83, + "y": 25.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_1_5_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 19.83, + "y": 25.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_G2", + "uuid": "de1a9b14-a9f0-4cfd-a60c-6f44ef1451d0", + "name": "PRCXI_CellTreat_96_wellplate_well_G2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 19.83, + "y": 16.67, + "z": 4.05 + }, + "position3d": { + "x": 19.83, + "y": 16.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_1_6_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 19.83, + "y": 16.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_H2", + "uuid": "0a533523-b049-4c00-8855-d04bc8559217", + "name": "PRCXI_CellTreat_96_wellplate_well_H2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 19.83, + "y": 7.67, + "z": 4.05 + }, + "position3d": { + "x": 19.83, + "y": 7.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_1_7_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 19.83, + "y": 7.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_A3", + "uuid": "f7d71bef-6064-46f2-b328-e39912bcadd6", + "name": "PRCXI_CellTreat_96_wellplate_well_A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.83, + "y": 70.67, + "z": 4.05 + }, + "position3d": { + "x": 28.83, + "y": 70.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_2_0_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.83, + "y": 70.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_B3", + "uuid": "08154506-349f-4b8d-a8c9-6e695c1cdb2d", + "name": "PRCXI_CellTreat_96_wellplate_well_B3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.83, + "y": 61.67, + "z": 4.05 + }, + "position3d": { + "x": 28.83, + "y": 61.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_2_1_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.83, + "y": 61.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_C3", + "uuid": "0f978086-9f56-49ca-8820-75d92cc5b790", + "name": "PRCXI_CellTreat_96_wellplate_well_C3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.83, + "y": 52.67, + "z": 4.05 + }, + "position3d": { + "x": 28.83, + "y": 52.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_2_2_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.83, + "y": 52.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_D3", + "uuid": "a557a72c-af0b-49ae-b32f-0af69b210945", + "name": "PRCXI_CellTreat_96_wellplate_well_D3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.83, + "y": 43.67, + "z": 4.05 + }, + "position3d": { + "x": 28.83, + "y": 43.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_2_3_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.83, + "y": 43.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_E3", + "uuid": "d68ef460-f864-4c23-85ee-d4f8fae3505e", + "name": "PRCXI_CellTreat_96_wellplate_well_E3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.83, + "y": 34.67, + "z": 4.05 + }, + "position3d": { + "x": 28.83, + "y": 34.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_2_4_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.83, + "y": 34.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_F3", + "uuid": "467e560b-ccb6-433d-9532-014f8b4e02af", + "name": "PRCXI_CellTreat_96_wellplate_well_F3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.83, + "y": 25.67, + "z": 4.05 + }, + "position3d": { + "x": 28.83, + "y": 25.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_2_5_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.83, + "y": 25.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_G3", + "uuid": "d0e5cf63-82ea-4624-b8d0-74a866c7fd3b", + "name": "PRCXI_CellTreat_96_wellplate_well_G3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.83, + "y": 16.67, + "z": 4.05 + }, + "position3d": { + "x": 28.83, + "y": 16.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_2_6_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.83, + "y": 16.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_H3", + "uuid": "11a451a8-4620-4672-a04d-b34ebb467ce6", + "name": "PRCXI_CellTreat_96_wellplate_well_H3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.83, + "y": 7.67, + "z": 4.05 + }, + "position3d": { + "x": 28.83, + "y": 7.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_2_7_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.83, + "y": 7.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_A4", + "uuid": "6d5dfa02-daf1-4eb2-a835-50581cbe9d7f", + "name": "PRCXI_CellTreat_96_wellplate_well_A4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.83, + "y": 70.67, + "z": 4.05 + }, + "position3d": { + "x": 37.83, + "y": 70.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_3_0_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.83, + "y": 70.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_B4", + "uuid": "49fe1040-ca63-4aef-b6ed-1c9cbcee7978", + "name": "PRCXI_CellTreat_96_wellplate_well_B4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.83, + "y": 61.67, + "z": 4.05 + }, + "position3d": { + "x": 37.83, + "y": 61.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_3_1_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.83, + "y": 61.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_C4", + "uuid": "46fd0196-bad1-4600-8332-8d352b55ef1e", + "name": "PRCXI_CellTreat_96_wellplate_well_C4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.83, + "y": 52.67, + "z": 4.05 + }, + "position3d": { + "x": 37.83, + "y": 52.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_3_2_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.83, + "y": 52.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_D4", + "uuid": "b5857be9-f58f-466d-96e9-9a58aa3ead61", + "name": "PRCXI_CellTreat_96_wellplate_well_D4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.83, + "y": 43.67, + "z": 4.05 + }, + "position3d": { + "x": 37.83, + "y": 43.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_3_3_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.83, + "y": 43.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_E4", + "uuid": "32dddcb4-137f-4a03-93f3-23133863eb5d", + "name": "PRCXI_CellTreat_96_wellplate_well_E4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.83, + "y": 34.67, + "z": 4.05 + }, + "position3d": { + "x": 37.83, + "y": 34.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_3_4_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.83, + "y": 34.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_F4", + "uuid": "a4b07765-97e6-4649-86af-299be5b1dd14", + "name": "PRCXI_CellTreat_96_wellplate_well_F4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.83, + "y": 25.67, + "z": 4.05 + }, + "position3d": { + "x": 37.83, + "y": 25.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_3_5_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.83, + "y": 25.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_G4", + "uuid": "143b6d90-750c-4284-a0c9-c76b4fd15b2f", + "name": "PRCXI_CellTreat_96_wellplate_well_G4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.83, + "y": 16.67, + "z": 4.05 + }, + "position3d": { + "x": 37.83, + "y": 16.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_3_6_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.83, + "y": 16.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_H4", + "uuid": "838a4719-2b1d-4ed8-a785-587e23909811", + "name": "PRCXI_CellTreat_96_wellplate_well_H4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.83, + "y": 7.67, + "z": 4.05 + }, + "position3d": { + "x": 37.83, + "y": 7.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_3_7_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.83, + "y": 7.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_A5", + "uuid": "7dd8c324-af45-4d3b-b011-f8c246d60ea6", + "name": "PRCXI_CellTreat_96_wellplate_well_A5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.83, + "y": 70.67, + "z": 4.05 + }, + "position3d": { + "x": 46.83, + "y": 70.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_4_0_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.83, + "y": 70.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_B5", + "uuid": "6ebce03d-5d05-4dcd-abcb-6acf8adc7cc4", + "name": "PRCXI_CellTreat_96_wellplate_well_B5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.83, + "y": 61.67, + "z": 4.05 + }, + "position3d": { + "x": 46.83, + "y": 61.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_4_1_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.83, + "y": 61.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_C5", + "uuid": "7be7fba1-6b93-4401-826a-599fd998243f", + "name": "PRCXI_CellTreat_96_wellplate_well_C5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.83, + "y": 52.67, + "z": 4.05 + }, + "position3d": { + "x": 46.83, + "y": 52.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_4_2_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.83, + "y": 52.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_D5", + "uuid": "71431d06-9ff3-4700-b26f-9545bcd0e843", + "name": "PRCXI_CellTreat_96_wellplate_well_D5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.83, + "y": 43.67, + "z": 4.05 + }, + "position3d": { + "x": 46.83, + "y": 43.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_4_3_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.83, + "y": 43.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_E5", + "uuid": "234ce106-74cc-4ab8-8f2a-8c4367c8165f", + "name": "PRCXI_CellTreat_96_wellplate_well_E5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.83, + "y": 34.67, + "z": 4.05 + }, + "position3d": { + "x": 46.83, + "y": 34.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_4_4_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.83, + "y": 34.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_F5", + "uuid": "58e4a6f9-6a86-4dca-aaab-e25490b3bb97", + "name": "PRCXI_CellTreat_96_wellplate_well_F5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.83, + "y": 25.67, + "z": 4.05 + }, + "position3d": { + "x": 46.83, + "y": 25.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_4_5_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.83, + "y": 25.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_G5", + "uuid": "ea40683b-544b-4c45-bfb6-11ae16d76307", + "name": "PRCXI_CellTreat_96_wellplate_well_G5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.83, + "y": 16.67, + "z": 4.05 + }, + "position3d": { + "x": 46.83, + "y": 16.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_4_6_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.83, + "y": 16.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_H5", + "uuid": "f0bd8340-52df-4d14-9930-bdf2dbfed472", + "name": "PRCXI_CellTreat_96_wellplate_well_H5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.83, + "y": 7.67, + "z": 4.05 + }, + "position3d": { + "x": 46.83, + "y": 7.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_4_7_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.83, + "y": 7.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_A6", + "uuid": "db1a58f1-9e66-4387-874a-281cf5414c57", + "name": "PRCXI_CellTreat_96_wellplate_well_A6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.83, + "y": 70.67, + "z": 4.05 + }, + "position3d": { + "x": 55.83, + "y": 70.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_5_0_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.83, + "y": 70.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_B6", + "uuid": "2b304c22-885c-486b-a512-fe4792db464f", + "name": "PRCXI_CellTreat_96_wellplate_well_B6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.83, + "y": 61.67, + "z": 4.05 + }, + "position3d": { + "x": 55.83, + "y": 61.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_5_1_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.83, + "y": 61.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_C6", + "uuid": "bd4339c1-51ba-4efd-b418-dae4384eaca0", + "name": "PRCXI_CellTreat_96_wellplate_well_C6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.83, + "y": 52.67, + "z": 4.05 + }, + "position3d": { + "x": 55.83, + "y": 52.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_5_2_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.83, + "y": 52.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_D6", + "uuid": "c1000d99-aa42-4c27-ab8c-6672a1118c43", + "name": "PRCXI_CellTreat_96_wellplate_well_D6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.83, + "y": 43.67, + "z": 4.05 + }, + "position3d": { + "x": 55.83, + "y": 43.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_5_3_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.83, + "y": 43.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_E6", + "uuid": "71d64168-5adc-4216-b49a-8d09935be891", + "name": "PRCXI_CellTreat_96_wellplate_well_E6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.83, + "y": 34.67, + "z": 4.05 + }, + "position3d": { + "x": 55.83, + "y": 34.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_5_4_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.83, + "y": 34.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_F6", + "uuid": "da3050ac-dde3-4ddc-a380-a28f94e7bd09", + "name": "PRCXI_CellTreat_96_wellplate_well_F6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.83, + "y": 25.67, + "z": 4.05 + }, + "position3d": { + "x": 55.83, + "y": 25.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_5_5_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.83, + "y": 25.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_G6", + "uuid": "06d61a09-6d05-4509-9884-2c073042d005", + "name": "PRCXI_CellTreat_96_wellplate_well_G6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.83, + "y": 16.67, + "z": 4.05 + }, + "position3d": { + "x": 55.83, + "y": 16.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_5_6_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.83, + "y": 16.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_H6", + "uuid": "309dff9a-4dab-43f4-9248-afb5da920edc", + "name": "PRCXI_CellTreat_96_wellplate_well_H6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.83, + "y": 7.67, + "z": 4.05 + }, + "position3d": { + "x": 55.83, + "y": 7.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_5_7_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.83, + "y": 7.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_A7", + "uuid": "581fc294-f554-4eec-8bc1-da8b30231453", + "name": "PRCXI_CellTreat_96_wellplate_well_A7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.83, + "y": 70.67, + "z": 4.05 + }, + "position3d": { + "x": 64.83, + "y": 70.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_6_0_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.83, + "y": 70.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_B7", + "uuid": "4a52afe4-1c3d-43a2-98a4-4c0861fa252e", + "name": "PRCXI_CellTreat_96_wellplate_well_B7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.83, + "y": 61.67, + "z": 4.05 + }, + "position3d": { + "x": 64.83, + "y": 61.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_6_1_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.83, + "y": 61.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_C7", + "uuid": "95f362ee-630f-4d1e-8007-70378df81b8d", + "name": "PRCXI_CellTreat_96_wellplate_well_C7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.83, + "y": 52.67, + "z": 4.05 + }, + "position3d": { + "x": 64.83, + "y": 52.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_6_2_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.83, + "y": 52.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_D7", + "uuid": "dc1084c9-7f8a-4ac7-b5e4-31d416f4ea3c", + "name": "PRCXI_CellTreat_96_wellplate_well_D7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.83, + "y": 43.67, + "z": 4.05 + }, + "position3d": { + "x": 64.83, + "y": 43.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_6_3_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.83, + "y": 43.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_E7", + "uuid": "5ac7185a-d6a3-4d3e-b31d-a1618d82a1db", + "name": "PRCXI_CellTreat_96_wellplate_well_E7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.83, + "y": 34.67, + "z": 4.05 + }, + "position3d": { + "x": 64.83, + "y": 34.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_6_4_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.83, + "y": 34.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_F7", + "uuid": "b7025bb9-ff68-4215-bb31-949a6932c757", + "name": "PRCXI_CellTreat_96_wellplate_well_F7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.83, + "y": 25.67, + "z": 4.05 + }, + "position3d": { + "x": 64.83, + "y": 25.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_6_5_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.83, + "y": 25.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_G7", + "uuid": "8d41015a-6a7a-40d9-b384-9b2cf4a4719e", + "name": "PRCXI_CellTreat_96_wellplate_well_G7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.83, + "y": 16.67, + "z": 4.05 + }, + "position3d": { + "x": 64.83, + "y": 16.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_6_6_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.83, + "y": 16.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_H7", + "uuid": "9823edeb-2d28-42f5-8d13-94cab20d2483", + "name": "PRCXI_CellTreat_96_wellplate_well_H7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.83, + "y": 7.67, + "z": 4.05 + }, + "position3d": { + "x": 64.83, + "y": 7.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_6_7_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.83, + "y": 7.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_A8", + "uuid": "8d9f4f96-be39-4121-8a09-7db94c075882", + "name": "PRCXI_CellTreat_96_wellplate_well_A8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.83, + "y": 70.67, + "z": 4.05 + }, + "position3d": { + "x": 73.83, + "y": 70.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_7_0_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.83, + "y": 70.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_B8", + "uuid": "dc403a2c-efbb-4755-92ff-1f68cda0bf01", + "name": "PRCXI_CellTreat_96_wellplate_well_B8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.83, + "y": 61.67, + "z": 4.05 + }, + "position3d": { + "x": 73.83, + "y": 61.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_7_1_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.83, + "y": 61.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_C8", + "uuid": "a4faea7c-374b-4b26-a7ba-b1b65f8f28f7", + "name": "PRCXI_CellTreat_96_wellplate_well_C8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.83, + "y": 52.67, + "z": 4.05 + }, + "position3d": { + "x": 73.83, + "y": 52.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_7_2_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.83, + "y": 52.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_D8", + "uuid": "da0a94fd-4e84-45f0-a056-d34ec5ce6a77", + "name": "PRCXI_CellTreat_96_wellplate_well_D8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.83, + "y": 43.67, + "z": 4.05 + }, + "position3d": { + "x": 73.83, + "y": 43.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_7_3_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.83, + "y": 43.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_E8", + "uuid": "9beb152e-17fb-4203-91be-05d8939845cf", + "name": "PRCXI_CellTreat_96_wellplate_well_E8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.83, + "y": 34.67, + "z": 4.05 + }, + "position3d": { + "x": 73.83, + "y": 34.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_7_4_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.83, + "y": 34.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_F8", + "uuid": "4ef795be-dd34-45c3-bc97-759e58375b9e", + "name": "PRCXI_CellTreat_96_wellplate_well_F8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.83, + "y": 25.67, + "z": 4.05 + }, + "position3d": { + "x": 73.83, + "y": 25.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_7_5_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.83, + "y": 25.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_G8", + "uuid": "6154759c-26ab-43c8-a8d3-a9866a6c6eac", + "name": "PRCXI_CellTreat_96_wellplate_well_G8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.83, + "y": 16.67, + "z": 4.05 + }, + "position3d": { + "x": 73.83, + "y": 16.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_7_6_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.83, + "y": 16.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_H8", + "uuid": "7ca08b39-15eb-45a1-bced-8d86810f661a", + "name": "PRCXI_CellTreat_96_wellplate_well_H8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.83, + "y": 7.67, + "z": 4.05 + }, + "position3d": { + "x": 73.83, + "y": 7.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_7_7_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.83, + "y": 7.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_A9", + "uuid": "130b3351-4678-49ce-95bb-54f5dfa9123e", + "name": "PRCXI_CellTreat_96_wellplate_well_A9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.83, + "y": 70.67, + "z": 4.05 + }, + "position3d": { + "x": 82.83, + "y": 70.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_8_0_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.83, + "y": 70.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_B9", + "uuid": "33f78959-1f8c-4e69-b496-e07ca1ac522c", + "name": "PRCXI_CellTreat_96_wellplate_well_B9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.83, + "y": 61.67, + "z": 4.05 + }, + "position3d": { + "x": 82.83, + "y": 61.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_8_1_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.83, + "y": 61.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_C9", + "uuid": "ad96c350-bbd4-45e7-87e8-42150a28103e", + "name": "PRCXI_CellTreat_96_wellplate_well_C9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.83, + "y": 52.67, + "z": 4.05 + }, + "position3d": { + "x": 82.83, + "y": 52.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_8_2_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.83, + "y": 52.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_D9", + "uuid": "f13f4a65-effa-4241-a7e5-95f695493b5e", + "name": "PRCXI_CellTreat_96_wellplate_well_D9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.83, + "y": 43.67, + "z": 4.05 + }, + "position3d": { + "x": 82.83, + "y": 43.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_8_3_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.83, + "y": 43.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_E9", + "uuid": "5c35c4f3-23b3-41ed-bf38-180fab9a07e5", + "name": "PRCXI_CellTreat_96_wellplate_well_E9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.83, + "y": 34.67, + "z": 4.05 + }, + "position3d": { + "x": 82.83, + "y": 34.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_8_4_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.83, + "y": 34.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_F9", + "uuid": "4d8a13d4-28a2-4d48-81f1-893f907c24ca", + "name": "PRCXI_CellTreat_96_wellplate_well_F9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.83, + "y": 25.67, + "z": 4.05 + }, + "position3d": { + "x": 82.83, + "y": 25.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_8_5_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.83, + "y": 25.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_G9", + "uuid": "cf735034-5433-43aa-be42-bfaf96a1abcc", + "name": "PRCXI_CellTreat_96_wellplate_well_G9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.83, + "y": 16.67, + "z": 4.05 + }, + "position3d": { + "x": 82.83, + "y": 16.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_8_6_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.83, + "y": 16.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_H9", + "uuid": "af3382dc-035a-411c-acbb-6c2081d3a9fe", + "name": "PRCXI_CellTreat_96_wellplate_well_H9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.83, + "y": 7.67, + "z": 4.05 + }, + "position3d": { + "x": 82.83, + "y": 7.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_8_7_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.83, + "y": 7.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_A10", + "uuid": "c60bbbed-e445-4230-a14f-7bb9682c31dc", + "name": "PRCXI_CellTreat_96_wellplate_well_A10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.83, + "y": 70.67, + "z": 4.05 + }, + "position3d": { + "x": 91.83, + "y": 70.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_9_0_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.83, + "y": 70.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_B10", + "uuid": "e575cba6-4741-4cbf-ac70-444caf3664a8", + "name": "PRCXI_CellTreat_96_wellplate_well_B10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.83, + "y": 61.67, + "z": 4.05 + }, + "position3d": { + "x": 91.83, + "y": 61.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_9_1_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.83, + "y": 61.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_C10", + "uuid": "ac64bf1d-254d-419b-be31-c9ee15cde235", + "name": "PRCXI_CellTreat_96_wellplate_well_C10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.83, + "y": 52.67, + "z": 4.05 + }, + "position3d": { + "x": 91.83, + "y": 52.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_9_2_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.83, + "y": 52.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_D10", + "uuid": "be350dae-5bb2-4081-9a0a-a46d554b26c6", + "name": "PRCXI_CellTreat_96_wellplate_well_D10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.83, + "y": 43.67, + "z": 4.05 + }, + "position3d": { + "x": 91.83, + "y": 43.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_9_3_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.83, + "y": 43.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_E10", + "uuid": "b9d37514-bace-4ff0-a88d-e02e176697b3", + "name": "PRCXI_CellTreat_96_wellplate_well_E10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.83, + "y": 34.67, + "z": 4.05 + }, + "position3d": { + "x": 91.83, + "y": 34.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_9_4_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.83, + "y": 34.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_F10", + "uuid": "1cf25ba5-838a-4b12-ac1b-a42966a40fbe", + "name": "PRCXI_CellTreat_96_wellplate_well_F10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.83, + "y": 25.67, + "z": 4.05 + }, + "position3d": { + "x": 91.83, + "y": 25.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_9_5_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.83, + "y": 25.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_G10", + "uuid": "6f01f55c-a16f-4c35-bd38-3a5151d034c1", + "name": "PRCXI_CellTreat_96_wellplate_well_G10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.83, + "y": 16.67, + "z": 4.05 + }, + "position3d": { + "x": 91.83, + "y": 16.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_9_6_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.83, + "y": 16.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_H10", + "uuid": "e8b4612f-9f8d-4a94-b44d-7c136808b81f", + "name": "PRCXI_CellTreat_96_wellplate_well_H10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.83, + "y": 7.67, + "z": 4.05 + }, + "position3d": { + "x": 91.83, + "y": 7.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_9_7_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.83, + "y": 7.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_A11", + "uuid": "45118953-538d-421e-b97d-760dddbaef59", + "name": "PRCXI_CellTreat_96_wellplate_well_A11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.83, + "y": 70.67, + "z": 4.05 + }, + "position3d": { + "x": 100.83, + "y": 70.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_10_0_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.83, + "y": 70.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_B11", + "uuid": "9158ac88-5994-4b50-8849-d646f3b29520", + "name": "PRCXI_CellTreat_96_wellplate_well_B11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.83, + "y": 61.67, + "z": 4.05 + }, + "position3d": { + "x": 100.83, + "y": 61.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_10_1_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.83, + "y": 61.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_C11", + "uuid": "04e4ed18-4b27-463e-a342-2804aa585d27", + "name": "PRCXI_CellTreat_96_wellplate_well_C11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.83, + "y": 52.67, + "z": 4.05 + }, + "position3d": { + "x": 100.83, + "y": 52.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_10_2_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.83, + "y": 52.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_D11", + "uuid": "d78b6e27-415d-410a-b8a2-541fda209047", + "name": "PRCXI_CellTreat_96_wellplate_well_D11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.83, + "y": 43.67, + "z": 4.05 + }, + "position3d": { + "x": 100.83, + "y": 43.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_10_3_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.83, + "y": 43.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_E11", + "uuid": "37390df5-ae41-4f9c-845a-332c7ba688ec", + "name": "PRCXI_CellTreat_96_wellplate_well_E11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.83, + "y": 34.67, + "z": 4.05 + }, + "position3d": { + "x": 100.83, + "y": 34.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_10_4_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.83, + "y": 34.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_F11", + "uuid": "35f8f559-a388-4fb7-91f1-ff32852055ff", + "name": "PRCXI_CellTreat_96_wellplate_well_F11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.83, + "y": 25.67, + "z": 4.05 + }, + "position3d": { + "x": 100.83, + "y": 25.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_10_5_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.83, + "y": 25.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_G11", + "uuid": "a1e1e8c3-aeee-4d90-af5f-5f0472f78d97", + "name": "PRCXI_CellTreat_96_wellplate_well_G11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.83, + "y": 16.67, + "z": 4.05 + }, + "position3d": { + "x": 100.83, + "y": 16.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_10_6_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.83, + "y": 16.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_H11", + "uuid": "5887c942-1051-4cef-abcf-00ebb2e7d437", + "name": "PRCXI_CellTreat_96_wellplate_well_H11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.83, + "y": 7.67, + "z": 4.05 + }, + "position3d": { + "x": 100.83, + "y": 7.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_10_7_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.83, + "y": 7.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_A12", + "uuid": "821f35e6-b946-4068-beac-0d015b15c16a", + "name": "PRCXI_CellTreat_96_wellplate_well_A12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.83, + "y": 70.67, + "z": 4.05 + }, + "position3d": { + "x": 109.83, + "y": 70.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_11_0_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.83, + "y": 70.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_B12", + "uuid": "c7680027-bac5-46e0-b254-b6ea43a2f43c", + "name": "PRCXI_CellTreat_96_wellplate_well_B12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.83, + "y": 61.67, + "z": 4.05 + }, + "position3d": { + "x": 109.83, + "y": 61.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_11_1_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.83, + "y": 61.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_C12", + "uuid": "1dcf91de-b7d8-4a96-b0a2-b98516eac5ba", + "name": "PRCXI_CellTreat_96_wellplate_well_C12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.83, + "y": 52.67, + "z": 4.05 + }, + "position3d": { + "x": 109.83, + "y": 52.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_11_2_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.83, + "y": 52.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_D12", + "uuid": "651564dd-a3ad-4329-87bd-9f340f676cc0", + "name": "PRCXI_CellTreat_96_wellplate_well_D12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.83, + "y": 43.67, + "z": 4.05 + }, + "position3d": { + "x": 109.83, + "y": 43.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_11_3_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.83, + "y": 43.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_E12", + "uuid": "e65d8792-4348-4d06-8ef8-8abc90077b23", + "name": "PRCXI_CellTreat_96_wellplate_well_E12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.83, + "y": 34.67, + "z": 4.05 + }, + "position3d": { + "x": 109.83, + "y": 34.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_11_4_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.83, + "y": 34.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_F12", + "uuid": "8b6de1ed-3cdd-41c7-b53c-3bed39fc2568", + "name": "PRCXI_CellTreat_96_wellplate_well_F12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.83, + "y": 25.67, + "z": 4.05 + }, + "position3d": { + "x": 109.83, + "y": 25.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_11_5_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.83, + "y": 25.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_G12", + "uuid": "a1082fb0-a8f6-43c3-a817-dbc767ae02e4", + "name": "PRCXI_CellTreat_96_wellplate_well_G12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.83, + "y": 16.67, + "z": 4.05 + }, + "position3d": { + "x": 109.83, + "y": 16.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_11_6_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.83, + "y": 16.67, + "z": 4.05 + } + }, + { + "id": "PRCXI_CellTreat_96_wellplate_well_H12", + "uuid": "14d57532-14a7-4a46-87d9-cd26c5be4b96", + "name": "PRCXI_CellTreat_96_wellplate_well_H12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5c9aee2-f07d-4eb9-9d9c-4d56c5f28d45", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 10.04, + "width": 6.96, + "height": 6.96 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.83, + "y": 7.67, + "z": 4.05 + }, + "position3d": { + "x": 109.83, + "y": 7.67, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6.96, + "size_y": 6.96, + "size_z": 10.04, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 300, + "material_z_thickness": 1.75, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_11_7_volume_tracker", + "max_volume": 300, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.83, + "y": 7.67, + "z": 4.05 + } + } + ] + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted", + "category": [ + "prcxi", + "plates" + ], + "class": { + "module": "unilabos.devices.liquid_handling.prcxi.prcxi_labware:PRCXI_PCR_Plate_200uL_nonskirted", + "type": "pylabrobot" + }, + "description": "0.2ml PCR 板 (Code: ZX-023-0.2)", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/prcxi/plates.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted", + "uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "name": "PRCXI_PCR_Plate_200uL_nonskirted", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "plate", + "class": "", + "pose": { + "size": { + "depth": 26.0, + "width": 119.5, + "height": 80.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "PRCXI9300Plate", + "size_x": 119.5, + "size_y": 80.0, + "size_z": 26.0, + "category": "plate", + "model": "PRCXI_PCR_Plate_200uL_nonskirted", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "PRCXI_PCR_Plate_200uL_nonskirted_well_A1", + "B1": "PRCXI_PCR_Plate_200uL_nonskirted_well_B1", + "C1": "PRCXI_PCR_Plate_200uL_nonskirted_well_C1", + "D1": "PRCXI_PCR_Plate_200uL_nonskirted_well_D1", + "E1": "PRCXI_PCR_Plate_200uL_nonskirted_well_E1", + "F1": "PRCXI_PCR_Plate_200uL_nonskirted_well_F1", + "G1": "PRCXI_PCR_Plate_200uL_nonskirted_well_G1", + "H1": "PRCXI_PCR_Plate_200uL_nonskirted_well_H1", + "A2": "PRCXI_PCR_Plate_200uL_nonskirted_well_A2", + "B2": "PRCXI_PCR_Plate_200uL_nonskirted_well_B2", + "C2": "PRCXI_PCR_Plate_200uL_nonskirted_well_C2", + "D2": "PRCXI_PCR_Plate_200uL_nonskirted_well_D2", + "E2": "PRCXI_PCR_Plate_200uL_nonskirted_well_E2", + "F2": "PRCXI_PCR_Plate_200uL_nonskirted_well_F2", + "G2": "PRCXI_PCR_Plate_200uL_nonskirted_well_G2", + "H2": "PRCXI_PCR_Plate_200uL_nonskirted_well_H2", + "A3": "PRCXI_PCR_Plate_200uL_nonskirted_well_A3", + "B3": "PRCXI_PCR_Plate_200uL_nonskirted_well_B3", + "C3": "PRCXI_PCR_Plate_200uL_nonskirted_well_C3", + "D3": "PRCXI_PCR_Plate_200uL_nonskirted_well_D3", + "E3": "PRCXI_PCR_Plate_200uL_nonskirted_well_E3", + "F3": "PRCXI_PCR_Plate_200uL_nonskirted_well_F3", + "G3": "PRCXI_PCR_Plate_200uL_nonskirted_well_G3", + "H3": "PRCXI_PCR_Plate_200uL_nonskirted_well_H3", + "A4": "PRCXI_PCR_Plate_200uL_nonskirted_well_A4", + "B4": "PRCXI_PCR_Plate_200uL_nonskirted_well_B4", + "C4": "PRCXI_PCR_Plate_200uL_nonskirted_well_C4", + "D4": "PRCXI_PCR_Plate_200uL_nonskirted_well_D4", + "E4": "PRCXI_PCR_Plate_200uL_nonskirted_well_E4", + "F4": "PRCXI_PCR_Plate_200uL_nonskirted_well_F4", + "G4": "PRCXI_PCR_Plate_200uL_nonskirted_well_G4", + "H4": "PRCXI_PCR_Plate_200uL_nonskirted_well_H4", + "A5": "PRCXI_PCR_Plate_200uL_nonskirted_well_A5", + "B5": "PRCXI_PCR_Plate_200uL_nonskirted_well_B5", + "C5": "PRCXI_PCR_Plate_200uL_nonskirted_well_C5", + "D5": "PRCXI_PCR_Plate_200uL_nonskirted_well_D5", + "E5": "PRCXI_PCR_Plate_200uL_nonskirted_well_E5", + "F5": "PRCXI_PCR_Plate_200uL_nonskirted_well_F5", + "G5": "PRCXI_PCR_Plate_200uL_nonskirted_well_G5", + "H5": "PRCXI_PCR_Plate_200uL_nonskirted_well_H5", + "A6": "PRCXI_PCR_Plate_200uL_nonskirted_well_A6", + "B6": "PRCXI_PCR_Plate_200uL_nonskirted_well_B6", + "C6": "PRCXI_PCR_Plate_200uL_nonskirted_well_C6", + "D6": "PRCXI_PCR_Plate_200uL_nonskirted_well_D6", + "E6": "PRCXI_PCR_Plate_200uL_nonskirted_well_E6", + "F6": "PRCXI_PCR_Plate_200uL_nonskirted_well_F6", + "G6": "PRCXI_PCR_Plate_200uL_nonskirted_well_G6", + "H6": "PRCXI_PCR_Plate_200uL_nonskirted_well_H6", + "A7": "PRCXI_PCR_Plate_200uL_nonskirted_well_A7", + "B7": "PRCXI_PCR_Plate_200uL_nonskirted_well_B7", + "C7": "PRCXI_PCR_Plate_200uL_nonskirted_well_C7", + "D7": "PRCXI_PCR_Plate_200uL_nonskirted_well_D7", + "E7": "PRCXI_PCR_Plate_200uL_nonskirted_well_E7", + "F7": "PRCXI_PCR_Plate_200uL_nonskirted_well_F7", + "G7": "PRCXI_PCR_Plate_200uL_nonskirted_well_G7", + "H7": "PRCXI_PCR_Plate_200uL_nonskirted_well_H7", + "A8": "PRCXI_PCR_Plate_200uL_nonskirted_well_A8", + "B8": "PRCXI_PCR_Plate_200uL_nonskirted_well_B8", + "C8": "PRCXI_PCR_Plate_200uL_nonskirted_well_C8", + "D8": "PRCXI_PCR_Plate_200uL_nonskirted_well_D8", + "E8": "PRCXI_PCR_Plate_200uL_nonskirted_well_E8", + "F8": "PRCXI_PCR_Plate_200uL_nonskirted_well_F8", + "G8": "PRCXI_PCR_Plate_200uL_nonskirted_well_G8", + "H8": "PRCXI_PCR_Plate_200uL_nonskirted_well_H8", + "A9": "PRCXI_PCR_Plate_200uL_nonskirted_well_A9", + "B9": "PRCXI_PCR_Plate_200uL_nonskirted_well_B9", + "C9": "PRCXI_PCR_Plate_200uL_nonskirted_well_C9", + "D9": "PRCXI_PCR_Plate_200uL_nonskirted_well_D9", + "E9": "PRCXI_PCR_Plate_200uL_nonskirted_well_E9", + "F9": "PRCXI_PCR_Plate_200uL_nonskirted_well_F9", + "G9": "PRCXI_PCR_Plate_200uL_nonskirted_well_G9", + "H9": "PRCXI_PCR_Plate_200uL_nonskirted_well_H9", + "A10": "PRCXI_PCR_Plate_200uL_nonskirted_well_A10", + "B10": "PRCXI_PCR_Plate_200uL_nonskirted_well_B10", + "C10": "PRCXI_PCR_Plate_200uL_nonskirted_well_C10", + "D10": "PRCXI_PCR_Plate_200uL_nonskirted_well_D10", + "E10": "PRCXI_PCR_Plate_200uL_nonskirted_well_E10", + "F10": "PRCXI_PCR_Plate_200uL_nonskirted_well_F10", + "G10": "PRCXI_PCR_Plate_200uL_nonskirted_well_G10", + "H10": "PRCXI_PCR_Plate_200uL_nonskirted_well_H10", + "A11": "PRCXI_PCR_Plate_200uL_nonskirted_well_A11", + "B11": "PRCXI_PCR_Plate_200uL_nonskirted_well_B11", + "C11": "PRCXI_PCR_Plate_200uL_nonskirted_well_C11", + "D11": "PRCXI_PCR_Plate_200uL_nonskirted_well_D11", + "E11": "PRCXI_PCR_Plate_200uL_nonskirted_well_E11", + "F11": "PRCXI_PCR_Plate_200uL_nonskirted_well_F11", + "G11": "PRCXI_PCR_Plate_200uL_nonskirted_well_G11", + "H11": "PRCXI_PCR_Plate_200uL_nonskirted_well_H11", + "A12": "PRCXI_PCR_Plate_200uL_nonskirted_well_A12", + "B12": "PRCXI_PCR_Plate_200uL_nonskirted_well_B12", + "C12": "PRCXI_PCR_Plate_200uL_nonskirted_well_C12", + "D12": "PRCXI_PCR_Plate_200uL_nonskirted_well_D12", + "E12": "PRCXI_PCR_Plate_200uL_nonskirted_well_E12", + "F12": "PRCXI_PCR_Plate_200uL_nonskirted_well_F12", + "G12": "PRCXI_PCR_Plate_200uL_nonskirted_well_G12", + "H12": "PRCXI_PCR_Plate_200uL_nonskirted_well_H12" + } + }, + "data": { + "Material": { + "uuid": "73bb9b10bc394978b70e027bf45ce2d3", + "Code": "ZX-023-0.2", + "Name": "0.2ml PCR 板", + "materialEnum": 0, + "SupplyType": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_A1", + "uuid": "8610c40d-0688-4843-aa91-9a967affe1b8", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 7.0, + "y": 68.0, + "z": 0.0 + }, + "position3d": { + "x": 7.0, + "y": 68.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_0_0_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 7.0, + "y": 68.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_B1", + "uuid": "1136d07b-8e60-4fd3-a1f9-48f9ab23e909", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_B1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 7.0, + "y": 59.0, + "z": 0.0 + }, + "position3d": { + "x": 7.0, + "y": 59.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_0_1_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 7.0, + "y": 59.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_C1", + "uuid": "c09458aa-3bac-44ee-857d-8ac91496e5e8", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_C1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 7.0, + "y": 50.0, + "z": 0.0 + }, + "position3d": { + "x": 7.0, + "y": 50.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_0_2_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 7.0, + "y": 50.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_D1", + "uuid": "d2b02885-fe6c-4fc4-a452-3541504294c1", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_D1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 7.0, + "y": 41.0, + "z": 0.0 + }, + "position3d": { + "x": 7.0, + "y": 41.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_0_3_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 7.0, + "y": 41.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_E1", + "uuid": "8ec2ad65-f836-4ed0-bf2f-4ec7a36571ca", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_E1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 7.0, + "y": 32.0, + "z": 0.0 + }, + "position3d": { + "x": 7.0, + "y": 32.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_0_4_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 7.0, + "y": 32.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_F1", + "uuid": "aebba059-2bb1-4008-9707-d4f4494be374", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_F1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 7.0, + "y": 23.0, + "z": 0.0 + }, + "position3d": { + "x": 7.0, + "y": 23.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_0_5_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 7.0, + "y": 23.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_G1", + "uuid": "24d207e3-a90b-4773-aa15-3953c102a4b4", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_G1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 7.0, + "y": 14.0, + "z": 0.0 + }, + "position3d": { + "x": 7.0, + "y": 14.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_0_6_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 7.0, + "y": 14.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_H1", + "uuid": "57c69f90-d506-4a52-b14f-abd6605582f9", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_H1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 7.0, + "y": 5.0, + "z": 0.0 + }, + "position3d": { + "x": 7.0, + "y": 5.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_0_7_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 7.0, + "y": 5.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_A2", + "uuid": "4283f091-2947-42e2-b9b9-443749ddb7e6", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 16.0, + "y": 68.0, + "z": 0.0 + }, + "position3d": { + "x": 16.0, + "y": 68.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_1_0_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 16.0, + "y": 68.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_B2", + "uuid": "f6c56d17-a8eb-46b5-a881-e3474fd021df", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_B2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 16.0, + "y": 59.0, + "z": 0.0 + }, + "position3d": { + "x": 16.0, + "y": 59.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_1_1_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 16.0, + "y": 59.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_C2", + "uuid": "37d2b1d9-6820-43c7-9d9e-91b08ceea293", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_C2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 16.0, + "y": 50.0, + "z": 0.0 + }, + "position3d": { + "x": 16.0, + "y": 50.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_1_2_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 16.0, + "y": 50.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_D2", + "uuid": "3b1e395f-b744-4c99-8adc-af8099085a74", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_D2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 16.0, + "y": 41.0, + "z": 0.0 + }, + "position3d": { + "x": 16.0, + "y": 41.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_1_3_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 16.0, + "y": 41.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_E2", + "uuid": "8b3a78f8-e93e-48a8-b748-61372b5efc9f", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_E2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 16.0, + "y": 32.0, + "z": 0.0 + }, + "position3d": { + "x": 16.0, + "y": 32.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_1_4_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 16.0, + "y": 32.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_F2", + "uuid": "d5436ef7-c471-4991-9fe1-22543af23bf1", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_F2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 16.0, + "y": 23.0, + "z": 0.0 + }, + "position3d": { + "x": 16.0, + "y": 23.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_1_5_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 16.0, + "y": 23.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_G2", + "uuid": "7dca151a-dccb-49ed-baad-076321441e50", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_G2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 16.0, + "y": 14.0, + "z": 0.0 + }, + "position3d": { + "x": 16.0, + "y": 14.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_1_6_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 16.0, + "y": 14.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_H2", + "uuid": "5b894f4a-2464-4a14-b003-ff3c67ad44d3", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_H2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 16.0, + "y": 5.0, + "z": 0.0 + }, + "position3d": { + "x": 16.0, + "y": 5.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_1_7_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 16.0, + "y": 5.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_A3", + "uuid": "0ebf8cda-b8c1-4b75-999c-8dbc9c4d607f", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 25.0, + "y": 68.0, + "z": 0.0 + }, + "position3d": { + "x": 25.0, + "y": 68.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_2_0_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 25.0, + "y": 68.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_B3", + "uuid": "e5c09832-98ae-4902-ac60-ea22543b2f07", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_B3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 25.0, + "y": 59.0, + "z": 0.0 + }, + "position3d": { + "x": 25.0, + "y": 59.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_2_1_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 25.0, + "y": 59.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_C3", + "uuid": "31f705cc-de55-45ac-8dc9-e2b87b4a8fc3", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_C3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 25.0, + "y": 50.0, + "z": 0.0 + }, + "position3d": { + "x": 25.0, + "y": 50.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_2_2_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 25.0, + "y": 50.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_D3", + "uuid": "f97ba164-82d7-447d-8522-2da3016db5f4", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_D3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 25.0, + "y": 41.0, + "z": 0.0 + }, + "position3d": { + "x": 25.0, + "y": 41.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_2_3_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 25.0, + "y": 41.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_E3", + "uuid": "aa1fe8a8-f32d-42d9-93c2-40309e6415ce", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_E3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 25.0, + "y": 32.0, + "z": 0.0 + }, + "position3d": { + "x": 25.0, + "y": 32.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_2_4_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 25.0, + "y": 32.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_F3", + "uuid": "38ed3674-5a7c-4209-bce3-4e2b654dfbd5", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_F3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 25.0, + "y": 23.0, + "z": 0.0 + }, + "position3d": { + "x": 25.0, + "y": 23.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_2_5_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 25.0, + "y": 23.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_G3", + "uuid": "6786bd94-94b6-43dc-b597-a924a928c0c5", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_G3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 25.0, + "y": 14.0, + "z": 0.0 + }, + "position3d": { + "x": 25.0, + "y": 14.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_2_6_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 25.0, + "y": 14.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_H3", + "uuid": "876b4d61-59e1-4222-92a5-323b3e9b923e", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_H3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 25.0, + "y": 5.0, + "z": 0.0 + }, + "position3d": { + "x": 25.0, + "y": 5.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_2_7_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 25.0, + "y": 5.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_A4", + "uuid": "a73a2808-6836-405f-afa1-71709d5971c9", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_A4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 34.0, + "y": 68.0, + "z": 0.0 + }, + "position3d": { + "x": 34.0, + "y": 68.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_3_0_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 34.0, + "y": 68.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_B4", + "uuid": "564ef7e0-2331-4b3a-85d7-6bd904580701", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_B4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 34.0, + "y": 59.0, + "z": 0.0 + }, + "position3d": { + "x": 34.0, + "y": 59.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_3_1_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 34.0, + "y": 59.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_C4", + "uuid": "fa15b59e-7d94-4465-a27f-344b4dd9eb25", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_C4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 34.0, + "y": 50.0, + "z": 0.0 + }, + "position3d": { + "x": 34.0, + "y": 50.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_3_2_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 34.0, + "y": 50.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_D4", + "uuid": "0391c35f-b23a-4ac4-8d04-ab161a9cef0d", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_D4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 34.0, + "y": 41.0, + "z": 0.0 + }, + "position3d": { + "x": 34.0, + "y": 41.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_3_3_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 34.0, + "y": 41.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_E4", + "uuid": "450e4c62-0116-4232-abf3-6080fb0170d6", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_E4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 34.0, + "y": 32.0, + "z": 0.0 + }, + "position3d": { + "x": 34.0, + "y": 32.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_3_4_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 34.0, + "y": 32.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_F4", + "uuid": "42e30a6c-d5cd-4278-9241-37ee8d7b92f4", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_F4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 34.0, + "y": 23.0, + "z": 0.0 + }, + "position3d": { + "x": 34.0, + "y": 23.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_3_5_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 34.0, + "y": 23.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_G4", + "uuid": "5814dd2f-0529-426d-abea-c3c0523652cf", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_G4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 34.0, + "y": 14.0, + "z": 0.0 + }, + "position3d": { + "x": 34.0, + "y": 14.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_3_6_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 34.0, + "y": 14.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_H4", + "uuid": "b49d490b-e9b2-4b53-81f3-d3cd85219c2a", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_H4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 34.0, + "y": 5.0, + "z": 0.0 + }, + "position3d": { + "x": 34.0, + "y": 5.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_3_7_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 34.0, + "y": 5.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_A5", + "uuid": "eae8b882-1d14-4f90-b23d-914cd5d8cac8", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_A5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 43.0, + "y": 68.0, + "z": 0.0 + }, + "position3d": { + "x": 43.0, + "y": 68.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_4_0_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 43.0, + "y": 68.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_B5", + "uuid": "70074223-f553-4e93-a1ec-8d1379c49f2a", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_B5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 43.0, + "y": 59.0, + "z": 0.0 + }, + "position3d": { + "x": 43.0, + "y": 59.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_4_1_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 43.0, + "y": 59.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_C5", + "uuid": "4f49d917-a27d-429f-a2b0-632250eafad0", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_C5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 43.0, + "y": 50.0, + "z": 0.0 + }, + "position3d": { + "x": 43.0, + "y": 50.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_4_2_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 43.0, + "y": 50.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_D5", + "uuid": "fbcaf145-8ed2-48e8-a12b-ad3121579756", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_D5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 43.0, + "y": 41.0, + "z": 0.0 + }, + "position3d": { + "x": 43.0, + "y": 41.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_4_3_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 43.0, + "y": 41.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_E5", + "uuid": "ccfe79a2-a0bc-4d7f-8a65-f22a50d2bab0", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_E5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 43.0, + "y": 32.0, + "z": 0.0 + }, + "position3d": { + "x": 43.0, + "y": 32.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_4_4_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 43.0, + "y": 32.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_F5", + "uuid": "416778b7-82a7-4ea7-a83e-f09423471057", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_F5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 43.0, + "y": 23.0, + "z": 0.0 + }, + "position3d": { + "x": 43.0, + "y": 23.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_4_5_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 43.0, + "y": 23.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_G5", + "uuid": "45e24434-2e18-497d-b620-a784caa03267", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_G5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 43.0, + "y": 14.0, + "z": 0.0 + }, + "position3d": { + "x": 43.0, + "y": 14.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_4_6_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 43.0, + "y": 14.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_H5", + "uuid": "e059f2e6-49b5-4b82-be24-72c6bab971d3", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_H5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 43.0, + "y": 5.0, + "z": 0.0 + }, + "position3d": { + "x": 43.0, + "y": 5.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_4_7_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 43.0, + "y": 5.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_A6", + "uuid": "f4c87ddf-2e17-4fd7-8073-5ed2787903fd", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_A6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 52.0, + "y": 68.0, + "z": 0.0 + }, + "position3d": { + "x": 52.0, + "y": 68.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_5_0_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 52.0, + "y": 68.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_B6", + "uuid": "d3b2411e-757b-4085-b13a-1263082cda23", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_B6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 52.0, + "y": 59.0, + "z": 0.0 + }, + "position3d": { + "x": 52.0, + "y": 59.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_5_1_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 52.0, + "y": 59.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_C6", + "uuid": "b7527215-6145-4432-952d-a609468552a6", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_C6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 52.0, + "y": 50.0, + "z": 0.0 + }, + "position3d": { + "x": 52.0, + "y": 50.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_5_2_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 52.0, + "y": 50.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_D6", + "uuid": "0ae81298-2d09-42aa-a0da-2f8bff745307", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_D6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 52.0, + "y": 41.0, + "z": 0.0 + }, + "position3d": { + "x": 52.0, + "y": 41.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_5_3_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 52.0, + "y": 41.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_E6", + "uuid": "d929687e-2af7-43c3-9bb9-60f9b5636743", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_E6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 52.0, + "y": 32.0, + "z": 0.0 + }, + "position3d": { + "x": 52.0, + "y": 32.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_5_4_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 52.0, + "y": 32.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_F6", + "uuid": "3c64c221-b956-4c39-a473-e65f15f5daa3", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_F6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 52.0, + "y": 23.0, + "z": 0.0 + }, + "position3d": { + "x": 52.0, + "y": 23.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_5_5_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 52.0, + "y": 23.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_G6", + "uuid": "d82a49c6-f13c-4de0-b874-7ab5980a6c8b", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_G6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 52.0, + "y": 14.0, + "z": 0.0 + }, + "position3d": { + "x": 52.0, + "y": 14.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_5_6_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 52.0, + "y": 14.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_H6", + "uuid": "f33036b2-b3ca-43fc-b9ee-e549d97ee02c", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_H6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 52.0, + "y": 5.0, + "z": 0.0 + }, + "position3d": { + "x": 52.0, + "y": 5.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_5_7_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 52.0, + "y": 5.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_A7", + "uuid": "0d1e3d2f-28e8-4f09-afd1-6ab7c8ffbbc7", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_A7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 61.0, + "y": 68.0, + "z": 0.0 + }, + "position3d": { + "x": 61.0, + "y": 68.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_6_0_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 61.0, + "y": 68.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_B7", + "uuid": "4889563c-8615-4e72-b418-6435838bc200", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_B7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 61.0, + "y": 59.0, + "z": 0.0 + }, + "position3d": { + "x": 61.0, + "y": 59.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_6_1_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 61.0, + "y": 59.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_C7", + "uuid": "0b259c07-cf86-467b-b9e3-825ead787d33", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_C7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 61.0, + "y": 50.0, + "z": 0.0 + }, + "position3d": { + "x": 61.0, + "y": 50.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_6_2_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 61.0, + "y": 50.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_D7", + "uuid": "020ff3b6-3a70-4dd5-bebf-d397c045407b", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_D7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 61.0, + "y": 41.0, + "z": 0.0 + }, + "position3d": { + "x": 61.0, + "y": 41.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_6_3_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 61.0, + "y": 41.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_E7", + "uuid": "cfb5485c-5179-402e-8df7-9db1c4f4f5c7", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_E7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 61.0, + "y": 32.0, + "z": 0.0 + }, + "position3d": { + "x": 61.0, + "y": 32.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_6_4_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 61.0, + "y": 32.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_F7", + "uuid": "286c3fd7-e73d-416b-90c3-c8b882cd6158", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_F7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 61.0, + "y": 23.0, + "z": 0.0 + }, + "position3d": { + "x": 61.0, + "y": 23.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_6_5_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 61.0, + "y": 23.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_G7", + "uuid": "b0ddb747-5c05-48de-bb5d-ba42fcd81fd9", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_G7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 61.0, + "y": 14.0, + "z": 0.0 + }, + "position3d": { + "x": 61.0, + "y": 14.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_6_6_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 61.0, + "y": 14.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_H7", + "uuid": "75692242-efc9-461a-b1a1-c2aab9126d49", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_H7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 61.0, + "y": 5.0, + "z": 0.0 + }, + "position3d": { + "x": 61.0, + "y": 5.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_6_7_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 61.0, + "y": 5.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_A8", + "uuid": "a7ab8ec6-4ff3-442b-8a7e-8f20180fbe88", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_A8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 70.0, + "y": 68.0, + "z": 0.0 + }, + "position3d": { + "x": 70.0, + "y": 68.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_7_0_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 70.0, + "y": 68.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_B8", + "uuid": "17d64a60-0cfb-451d-97bf-1d18b1e521ed", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_B8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 70.0, + "y": 59.0, + "z": 0.0 + }, + "position3d": { + "x": 70.0, + "y": 59.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_7_1_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 70.0, + "y": 59.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_C8", + "uuid": "4ef31881-f39b-422a-a342-f08d0cfb77a3", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_C8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 70.0, + "y": 50.0, + "z": 0.0 + }, + "position3d": { + "x": 70.0, + "y": 50.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_7_2_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 70.0, + "y": 50.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_D8", + "uuid": "dd090b28-384d-4b6d-9f2d-596b02a9e48b", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_D8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 70.0, + "y": 41.0, + "z": 0.0 + }, + "position3d": { + "x": 70.0, + "y": 41.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_7_3_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 70.0, + "y": 41.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_E8", + "uuid": "5236e663-da7f-44b8-925f-a65871b2371a", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_E8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 70.0, + "y": 32.0, + "z": 0.0 + }, + "position3d": { + "x": 70.0, + "y": 32.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_7_4_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 70.0, + "y": 32.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_F8", + "uuid": "26c144bf-253b-4d0d-b082-9a487466e14e", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_F8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 70.0, + "y": 23.0, + "z": 0.0 + }, + "position3d": { + "x": 70.0, + "y": 23.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_7_5_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 70.0, + "y": 23.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_G8", + "uuid": "2fe0cc01-a0c1-483d-90be-baba612d38a6", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_G8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 70.0, + "y": 14.0, + "z": 0.0 + }, + "position3d": { + "x": 70.0, + "y": 14.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_7_6_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 70.0, + "y": 14.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_H8", + "uuid": "dadef8d8-59e5-48fe-ab78-e46698818a1d", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_H8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 70.0, + "y": 5.0, + "z": 0.0 + }, + "position3d": { + "x": 70.0, + "y": 5.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_7_7_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 70.0, + "y": 5.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_A9", + "uuid": "a012746a-9047-47d4-a862-875b92588bf0", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_A9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 79.0, + "y": 68.0, + "z": 0.0 + }, + "position3d": { + "x": 79.0, + "y": 68.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_8_0_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 79.0, + "y": 68.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_B9", + "uuid": "8e0a82a0-cc85-47db-b51a-e2667b4503f2", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_B9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 79.0, + "y": 59.0, + "z": 0.0 + }, + "position3d": { + "x": 79.0, + "y": 59.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_8_1_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 79.0, + "y": 59.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_C9", + "uuid": "27019984-1ee2-4e0e-971e-2adf678b990b", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_C9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 79.0, + "y": 50.0, + "z": 0.0 + }, + "position3d": { + "x": 79.0, + "y": 50.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_8_2_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 79.0, + "y": 50.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_D9", + "uuid": "098f9a98-fd85-46da-8231-5c4dcd8c3f72", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_D9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 79.0, + "y": 41.0, + "z": 0.0 + }, + "position3d": { + "x": 79.0, + "y": 41.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_8_3_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 79.0, + "y": 41.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_E9", + "uuid": "e97c37cb-0bda-493d-a22b-7f63d1e78208", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_E9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 79.0, + "y": 32.0, + "z": 0.0 + }, + "position3d": { + "x": 79.0, + "y": 32.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_8_4_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 79.0, + "y": 32.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_F9", + "uuid": "24470205-445e-4d66-b6fc-83637a9ff3c5", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_F9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 79.0, + "y": 23.0, + "z": 0.0 + }, + "position3d": { + "x": 79.0, + "y": 23.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_8_5_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 79.0, + "y": 23.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_G9", + "uuid": "e6a103e2-aaac-43ee-a08f-01cf3c564813", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_G9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 79.0, + "y": 14.0, + "z": 0.0 + }, + "position3d": { + "x": 79.0, + "y": 14.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_8_6_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 79.0, + "y": 14.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_H9", + "uuid": "c0fcc855-5961-474b-b276-0cd8194b4b7f", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_H9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 79.0, + "y": 5.0, + "z": 0.0 + }, + "position3d": { + "x": 79.0, + "y": 5.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_8_7_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 79.0, + "y": 5.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_A10", + "uuid": "383c3008-d314-46f2-a0b4-b7563d0218f6", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_A10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 88.0, + "y": 68.0, + "z": 0.0 + }, + "position3d": { + "x": 88.0, + "y": 68.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_9_0_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 88.0, + "y": 68.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_B10", + "uuid": "74b0951c-ee0b-4a4e-b33b-1ca695b60c59", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_B10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 88.0, + "y": 59.0, + "z": 0.0 + }, + "position3d": { + "x": 88.0, + "y": 59.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_9_1_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 88.0, + "y": 59.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_C10", + "uuid": "9bcc2e84-2d20-4eca-ab54-ea6dda05a19b", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_C10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 88.0, + "y": 50.0, + "z": 0.0 + }, + "position3d": { + "x": 88.0, + "y": 50.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_9_2_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 88.0, + "y": 50.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_D10", + "uuid": "f04222dd-e104-407c-8073-fd8d7ba6fecb", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_D10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 88.0, + "y": 41.0, + "z": 0.0 + }, + "position3d": { + "x": 88.0, + "y": 41.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_9_3_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 88.0, + "y": 41.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_E10", + "uuid": "7a76c559-f98c-4557-80de-e0cac9defedb", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_E10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 88.0, + "y": 32.0, + "z": 0.0 + }, + "position3d": { + "x": 88.0, + "y": 32.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_9_4_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 88.0, + "y": 32.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_F10", + "uuid": "186e6223-cc87-499a-bfd7-f85ff4e44350", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_F10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 88.0, + "y": 23.0, + "z": 0.0 + }, + "position3d": { + "x": 88.0, + "y": 23.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_9_5_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 88.0, + "y": 23.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_G10", + "uuid": "522925fd-23b0-4360-b037-19438a4a449e", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_G10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 88.0, + "y": 14.0, + "z": 0.0 + }, + "position3d": { + "x": 88.0, + "y": 14.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_9_6_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 88.0, + "y": 14.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_H10", + "uuid": "5ed04be2-0bc6-40f3-82b7-ab02440d69f7", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_H10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 88.0, + "y": 5.0, + "z": 0.0 + }, + "position3d": { + "x": 88.0, + "y": 5.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_9_7_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 88.0, + "y": 5.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_A11", + "uuid": "e53c7a06-55bd-42c1-93c2-95c27d2d0c6f", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_A11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 97.0, + "y": 68.0, + "z": 0.0 + }, + "position3d": { + "x": 97.0, + "y": 68.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_10_0_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 97.0, + "y": 68.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_B11", + "uuid": "f6f17aaf-10d6-46f2-b987-2b685224f35f", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_B11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 97.0, + "y": 59.0, + "z": 0.0 + }, + "position3d": { + "x": 97.0, + "y": 59.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_10_1_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 97.0, + "y": 59.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_C11", + "uuid": "0bdd6b24-d968-4152-b757-15e344f4dede", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_C11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 97.0, + "y": 50.0, + "z": 0.0 + }, + "position3d": { + "x": 97.0, + "y": 50.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_10_2_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 97.0, + "y": 50.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_D11", + "uuid": "6a83a06e-24cd-4ee1-80e1-8cbba15d295e", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_D11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 97.0, + "y": 41.0, + "z": 0.0 + }, + "position3d": { + "x": 97.0, + "y": 41.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_10_3_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 97.0, + "y": 41.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_E11", + "uuid": "16402394-9417-43d6-a3f8-99aaaa1ad98f", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_E11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 97.0, + "y": 32.0, + "z": 0.0 + }, + "position3d": { + "x": 97.0, + "y": 32.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_10_4_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 97.0, + "y": 32.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_F11", + "uuid": "0fcb7e30-5b9a-4ecc-8162-22388c1b840d", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_F11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 97.0, + "y": 23.0, + "z": 0.0 + }, + "position3d": { + "x": 97.0, + "y": 23.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_10_5_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 97.0, + "y": 23.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_G11", + "uuid": "db1e6f3b-3272-4b83-8635-a7c291f6dad1", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_G11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 97.0, + "y": 14.0, + "z": 0.0 + }, + "position3d": { + "x": 97.0, + "y": 14.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_10_6_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 97.0, + "y": 14.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_H11", + "uuid": "e39fbf2c-7310-41a4-910d-1df64151865b", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_H11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 97.0, + "y": 5.0, + "z": 0.0 + }, + "position3d": { + "x": 97.0, + "y": 5.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_10_7_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 97.0, + "y": 5.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_A12", + "uuid": "ee5023db-37a3-461b-8184-5866412c7a21", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_A12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 106.0, + "y": 68.0, + "z": 0.0 + }, + "position3d": { + "x": 106.0, + "y": 68.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_11_0_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 106.0, + "y": 68.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_B12", + "uuid": "7ba04756-ffbb-40be-ba89-aaed52da6b6c", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_B12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 106.0, + "y": 59.0, + "z": 0.0 + }, + "position3d": { + "x": 106.0, + "y": 59.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_11_1_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 106.0, + "y": 59.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_C12", + "uuid": "e57bc97d-8504-4a54-9f78-be8bc8ddfc6b", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_C12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 106.0, + "y": 50.0, + "z": 0.0 + }, + "position3d": { + "x": 106.0, + "y": 50.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_11_2_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 106.0, + "y": 50.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_D12", + "uuid": "3376f75d-fd0e-4ed7-81d2-8e71b6293ee4", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_D12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 106.0, + "y": 41.0, + "z": 0.0 + }, + "position3d": { + "x": 106.0, + "y": 41.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_11_3_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 106.0, + "y": 41.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_E12", + "uuid": "edca3887-fd3f-4c45-a2ca-346e2cc2f444", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_E12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 106.0, + "y": 32.0, + "z": 0.0 + }, + "position3d": { + "x": 106.0, + "y": 32.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_11_4_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 106.0, + "y": 32.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_F12", + "uuid": "ab9e9720-bca3-4ace-a6ce-c05010bfb8a1", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_F12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 106.0, + "y": 23.0, + "z": 0.0 + }, + "position3d": { + "x": 106.0, + "y": 23.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_11_5_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 106.0, + "y": 23.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_G12", + "uuid": "65fecd2f-3dbd-469f-a8d6-4566945ee93f", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_G12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 106.0, + "y": 14.0, + "z": 0.0 + }, + "position3d": { + "x": 106.0, + "y": 14.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_11_6_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 106.0, + "y": 14.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_nonskirted_well_H12", + "uuid": "f0d5ceff-c289-4859-843c-8bdd410ac1e2", + "name": "PRCXI_PCR_Plate_200uL_nonskirted_well_H12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "f5885f2e-b4d2-4964-b230-c0b797ef6e78", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 106.0, + "y": 5.0, + "z": 0.0 + }, + "position3d": { + "x": 106.0, + "y": 5.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_11_7_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 106.0, + "y": 5.0, + "z": 0.0 + } + } + ] + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted", + "category": [ + "prcxi", + "plates" + ], + "class": { + "module": "unilabos.devices.liquid_handling.prcxi.prcxi_labware:PRCXI_PCR_Plate_200uL_semiskirted", + "type": "pylabrobot" + }, + "description": "0.2ml PCR 板 (Code: ZX-023-0.2)", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/prcxi/plates.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted", + "uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "name": "PRCXI_PCR_Plate_200uL_semiskirted", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "plate", + "class": "", + "pose": { + "size": { + "depth": 21.2, + "width": 126.0, + "height": 86.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "PRCXI9300Plate", + "size_x": 126, + "size_y": 86, + "size_z": 21.2, + "category": "plate", + "model": "PRCXI_PCR_Plate_200uL_semiskirted", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "PRCXI_PCR_Plate_200uL_semiskirted_well_A1", + "B1": "PRCXI_PCR_Plate_200uL_semiskirted_well_B1", + "C1": "PRCXI_PCR_Plate_200uL_semiskirted_well_C1", + "D1": "PRCXI_PCR_Plate_200uL_semiskirted_well_D1", + "E1": "PRCXI_PCR_Plate_200uL_semiskirted_well_E1", + "F1": "PRCXI_PCR_Plate_200uL_semiskirted_well_F1", + "G1": "PRCXI_PCR_Plate_200uL_semiskirted_well_G1", + "H1": "PRCXI_PCR_Plate_200uL_semiskirted_well_H1", + "A2": "PRCXI_PCR_Plate_200uL_semiskirted_well_A2", + "B2": "PRCXI_PCR_Plate_200uL_semiskirted_well_B2", + "C2": "PRCXI_PCR_Plate_200uL_semiskirted_well_C2", + "D2": "PRCXI_PCR_Plate_200uL_semiskirted_well_D2", + "E2": "PRCXI_PCR_Plate_200uL_semiskirted_well_E2", + "F2": "PRCXI_PCR_Plate_200uL_semiskirted_well_F2", + "G2": "PRCXI_PCR_Plate_200uL_semiskirted_well_G2", + "H2": "PRCXI_PCR_Plate_200uL_semiskirted_well_H2", + "A3": "PRCXI_PCR_Plate_200uL_semiskirted_well_A3", + "B3": "PRCXI_PCR_Plate_200uL_semiskirted_well_B3", + "C3": "PRCXI_PCR_Plate_200uL_semiskirted_well_C3", + "D3": "PRCXI_PCR_Plate_200uL_semiskirted_well_D3", + "E3": "PRCXI_PCR_Plate_200uL_semiskirted_well_E3", + "F3": "PRCXI_PCR_Plate_200uL_semiskirted_well_F3", + "G3": "PRCXI_PCR_Plate_200uL_semiskirted_well_G3", + "H3": "PRCXI_PCR_Plate_200uL_semiskirted_well_H3", + "A4": "PRCXI_PCR_Plate_200uL_semiskirted_well_A4", + "B4": "PRCXI_PCR_Plate_200uL_semiskirted_well_B4", + "C4": "PRCXI_PCR_Plate_200uL_semiskirted_well_C4", + "D4": "PRCXI_PCR_Plate_200uL_semiskirted_well_D4", + "E4": "PRCXI_PCR_Plate_200uL_semiskirted_well_E4", + "F4": "PRCXI_PCR_Plate_200uL_semiskirted_well_F4", + "G4": "PRCXI_PCR_Plate_200uL_semiskirted_well_G4", + "H4": "PRCXI_PCR_Plate_200uL_semiskirted_well_H4", + "A5": "PRCXI_PCR_Plate_200uL_semiskirted_well_A5", + "B5": "PRCXI_PCR_Plate_200uL_semiskirted_well_B5", + "C5": "PRCXI_PCR_Plate_200uL_semiskirted_well_C5", + "D5": "PRCXI_PCR_Plate_200uL_semiskirted_well_D5", + "E5": "PRCXI_PCR_Plate_200uL_semiskirted_well_E5", + "F5": "PRCXI_PCR_Plate_200uL_semiskirted_well_F5", + "G5": "PRCXI_PCR_Plate_200uL_semiskirted_well_G5", + "H5": "PRCXI_PCR_Plate_200uL_semiskirted_well_H5", + "A6": "PRCXI_PCR_Plate_200uL_semiskirted_well_A6", + "B6": "PRCXI_PCR_Plate_200uL_semiskirted_well_B6", + "C6": "PRCXI_PCR_Plate_200uL_semiskirted_well_C6", + "D6": "PRCXI_PCR_Plate_200uL_semiskirted_well_D6", + "E6": "PRCXI_PCR_Plate_200uL_semiskirted_well_E6", + "F6": "PRCXI_PCR_Plate_200uL_semiskirted_well_F6", + "G6": "PRCXI_PCR_Plate_200uL_semiskirted_well_G6", + "H6": "PRCXI_PCR_Plate_200uL_semiskirted_well_H6", + "A7": "PRCXI_PCR_Plate_200uL_semiskirted_well_A7", + "B7": "PRCXI_PCR_Plate_200uL_semiskirted_well_B7", + "C7": "PRCXI_PCR_Plate_200uL_semiskirted_well_C7", + "D7": "PRCXI_PCR_Plate_200uL_semiskirted_well_D7", + "E7": "PRCXI_PCR_Plate_200uL_semiskirted_well_E7", + "F7": "PRCXI_PCR_Plate_200uL_semiskirted_well_F7", + "G7": "PRCXI_PCR_Plate_200uL_semiskirted_well_G7", + "H7": "PRCXI_PCR_Plate_200uL_semiskirted_well_H7", + "A8": "PRCXI_PCR_Plate_200uL_semiskirted_well_A8", + "B8": "PRCXI_PCR_Plate_200uL_semiskirted_well_B8", + "C8": "PRCXI_PCR_Plate_200uL_semiskirted_well_C8", + "D8": "PRCXI_PCR_Plate_200uL_semiskirted_well_D8", + "E8": "PRCXI_PCR_Plate_200uL_semiskirted_well_E8", + "F8": "PRCXI_PCR_Plate_200uL_semiskirted_well_F8", + "G8": "PRCXI_PCR_Plate_200uL_semiskirted_well_G8", + "H8": "PRCXI_PCR_Plate_200uL_semiskirted_well_H8", + "A9": "PRCXI_PCR_Plate_200uL_semiskirted_well_A9", + "B9": "PRCXI_PCR_Plate_200uL_semiskirted_well_B9", + "C9": "PRCXI_PCR_Plate_200uL_semiskirted_well_C9", + "D9": "PRCXI_PCR_Plate_200uL_semiskirted_well_D9", + "E9": "PRCXI_PCR_Plate_200uL_semiskirted_well_E9", + "F9": "PRCXI_PCR_Plate_200uL_semiskirted_well_F9", + "G9": "PRCXI_PCR_Plate_200uL_semiskirted_well_G9", + "H9": "PRCXI_PCR_Plate_200uL_semiskirted_well_H9", + "A10": "PRCXI_PCR_Plate_200uL_semiskirted_well_A10", + "B10": "PRCXI_PCR_Plate_200uL_semiskirted_well_B10", + "C10": "PRCXI_PCR_Plate_200uL_semiskirted_well_C10", + "D10": "PRCXI_PCR_Plate_200uL_semiskirted_well_D10", + "E10": "PRCXI_PCR_Plate_200uL_semiskirted_well_E10", + "F10": "PRCXI_PCR_Plate_200uL_semiskirted_well_F10", + "G10": "PRCXI_PCR_Plate_200uL_semiskirted_well_G10", + "H10": "PRCXI_PCR_Plate_200uL_semiskirted_well_H10", + "A11": "PRCXI_PCR_Plate_200uL_semiskirted_well_A11", + "B11": "PRCXI_PCR_Plate_200uL_semiskirted_well_B11", + "C11": "PRCXI_PCR_Plate_200uL_semiskirted_well_C11", + "D11": "PRCXI_PCR_Plate_200uL_semiskirted_well_D11", + "E11": "PRCXI_PCR_Plate_200uL_semiskirted_well_E11", + "F11": "PRCXI_PCR_Plate_200uL_semiskirted_well_F11", + "G11": "PRCXI_PCR_Plate_200uL_semiskirted_well_G11", + "H11": "PRCXI_PCR_Plate_200uL_semiskirted_well_H11", + "A12": "PRCXI_PCR_Plate_200uL_semiskirted_well_A12", + "B12": "PRCXI_PCR_Plate_200uL_semiskirted_well_B12", + "C12": "PRCXI_PCR_Plate_200uL_semiskirted_well_C12", + "D12": "PRCXI_PCR_Plate_200uL_semiskirted_well_D12", + "E12": "PRCXI_PCR_Plate_200uL_semiskirted_well_E12", + "F12": "PRCXI_PCR_Plate_200uL_semiskirted_well_F12", + "G12": "PRCXI_PCR_Plate_200uL_semiskirted_well_G12", + "H12": "PRCXI_PCR_Plate_200uL_semiskirted_well_H12" + } + }, + "data": { + "Material": { + "uuid": "73bb9b10bc394978b70e027bf45ce2d3", + "Code": "ZX-023-0.2", + "Name": "0.2ml PCR 板", + "materialEnum": 0, + "SupplyType": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_A1", + "uuid": "bc12ccb3-4968-4db8-8cb9-fda2b279fa1c", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.0, + "y": 71.0, + "z": 0.0 + }, + "position3d": { + "x": 11.0, + "y": 71.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_0_0_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.0, + "y": 71.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_B1", + "uuid": "9d4315aa-e0e2-4436-a818-5c41495955cf", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_B1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.0, + "y": 62.0, + "z": 0.0 + }, + "position3d": { + "x": 11.0, + "y": 62.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_0_1_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.0, + "y": 62.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_C1", + "uuid": "019b2d66-bad4-44d8-89bc-a9869d1b6ff6", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_C1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.0, + "y": 53.0, + "z": 0.0 + }, + "position3d": { + "x": 11.0, + "y": 53.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_0_2_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.0, + "y": 53.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_D1", + "uuid": "a532373b-3975-4cf3-9b9d-c71fcfe978c5", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_D1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.0, + "y": 44.0, + "z": 0.0 + }, + "position3d": { + "x": 11.0, + "y": 44.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_0_3_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.0, + "y": 44.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_E1", + "uuid": "610166de-475c-4564-9abd-a77650213500", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_E1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.0, + "y": 35.0, + "z": 0.0 + }, + "position3d": { + "x": 11.0, + "y": 35.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_0_4_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.0, + "y": 35.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_F1", + "uuid": "16b41f51-db2c-45f1-8927-032e900138ae", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_F1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.0, + "y": 26.0, + "z": 0.0 + }, + "position3d": { + "x": 11.0, + "y": 26.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_0_5_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.0, + "y": 26.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_G1", + "uuid": "118c7e0d-5e67-45f4-99b2-c240e58f69cf", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_G1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.0, + "y": 17.0, + "z": 0.0 + }, + "position3d": { + "x": 11.0, + "y": 17.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_0_6_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.0, + "y": 17.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_H1", + "uuid": "c04d8788-bebf-420f-b73d-3702b0f7f390", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_H1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.0, + "y": 8.0, + "z": 0.0 + }, + "position3d": { + "x": 11.0, + "y": 8.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_0_7_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.0, + "y": 8.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_A2", + "uuid": "90935f19-6ad4-42e0-9074-d69dfa35ee04", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.0, + "y": 71.0, + "z": 0.0 + }, + "position3d": { + "x": 20.0, + "y": 71.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_1_0_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.0, + "y": 71.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_B2", + "uuid": "c3873d3b-008a-478b-990e-1fbe57bd9d53", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_B2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.0, + "y": 62.0, + "z": 0.0 + }, + "position3d": { + "x": 20.0, + "y": 62.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_1_1_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.0, + "y": 62.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_C2", + "uuid": "4cb1ce4b-e86d-49a3-8bbd-72fef166ac8c", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_C2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.0, + "y": 53.0, + "z": 0.0 + }, + "position3d": { + "x": 20.0, + "y": 53.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_1_2_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.0, + "y": 53.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_D2", + "uuid": "68995b18-2133-44b3-93b2-5d6046b768fc", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_D2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.0, + "y": 44.0, + "z": 0.0 + }, + "position3d": { + "x": 20.0, + "y": 44.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_1_3_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.0, + "y": 44.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_E2", + "uuid": "81641d1c-f734-4c9c-93b7-cb1f5cb0c530", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_E2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.0, + "y": 35.0, + "z": 0.0 + }, + "position3d": { + "x": 20.0, + "y": 35.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_1_4_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.0, + "y": 35.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_F2", + "uuid": "58f05970-36e1-4496-8c23-bd6f585d1e41", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_F2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.0, + "y": 26.0, + "z": 0.0 + }, + "position3d": { + "x": 20.0, + "y": 26.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_1_5_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.0, + "y": 26.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_G2", + "uuid": "e4d7fcf3-3229-4a9d-b74a-d7e4b68eb50d", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_G2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.0, + "y": 17.0, + "z": 0.0 + }, + "position3d": { + "x": 20.0, + "y": 17.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_1_6_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.0, + "y": 17.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_H2", + "uuid": "89782346-19bc-419a-99b1-bb61efe9e475", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_H2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.0, + "y": 8.0, + "z": 0.0 + }, + "position3d": { + "x": 20.0, + "y": 8.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_1_7_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.0, + "y": 8.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_A3", + "uuid": "71621c87-342a-4d8a-8f18-47361cd3e32f", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.0, + "y": 71.0, + "z": 0.0 + }, + "position3d": { + "x": 29.0, + "y": 71.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_2_0_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.0, + "y": 71.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_B3", + "uuid": "13eac7bd-500c-4907-b5fb-22d8865813bb", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_B3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.0, + "y": 62.0, + "z": 0.0 + }, + "position3d": { + "x": 29.0, + "y": 62.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_2_1_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.0, + "y": 62.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_C3", + "uuid": "c96858c0-9c40-47b3-a71b-d698e5b9da73", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_C3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.0, + "y": 53.0, + "z": 0.0 + }, + "position3d": { + "x": 29.0, + "y": 53.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_2_2_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.0, + "y": 53.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_D3", + "uuid": "b05ae804-6df9-450f-b49b-1e663a5bc9b5", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_D3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.0, + "y": 44.0, + "z": 0.0 + }, + "position3d": { + "x": 29.0, + "y": 44.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_2_3_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.0, + "y": 44.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_E3", + "uuid": "c750a603-ade7-4107-98af-a787bbb279e8", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_E3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.0, + "y": 35.0, + "z": 0.0 + }, + "position3d": { + "x": 29.0, + "y": 35.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_2_4_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.0, + "y": 35.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_F3", + "uuid": "671ebfe5-71b8-4425-8f74-bc7a0132aa3e", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_F3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.0, + "y": 26.0, + "z": 0.0 + }, + "position3d": { + "x": 29.0, + "y": 26.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_2_5_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.0, + "y": 26.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_G3", + "uuid": "333b0bf3-3fc3-43a4-b45b-926a003872a7", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_G3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.0, + "y": 17.0, + "z": 0.0 + }, + "position3d": { + "x": 29.0, + "y": 17.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_2_6_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.0, + "y": 17.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_H3", + "uuid": "bf333797-6fa5-4c0c-bf74-0d1dfed1e475", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_H3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.0, + "y": 8.0, + "z": 0.0 + }, + "position3d": { + "x": 29.0, + "y": 8.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_2_7_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.0, + "y": 8.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_A4", + "uuid": "bd345688-096b-46db-860b-7ca4ea9f6304", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_A4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.0, + "y": 71.0, + "z": 0.0 + }, + "position3d": { + "x": 38.0, + "y": 71.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_3_0_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.0, + "y": 71.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_B4", + "uuid": "53ef3ae1-0fa9-4e55-9f8f-89ecb5951b9c", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_B4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.0, + "y": 62.0, + "z": 0.0 + }, + "position3d": { + "x": 38.0, + "y": 62.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_3_1_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.0, + "y": 62.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_C4", + "uuid": "5b4b867a-7f52-4bb6-a2cc-d372aed51cc1", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_C4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.0, + "y": 53.0, + "z": 0.0 + }, + "position3d": { + "x": 38.0, + "y": 53.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_3_2_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.0, + "y": 53.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_D4", + "uuid": "2540803d-8aea-4fb1-b8c2-46272ccd2f99", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_D4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.0, + "y": 44.0, + "z": 0.0 + }, + "position3d": { + "x": 38.0, + "y": 44.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_3_3_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.0, + "y": 44.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_E4", + "uuid": "1299ca9c-52cb-4baf-bfb1-56d2d5346464", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_E4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.0, + "y": 35.0, + "z": 0.0 + }, + "position3d": { + "x": 38.0, + "y": 35.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_3_4_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.0, + "y": 35.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_F4", + "uuid": "a7c9be2b-2084-4bc7-a20a-543555548c77", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_F4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.0, + "y": 26.0, + "z": 0.0 + }, + "position3d": { + "x": 38.0, + "y": 26.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_3_5_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.0, + "y": 26.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_G4", + "uuid": "635735b8-dd3a-4598-af9f-f44ee157c9b4", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_G4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.0, + "y": 17.0, + "z": 0.0 + }, + "position3d": { + "x": 38.0, + "y": 17.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_3_6_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.0, + "y": 17.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_H4", + "uuid": "42ce15c3-671a-458e-9cac-7ee597cf4844", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_H4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.0, + "y": 8.0, + "z": 0.0 + }, + "position3d": { + "x": 38.0, + "y": 8.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_3_7_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.0, + "y": 8.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_A5", + "uuid": "21bcf7fe-9921-406f-9fea-292cd2c08418", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_A5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.0, + "y": 71.0, + "z": 0.0 + }, + "position3d": { + "x": 47.0, + "y": 71.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_4_0_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.0, + "y": 71.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_B5", + "uuid": "035c2f86-4677-47e4-8d29-b32793e4662a", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_B5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.0, + "y": 62.0, + "z": 0.0 + }, + "position3d": { + "x": 47.0, + "y": 62.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_4_1_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.0, + "y": 62.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_C5", + "uuid": "e14a3f00-1252-4411-8c0b-78c7a7b38975", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_C5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.0, + "y": 53.0, + "z": 0.0 + }, + "position3d": { + "x": 47.0, + "y": 53.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_4_2_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.0, + "y": 53.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_D5", + "uuid": "b4641293-fead-433b-81a5-df88aef578b2", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_D5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.0, + "y": 44.0, + "z": 0.0 + }, + "position3d": { + "x": 47.0, + "y": 44.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_4_3_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.0, + "y": 44.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_E5", + "uuid": "dc2efe82-f55e-457d-bf9f-d16825e06f81", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_E5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.0, + "y": 35.0, + "z": 0.0 + }, + "position3d": { + "x": 47.0, + "y": 35.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_4_4_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.0, + "y": 35.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_F5", + "uuid": "fb824e30-a290-4389-bd5e-134507d2d364", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_F5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.0, + "y": 26.0, + "z": 0.0 + }, + "position3d": { + "x": 47.0, + "y": 26.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_4_5_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.0, + "y": 26.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_G5", + "uuid": "0d91b28c-4c73-4374-8ef0-f367daba1db9", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_G5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.0, + "y": 17.0, + "z": 0.0 + }, + "position3d": { + "x": 47.0, + "y": 17.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_4_6_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.0, + "y": 17.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_H5", + "uuid": "0a6dee69-aafc-43c8-a68b-0d4090344f42", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_H5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.0, + "y": 8.0, + "z": 0.0 + }, + "position3d": { + "x": 47.0, + "y": 8.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_4_7_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.0, + "y": 8.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_A6", + "uuid": "06f4276b-f46c-4198-9c57-234d36c242f1", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_A6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.0, + "y": 71.0, + "z": 0.0 + }, + "position3d": { + "x": 56.0, + "y": 71.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_5_0_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.0, + "y": 71.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_B6", + "uuid": "ba16d4ac-755f-4d39-95b9-c40759e805cf", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_B6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.0, + "y": 62.0, + "z": 0.0 + }, + "position3d": { + "x": 56.0, + "y": 62.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_5_1_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.0, + "y": 62.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_C6", + "uuid": "9869011b-a8f9-4561-b6c7-a26738d3a900", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_C6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.0, + "y": 53.0, + "z": 0.0 + }, + "position3d": { + "x": 56.0, + "y": 53.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_5_2_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.0, + "y": 53.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_D6", + "uuid": "198124b2-bf84-4ea8-9f09-62fbd7da988f", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_D6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.0, + "y": 44.0, + "z": 0.0 + }, + "position3d": { + "x": 56.0, + "y": 44.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_5_3_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.0, + "y": 44.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_E6", + "uuid": "88554508-8c44-443f-91ad-ad4fe3396705", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_E6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.0, + "y": 35.0, + "z": 0.0 + }, + "position3d": { + "x": 56.0, + "y": 35.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_5_4_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.0, + "y": 35.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_F6", + "uuid": "d2056e11-dfe0-4ea5-84ff-8b708dbb5c5f", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_F6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.0, + "y": 26.0, + "z": 0.0 + }, + "position3d": { + "x": 56.0, + "y": 26.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_5_5_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.0, + "y": 26.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_G6", + "uuid": "fcfa5ffb-cea6-4244-84e0-92af6f15abd5", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_G6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.0, + "y": 17.0, + "z": 0.0 + }, + "position3d": { + "x": 56.0, + "y": 17.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_5_6_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.0, + "y": 17.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_H6", + "uuid": "7ac22fab-c36b-4e7d-ba81-eb6dc7398467", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_H6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.0, + "y": 8.0, + "z": 0.0 + }, + "position3d": { + "x": 56.0, + "y": 8.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_5_7_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.0, + "y": 8.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_A7", + "uuid": "bc116d5e-2d7d-4cbc-b9d3-65838429746b", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_A7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.0, + "y": 71.0, + "z": 0.0 + }, + "position3d": { + "x": 65.0, + "y": 71.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_6_0_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.0, + "y": 71.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_B7", + "uuid": "454eda27-8cb2-422d-b33d-2f128c46a81a", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_B7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.0, + "y": 62.0, + "z": 0.0 + }, + "position3d": { + "x": 65.0, + "y": 62.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_6_1_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.0, + "y": 62.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_C7", + "uuid": "308cbd01-e67b-4640-9468-bf894376e03f", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_C7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.0, + "y": 53.0, + "z": 0.0 + }, + "position3d": { + "x": 65.0, + "y": 53.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_6_2_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.0, + "y": 53.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_D7", + "uuid": "cf56ff7f-ab08-4edb-b7c0-78a87fd71bb4", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_D7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.0, + "y": 44.0, + "z": 0.0 + }, + "position3d": { + "x": 65.0, + "y": 44.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_6_3_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.0, + "y": 44.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_E7", + "uuid": "e34b6946-1a76-4c40-a301-92bb7496575a", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_E7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.0, + "y": 35.0, + "z": 0.0 + }, + "position3d": { + "x": 65.0, + "y": 35.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_6_4_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.0, + "y": 35.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_F7", + "uuid": "e386b1ca-3390-44a3-ba47-ac145132e342", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_F7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.0, + "y": 26.0, + "z": 0.0 + }, + "position3d": { + "x": 65.0, + "y": 26.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_6_5_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.0, + "y": 26.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_G7", + "uuid": "0c965b9c-49a3-492b-8455-dd376cc056c6", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_G7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.0, + "y": 17.0, + "z": 0.0 + }, + "position3d": { + "x": 65.0, + "y": 17.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_6_6_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.0, + "y": 17.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_H7", + "uuid": "11d511fe-4a06-45cf-b8a3-a43334790f03", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_H7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.0, + "y": 8.0, + "z": 0.0 + }, + "position3d": { + "x": 65.0, + "y": 8.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_6_7_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.0, + "y": 8.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_A8", + "uuid": "755665f1-3ffe-48a9-adfa-5ae485b7f126", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_A8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.0, + "y": 71.0, + "z": 0.0 + }, + "position3d": { + "x": 74.0, + "y": 71.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_7_0_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.0, + "y": 71.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_B8", + "uuid": "8292f180-89fc-46ac-9a43-33452d8c87e4", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_B8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.0, + "y": 62.0, + "z": 0.0 + }, + "position3d": { + "x": 74.0, + "y": 62.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_7_1_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.0, + "y": 62.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_C8", + "uuid": "ce7480f3-a668-45f6-a5ff-e1665ec44e4d", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_C8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.0, + "y": 53.0, + "z": 0.0 + }, + "position3d": { + "x": 74.0, + "y": 53.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_7_2_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.0, + "y": 53.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_D8", + "uuid": "993379c1-0dcc-462e-9170-c05852044ead", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_D8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.0, + "y": 44.0, + "z": 0.0 + }, + "position3d": { + "x": 74.0, + "y": 44.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_7_3_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.0, + "y": 44.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_E8", + "uuid": "243910ee-f01e-489a-8b41-6b43e296d619", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_E8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.0, + "y": 35.0, + "z": 0.0 + }, + "position3d": { + "x": 74.0, + "y": 35.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_7_4_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.0, + "y": 35.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_F8", + "uuid": "e7e6e865-6f1e-4aa9-b529-25f8101f1c03", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_F8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.0, + "y": 26.0, + "z": 0.0 + }, + "position3d": { + "x": 74.0, + "y": 26.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_7_5_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.0, + "y": 26.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_G8", + "uuid": "6e4ca4cb-5337-4f61-9ae3-7c3ed5362e9f", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_G8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.0, + "y": 17.0, + "z": 0.0 + }, + "position3d": { + "x": 74.0, + "y": 17.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_7_6_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.0, + "y": 17.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_H8", + "uuid": "6bf4b88f-ce7b-490b-9b59-295f5d2f9df9", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_H8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.0, + "y": 8.0, + "z": 0.0 + }, + "position3d": { + "x": 74.0, + "y": 8.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_7_7_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.0, + "y": 8.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_A9", + "uuid": "b8fe2d7c-c8cd-413e-8c26-867e88f6c220", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_A9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.0, + "y": 71.0, + "z": 0.0 + }, + "position3d": { + "x": 83.0, + "y": 71.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_8_0_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.0, + "y": 71.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_B9", + "uuid": "f1ec4aaa-0753-4230-902e-bf9c9ca69369", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_B9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.0, + "y": 62.0, + "z": 0.0 + }, + "position3d": { + "x": 83.0, + "y": 62.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_8_1_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.0, + "y": 62.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_C9", + "uuid": "08854726-c4ec-4b6e-8337-891c6d1cdc52", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_C9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.0, + "y": 53.0, + "z": 0.0 + }, + "position3d": { + "x": 83.0, + "y": 53.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_8_2_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.0, + "y": 53.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_D9", + "uuid": "52b35612-fbf4-4fb9-9d4c-d18188810aa3", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_D9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.0, + "y": 44.0, + "z": 0.0 + }, + "position3d": { + "x": 83.0, + "y": 44.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_8_3_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.0, + "y": 44.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_E9", + "uuid": "07d4e529-2446-4b33-9e02-b3aee8b6b665", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_E9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.0, + "y": 35.0, + "z": 0.0 + }, + "position3d": { + "x": 83.0, + "y": 35.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_8_4_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.0, + "y": 35.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_F9", + "uuid": "f6ba3bc9-bb19-4bbe-a2c3-ead6213e12e0", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_F9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.0, + "y": 26.0, + "z": 0.0 + }, + "position3d": { + "x": 83.0, + "y": 26.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_8_5_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.0, + "y": 26.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_G9", + "uuid": "4d930d22-a2a4-4685-8d42-d045fa39d699", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_G9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.0, + "y": 17.0, + "z": 0.0 + }, + "position3d": { + "x": 83.0, + "y": 17.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_8_6_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.0, + "y": 17.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_H9", + "uuid": "e03c37ed-e243-4336-bff0-e25a53c28f86", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_H9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.0, + "y": 8.0, + "z": 0.0 + }, + "position3d": { + "x": 83.0, + "y": 8.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_8_7_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.0, + "y": 8.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_A10", + "uuid": "b6a42c4f-f495-475a-8389-c3aa28ca2898", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_A10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.0, + "y": 71.0, + "z": 0.0 + }, + "position3d": { + "x": 92.0, + "y": 71.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_9_0_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.0, + "y": 71.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_B10", + "uuid": "159a7ca9-a317-4609-b642-1c19d11b40a4", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_B10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.0, + "y": 62.0, + "z": 0.0 + }, + "position3d": { + "x": 92.0, + "y": 62.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_9_1_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.0, + "y": 62.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_C10", + "uuid": "02040b9d-b5d6-4fa7-99ba-e09138a647c4", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_C10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.0, + "y": 53.0, + "z": 0.0 + }, + "position3d": { + "x": 92.0, + "y": 53.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_9_2_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.0, + "y": 53.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_D10", + "uuid": "47dde3e6-2a94-4822-bf9a-6a22abdecfac", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_D10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.0, + "y": 44.0, + "z": 0.0 + }, + "position3d": { + "x": 92.0, + "y": 44.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_9_3_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.0, + "y": 44.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_E10", + "uuid": "b68bd2a1-6d40-467e-bf58-c06f101903ee", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_E10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.0, + "y": 35.0, + "z": 0.0 + }, + "position3d": { + "x": 92.0, + "y": 35.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_9_4_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.0, + "y": 35.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_F10", + "uuid": "61e77bd7-47ab-4436-bcdc-ffaa1ca0f48a", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_F10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.0, + "y": 26.0, + "z": 0.0 + }, + "position3d": { + "x": 92.0, + "y": 26.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_9_5_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.0, + "y": 26.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_G10", + "uuid": "6e25d498-277f-4178-ad57-46f03c2784a5", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_G10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.0, + "y": 17.0, + "z": 0.0 + }, + "position3d": { + "x": 92.0, + "y": 17.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_9_6_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.0, + "y": 17.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_H10", + "uuid": "72d3c24b-e557-4204-a4d4-0b0ffb46a68b", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_H10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.0, + "y": 8.0, + "z": 0.0 + }, + "position3d": { + "x": 92.0, + "y": 8.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_9_7_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.0, + "y": 8.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_A11", + "uuid": "5f3b5169-40fa-4af7-8521-8d49cac91948", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_A11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.0, + "y": 71.0, + "z": 0.0 + }, + "position3d": { + "x": 101.0, + "y": 71.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_10_0_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.0, + "y": 71.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_B11", + "uuid": "2548c4a6-9e80-41ff-bc13-4dfdb722aa46", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_B11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.0, + "y": 62.0, + "z": 0.0 + }, + "position3d": { + "x": 101.0, + "y": 62.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_10_1_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.0, + "y": 62.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_C11", + "uuid": "39cad4e8-5eb3-4ca7-a967-145fa2908ae2", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_C11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.0, + "y": 53.0, + "z": 0.0 + }, + "position3d": { + "x": 101.0, + "y": 53.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_10_2_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.0, + "y": 53.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_D11", + "uuid": "b0514152-1593-4981-9789-b97e0ae4b8ab", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_D11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.0, + "y": 44.0, + "z": 0.0 + }, + "position3d": { + "x": 101.0, + "y": 44.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_10_3_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.0, + "y": 44.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_E11", + "uuid": "f8b0e451-ecba-4c53-bcdb-2322a6fa2c17", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_E11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.0, + "y": 35.0, + "z": 0.0 + }, + "position3d": { + "x": 101.0, + "y": 35.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_10_4_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.0, + "y": 35.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_F11", + "uuid": "d911113e-416c-494f-9346-39035e11abf4", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_F11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.0, + "y": 26.0, + "z": 0.0 + }, + "position3d": { + "x": 101.0, + "y": 26.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_10_5_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.0, + "y": 26.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_G11", + "uuid": "62c3838e-5feb-4503-bb4b-6fbfc1d327f5", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_G11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.0, + "y": 17.0, + "z": 0.0 + }, + "position3d": { + "x": 101.0, + "y": 17.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_10_6_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.0, + "y": 17.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_H11", + "uuid": "841709ab-33da-4246-8258-f497f5ed08cb", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_H11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.0, + "y": 8.0, + "z": 0.0 + }, + "position3d": { + "x": 101.0, + "y": 8.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_10_7_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.0, + "y": 8.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_A12", + "uuid": "18f292b9-3e1d-4f01-801f-4a9b3675905a", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_A12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.0, + "y": 71.0, + "z": 0.0 + }, + "position3d": { + "x": 110.0, + "y": 71.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_11_0_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.0, + "y": 71.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_B12", + "uuid": "cdb53793-2337-4464-bd18-12f2c9b81cab", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_B12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.0, + "y": 62.0, + "z": 0.0 + }, + "position3d": { + "x": 110.0, + "y": 62.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_11_1_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.0, + "y": 62.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_C12", + "uuid": "414a7808-16b4-4f57-99f5-544de6b0a7ed", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_C12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.0, + "y": 53.0, + "z": 0.0 + }, + "position3d": { + "x": 110.0, + "y": 53.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_11_2_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.0, + "y": 53.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_D12", + "uuid": "5c959685-ca3c-45f3-86ad-04709ec67e9d", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_D12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.0, + "y": 44.0, + "z": 0.0 + }, + "position3d": { + "x": 110.0, + "y": 44.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_11_3_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.0, + "y": 44.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_E12", + "uuid": "de6bd849-75cc-4029-881b-1fa66ab37db8", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_E12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.0, + "y": 35.0, + "z": 0.0 + }, + "position3d": { + "x": 110.0, + "y": 35.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_11_4_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.0, + "y": 35.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_F12", + "uuid": "2f0f1bd3-4318-402d-bb88-2d2fa6e92566", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_F12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.0, + "y": 26.0, + "z": 0.0 + }, + "position3d": { + "x": 110.0, + "y": 26.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_11_5_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.0, + "y": 26.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_G12", + "uuid": "d1629925-c422-4c84-a5df-ac07d7561379", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_G12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.0, + "y": 17.0, + "z": 0.0 + }, + "position3d": { + "x": 110.0, + "y": 17.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_11_6_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.0, + "y": 17.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_semiskirted_well_H12", + "uuid": "9ee00cba-d6ae-4ec3-bee4-5a3c3e0f257d", + "name": "PRCXI_PCR_Plate_200uL_semiskirted_well_H12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d5e017b8-e91f-47c8-a60e-5d3b36b3959c", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.17, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.0, + "y": 8.0, + "z": 0.0 + }, + "position3d": { + "x": 110.0, + "y": 8.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.17, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 428.92164499461444, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_11_7_volume_tracker", + "max_volume": 428.92164499461444, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.0, + "y": 8.0, + "z": 0.0 + } + } + ] + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted", + "category": [ + "prcxi", + "plates" + ], + "class": { + "module": "unilabos.devices.liquid_handling.prcxi.prcxi_labware:PRCXI_PCR_Plate_200uL_skirted", + "type": "pylabrobot" + }, + "description": "0.2ml PCR 板 (Code: ZX-023-0.2)", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/prcxi/plates.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "PRCXI_PCR_Plate_200uL_skirted", + "uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "name": "PRCXI_PCR_Plate_200uL_skirted", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "plate", + "class": "", + "pose": { + "size": { + "depth": 16.1, + "width": 127.76, + "height": 86.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "PRCXI9300Plate", + "size_x": 127.76, + "size_y": 86, + "size_z": 16.1, + "category": "plate", + "model": "PRCXI_PCR_Plate_200uL_skirted", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "PRCXI_PCR_Plate_200uL_skirted_well_A1", + "B1": "PRCXI_PCR_Plate_200uL_skirted_well_B1", + "C1": "PRCXI_PCR_Plate_200uL_skirted_well_C1", + "D1": "PRCXI_PCR_Plate_200uL_skirted_well_D1", + "E1": "PRCXI_PCR_Plate_200uL_skirted_well_E1", + "F1": "PRCXI_PCR_Plate_200uL_skirted_well_F1", + "G1": "PRCXI_PCR_Plate_200uL_skirted_well_G1", + "H1": "PRCXI_PCR_Plate_200uL_skirted_well_H1", + "A2": "PRCXI_PCR_Plate_200uL_skirted_well_A2", + "B2": "PRCXI_PCR_Plate_200uL_skirted_well_B2", + "C2": "PRCXI_PCR_Plate_200uL_skirted_well_C2", + "D2": "PRCXI_PCR_Plate_200uL_skirted_well_D2", + "E2": "PRCXI_PCR_Plate_200uL_skirted_well_E2", + "F2": "PRCXI_PCR_Plate_200uL_skirted_well_F2", + "G2": "PRCXI_PCR_Plate_200uL_skirted_well_G2", + "H2": "PRCXI_PCR_Plate_200uL_skirted_well_H2", + "A3": "PRCXI_PCR_Plate_200uL_skirted_well_A3", + "B3": "PRCXI_PCR_Plate_200uL_skirted_well_B3", + "C3": "PRCXI_PCR_Plate_200uL_skirted_well_C3", + "D3": "PRCXI_PCR_Plate_200uL_skirted_well_D3", + "E3": "PRCXI_PCR_Plate_200uL_skirted_well_E3", + "F3": "PRCXI_PCR_Plate_200uL_skirted_well_F3", + "G3": "PRCXI_PCR_Plate_200uL_skirted_well_G3", + "H3": "PRCXI_PCR_Plate_200uL_skirted_well_H3", + "A4": "PRCXI_PCR_Plate_200uL_skirted_well_A4", + "B4": "PRCXI_PCR_Plate_200uL_skirted_well_B4", + "C4": "PRCXI_PCR_Plate_200uL_skirted_well_C4", + "D4": "PRCXI_PCR_Plate_200uL_skirted_well_D4", + "E4": "PRCXI_PCR_Plate_200uL_skirted_well_E4", + "F4": "PRCXI_PCR_Plate_200uL_skirted_well_F4", + "G4": "PRCXI_PCR_Plate_200uL_skirted_well_G4", + "H4": "PRCXI_PCR_Plate_200uL_skirted_well_H4", + "A5": "PRCXI_PCR_Plate_200uL_skirted_well_A5", + "B5": "PRCXI_PCR_Plate_200uL_skirted_well_B5", + "C5": "PRCXI_PCR_Plate_200uL_skirted_well_C5", + "D5": "PRCXI_PCR_Plate_200uL_skirted_well_D5", + "E5": "PRCXI_PCR_Plate_200uL_skirted_well_E5", + "F5": "PRCXI_PCR_Plate_200uL_skirted_well_F5", + "G5": "PRCXI_PCR_Plate_200uL_skirted_well_G5", + "H5": "PRCXI_PCR_Plate_200uL_skirted_well_H5", + "A6": "PRCXI_PCR_Plate_200uL_skirted_well_A6", + "B6": "PRCXI_PCR_Plate_200uL_skirted_well_B6", + "C6": "PRCXI_PCR_Plate_200uL_skirted_well_C6", + "D6": "PRCXI_PCR_Plate_200uL_skirted_well_D6", + "E6": "PRCXI_PCR_Plate_200uL_skirted_well_E6", + "F6": "PRCXI_PCR_Plate_200uL_skirted_well_F6", + "G6": "PRCXI_PCR_Plate_200uL_skirted_well_G6", + "H6": "PRCXI_PCR_Plate_200uL_skirted_well_H6", + "A7": "PRCXI_PCR_Plate_200uL_skirted_well_A7", + "B7": "PRCXI_PCR_Plate_200uL_skirted_well_B7", + "C7": "PRCXI_PCR_Plate_200uL_skirted_well_C7", + "D7": "PRCXI_PCR_Plate_200uL_skirted_well_D7", + "E7": "PRCXI_PCR_Plate_200uL_skirted_well_E7", + "F7": "PRCXI_PCR_Plate_200uL_skirted_well_F7", + "G7": "PRCXI_PCR_Plate_200uL_skirted_well_G7", + "H7": "PRCXI_PCR_Plate_200uL_skirted_well_H7", + "A8": "PRCXI_PCR_Plate_200uL_skirted_well_A8", + "B8": "PRCXI_PCR_Plate_200uL_skirted_well_B8", + "C8": "PRCXI_PCR_Plate_200uL_skirted_well_C8", + "D8": "PRCXI_PCR_Plate_200uL_skirted_well_D8", + "E8": "PRCXI_PCR_Plate_200uL_skirted_well_E8", + "F8": "PRCXI_PCR_Plate_200uL_skirted_well_F8", + "G8": "PRCXI_PCR_Plate_200uL_skirted_well_G8", + "H8": "PRCXI_PCR_Plate_200uL_skirted_well_H8", + "A9": "PRCXI_PCR_Plate_200uL_skirted_well_A9", + "B9": "PRCXI_PCR_Plate_200uL_skirted_well_B9", + "C9": "PRCXI_PCR_Plate_200uL_skirted_well_C9", + "D9": "PRCXI_PCR_Plate_200uL_skirted_well_D9", + "E9": "PRCXI_PCR_Plate_200uL_skirted_well_E9", + "F9": "PRCXI_PCR_Plate_200uL_skirted_well_F9", + "G9": "PRCXI_PCR_Plate_200uL_skirted_well_G9", + "H9": "PRCXI_PCR_Plate_200uL_skirted_well_H9", + "A10": "PRCXI_PCR_Plate_200uL_skirted_well_A10", + "B10": "PRCXI_PCR_Plate_200uL_skirted_well_B10", + "C10": "PRCXI_PCR_Plate_200uL_skirted_well_C10", + "D10": "PRCXI_PCR_Plate_200uL_skirted_well_D10", + "E10": "PRCXI_PCR_Plate_200uL_skirted_well_E10", + "F10": "PRCXI_PCR_Plate_200uL_skirted_well_F10", + "G10": "PRCXI_PCR_Plate_200uL_skirted_well_G10", + "H10": "PRCXI_PCR_Plate_200uL_skirted_well_H10", + "A11": "PRCXI_PCR_Plate_200uL_skirted_well_A11", + "B11": "PRCXI_PCR_Plate_200uL_skirted_well_B11", + "C11": "PRCXI_PCR_Plate_200uL_skirted_well_C11", + "D11": "PRCXI_PCR_Plate_200uL_skirted_well_D11", + "E11": "PRCXI_PCR_Plate_200uL_skirted_well_E11", + "F11": "PRCXI_PCR_Plate_200uL_skirted_well_F11", + "G11": "PRCXI_PCR_Plate_200uL_skirted_well_G11", + "H11": "PRCXI_PCR_Plate_200uL_skirted_well_H11", + "A12": "PRCXI_PCR_Plate_200uL_skirted_well_A12", + "B12": "PRCXI_PCR_Plate_200uL_skirted_well_B12", + "C12": "PRCXI_PCR_Plate_200uL_skirted_well_C12", + "D12": "PRCXI_PCR_Plate_200uL_skirted_well_D12", + "E12": "PRCXI_PCR_Plate_200uL_skirted_well_E12", + "F12": "PRCXI_PCR_Plate_200uL_skirted_well_F12", + "G12": "PRCXI_PCR_Plate_200uL_skirted_well_G12", + "H12": "PRCXI_PCR_Plate_200uL_skirted_well_H12" + } + }, + "data": { + "Material": { + "uuid": "73bb9b10bc394978b70e027bf45ce2d3", + "Code": "ZX-023-0.2", + "Name": "0.2ml PCR 板", + "materialEnum": 0, + "SupplyType": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_A1", + "uuid": "ed331b36-af52-4379-98f4-0bf01ba49eab", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.0, + "y": 71.49, + "z": 0.8 + }, + "position3d": { + "x": 11.0, + "y": 71.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_0_0_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.0, + "y": 71.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_B1", + "uuid": "24c77b57-842f-44b3-b0d7-f74539c64287", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_B1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.0, + "y": 62.49, + "z": 0.8 + }, + "position3d": { + "x": 11.0, + "y": 62.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_0_1_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.0, + "y": 62.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_C1", + "uuid": "e07aa993-117b-4cf5-9818-a2f9db44658b", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_C1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.0, + "y": 53.49, + "z": 0.8 + }, + "position3d": { + "x": 11.0, + "y": 53.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_0_2_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.0, + "y": 53.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_D1", + "uuid": "f350e36e-60a0-4b39-8660-2b359737188f", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_D1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.0, + "y": 44.49, + "z": 0.8 + }, + "position3d": { + "x": 11.0, + "y": 44.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_0_3_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.0, + "y": 44.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_E1", + "uuid": "51e70bd9-2bb7-4961-92b6-640bc2eb5d47", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_E1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.0, + "y": 35.49, + "z": 0.8 + }, + "position3d": { + "x": 11.0, + "y": 35.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_0_4_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.0, + "y": 35.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_F1", + "uuid": "8ed406cc-ede3-4461-b255-a054f95c47c8", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_F1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.0, + "y": 26.49, + "z": 0.8 + }, + "position3d": { + "x": 11.0, + "y": 26.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_0_5_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.0, + "y": 26.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_G1", + "uuid": "82352019-9ae7-474a-b6f1-090990a1c712", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_G1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.0, + "y": 17.49, + "z": 0.8 + }, + "position3d": { + "x": 11.0, + "y": 17.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_0_6_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.0, + "y": 17.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_H1", + "uuid": "51490ee3-a95a-45a3-b227-134f6cf7a1d1", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_H1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.0, + "y": 8.49, + "z": 0.8 + }, + "position3d": { + "x": 11.0, + "y": 8.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_0_7_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.0, + "y": 8.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_A2", + "uuid": "4ffe8016-17ce-4aa3-8c21-f48a82c3a11b", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.0, + "y": 71.49, + "z": 0.8 + }, + "position3d": { + "x": 20.0, + "y": 71.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_1_0_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.0, + "y": 71.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_B2", + "uuid": "76ff2594-d47a-4e16-a987-f672a122b6c9", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_B2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.0, + "y": 62.49, + "z": 0.8 + }, + "position3d": { + "x": 20.0, + "y": 62.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_1_1_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.0, + "y": 62.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_C2", + "uuid": "52c23564-e309-4d27-b4d7-4edaa3919655", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_C2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.0, + "y": 53.49, + "z": 0.8 + }, + "position3d": { + "x": 20.0, + "y": 53.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_1_2_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.0, + "y": 53.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_D2", + "uuid": "4a6dbbde-5d76-482f-b93d-109b0ccbfa1e", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_D2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.0, + "y": 44.49, + "z": 0.8 + }, + "position3d": { + "x": 20.0, + "y": 44.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_1_3_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.0, + "y": 44.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_E2", + "uuid": "429e54e5-4fcf-4781-bb90-7098c92cc787", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_E2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.0, + "y": 35.49, + "z": 0.8 + }, + "position3d": { + "x": 20.0, + "y": 35.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_1_4_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.0, + "y": 35.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_F2", + "uuid": "fa6e5c1f-5d5b-420a-9332-8107dc3d0f62", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_F2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.0, + "y": 26.49, + "z": 0.8 + }, + "position3d": { + "x": 20.0, + "y": 26.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_1_5_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.0, + "y": 26.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_G2", + "uuid": "ca92b986-512d-413c-a224-9410dc154784", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_G2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.0, + "y": 17.49, + "z": 0.8 + }, + "position3d": { + "x": 20.0, + "y": 17.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_1_6_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.0, + "y": 17.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_H2", + "uuid": "d6baafdc-a152-411d-aed4-a809c084c904", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_H2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.0, + "y": 8.49, + "z": 0.8 + }, + "position3d": { + "x": 20.0, + "y": 8.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_1_7_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.0, + "y": 8.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_A3", + "uuid": "2143779c-8fba-4f0a-8f88-3a2cfd760815", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.0, + "y": 71.49, + "z": 0.8 + }, + "position3d": { + "x": 29.0, + "y": 71.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_2_0_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.0, + "y": 71.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_B3", + "uuid": "1f3acb4a-8b99-4f3d-a1e3-284fb13ed8c9", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_B3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.0, + "y": 62.49, + "z": 0.8 + }, + "position3d": { + "x": 29.0, + "y": 62.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_2_1_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.0, + "y": 62.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_C3", + "uuid": "cf852590-4f13-4b29-8b1a-30fa24174cdc", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_C3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.0, + "y": 53.49, + "z": 0.8 + }, + "position3d": { + "x": 29.0, + "y": 53.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_2_2_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.0, + "y": 53.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_D3", + "uuid": "8793a240-015c-46e6-b000-8be82a08da91", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_D3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.0, + "y": 44.49, + "z": 0.8 + }, + "position3d": { + "x": 29.0, + "y": 44.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_2_3_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.0, + "y": 44.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_E3", + "uuid": "a52eef87-1e56-4cf7-8095-cf6f70dcacd6", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_E3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.0, + "y": 35.49, + "z": 0.8 + }, + "position3d": { + "x": 29.0, + "y": 35.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_2_4_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.0, + "y": 35.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_F3", + "uuid": "0e00659f-9807-4d3c-9f1f-98c05f2675d7", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_F3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.0, + "y": 26.49, + "z": 0.8 + }, + "position3d": { + "x": 29.0, + "y": 26.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_2_5_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.0, + "y": 26.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_G3", + "uuid": "fedcca1a-7846-4f02-a5c3-d73e31995a79", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_G3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.0, + "y": 17.49, + "z": 0.8 + }, + "position3d": { + "x": 29.0, + "y": 17.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_2_6_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.0, + "y": 17.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_H3", + "uuid": "0a9d808c-e122-4d4b-b573-641932879566", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_H3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 29.0, + "y": 8.49, + "z": 0.8 + }, + "position3d": { + "x": 29.0, + "y": 8.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_2_7_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 29.0, + "y": 8.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_A4", + "uuid": "4779ec03-23e0-4835-950b-97f8dca1b010", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_A4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.0, + "y": 71.49, + "z": 0.8 + }, + "position3d": { + "x": 38.0, + "y": 71.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_3_0_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.0, + "y": 71.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_B4", + "uuid": "6c04b42c-d718-4de8-932e-1905c03bf76d", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_B4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.0, + "y": 62.49, + "z": 0.8 + }, + "position3d": { + "x": 38.0, + "y": 62.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_3_1_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.0, + "y": 62.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_C4", + "uuid": "f3f7ced9-14ec-4dee-9e05-a6b6f8d047d2", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_C4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.0, + "y": 53.49, + "z": 0.8 + }, + "position3d": { + "x": 38.0, + "y": 53.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_3_2_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.0, + "y": 53.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_D4", + "uuid": "38eaa524-a4a4-41a8-8a01-4420fbe52911", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_D4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.0, + "y": 44.49, + "z": 0.8 + }, + "position3d": { + "x": 38.0, + "y": 44.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_3_3_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.0, + "y": 44.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_E4", + "uuid": "25bf50b8-f693-4cbe-abb1-d65c2e82596a", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_E4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.0, + "y": 35.49, + "z": 0.8 + }, + "position3d": { + "x": 38.0, + "y": 35.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_3_4_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.0, + "y": 35.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_F4", + "uuid": "232d847e-7602-456c-879c-bc1f81c339da", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_F4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.0, + "y": 26.49, + "z": 0.8 + }, + "position3d": { + "x": 38.0, + "y": 26.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_3_5_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.0, + "y": 26.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_G4", + "uuid": "79c1bd95-611f-4385-af3a-ac30ca2af559", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_G4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.0, + "y": 17.49, + "z": 0.8 + }, + "position3d": { + "x": 38.0, + "y": 17.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_3_6_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.0, + "y": 17.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_H4", + "uuid": "cd6bb76b-49e2-49cd-ae94-0ad014fb3a3f", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_H4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 38.0, + "y": 8.49, + "z": 0.8 + }, + "position3d": { + "x": 38.0, + "y": 8.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_3_7_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 38.0, + "y": 8.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_A5", + "uuid": "186566e7-5a20-4702-9eb1-7efbc28662c8", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_A5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.0, + "y": 71.49, + "z": 0.8 + }, + "position3d": { + "x": 47.0, + "y": 71.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_4_0_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.0, + "y": 71.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_B5", + "uuid": "e641fec9-1c20-419e-abad-1638542b2832", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_B5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.0, + "y": 62.49, + "z": 0.8 + }, + "position3d": { + "x": 47.0, + "y": 62.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_4_1_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.0, + "y": 62.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_C5", + "uuid": "dd145fe2-18ab-444c-8310-333ad625f8a5", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_C5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.0, + "y": 53.49, + "z": 0.8 + }, + "position3d": { + "x": 47.0, + "y": 53.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_4_2_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.0, + "y": 53.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_D5", + "uuid": "80578047-687f-4b90-8f38-26e9e9a7a3fc", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_D5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.0, + "y": 44.49, + "z": 0.8 + }, + "position3d": { + "x": 47.0, + "y": 44.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_4_3_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.0, + "y": 44.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_E5", + "uuid": "0f6a25a6-dd72-49ed-800f-f64b3cf82716", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_E5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.0, + "y": 35.49, + "z": 0.8 + }, + "position3d": { + "x": 47.0, + "y": 35.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_4_4_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.0, + "y": 35.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_F5", + "uuid": "a5400566-0b0a-4da5-bd09-255a70cec383", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_F5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.0, + "y": 26.49, + "z": 0.8 + }, + "position3d": { + "x": 47.0, + "y": 26.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_4_5_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.0, + "y": 26.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_G5", + "uuid": "6e982e5e-a798-4dc2-b292-1735e203e29a", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_G5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.0, + "y": 17.49, + "z": 0.8 + }, + "position3d": { + "x": 47.0, + "y": 17.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_4_6_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.0, + "y": 17.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_H5", + "uuid": "fb1df7ca-964f-45cc-a2eb-2d7f29c8a4ec", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_H5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 47.0, + "y": 8.49, + "z": 0.8 + }, + "position3d": { + "x": 47.0, + "y": 8.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_4_7_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 47.0, + "y": 8.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_A6", + "uuid": "cbeaa849-4d37-4e66-9969-caa75125f981", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_A6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.0, + "y": 71.49, + "z": 0.8 + }, + "position3d": { + "x": 56.0, + "y": 71.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_5_0_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.0, + "y": 71.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_B6", + "uuid": "7ecf824e-ea2c-477c-8959-259d192376cc", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_B6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.0, + "y": 62.49, + "z": 0.8 + }, + "position3d": { + "x": 56.0, + "y": 62.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_5_1_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.0, + "y": 62.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_C6", + "uuid": "88fce9f9-3379-4507-8199-87b680f9efd3", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_C6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.0, + "y": 53.49, + "z": 0.8 + }, + "position3d": { + "x": 56.0, + "y": 53.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_5_2_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.0, + "y": 53.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_D6", + "uuid": "7e9c6f76-a9c3-41e3-afb7-48150536bc70", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_D6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.0, + "y": 44.49, + "z": 0.8 + }, + "position3d": { + "x": 56.0, + "y": 44.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_5_3_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.0, + "y": 44.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_E6", + "uuid": "f42a04cb-26aa-4dc4-9e10-096947bf296d", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_E6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.0, + "y": 35.49, + "z": 0.8 + }, + "position3d": { + "x": 56.0, + "y": 35.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_5_4_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.0, + "y": 35.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_F6", + "uuid": "c228431d-6ddc-4804-8ad5-183d242826f2", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_F6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.0, + "y": 26.49, + "z": 0.8 + }, + "position3d": { + "x": 56.0, + "y": 26.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_5_5_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.0, + "y": 26.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_G6", + "uuid": "d322dbac-943e-4cdf-bc0c-2b18667a4fb0", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_G6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.0, + "y": 17.49, + "z": 0.8 + }, + "position3d": { + "x": 56.0, + "y": 17.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_5_6_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.0, + "y": 17.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_H6", + "uuid": "7bdcf804-9806-4e2d-aa07-22d630becc09", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_H6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 56.0, + "y": 8.49, + "z": 0.8 + }, + "position3d": { + "x": 56.0, + "y": 8.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_5_7_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 56.0, + "y": 8.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_A7", + "uuid": "046e874a-bf60-4530-87ab-bc256e7f2e8b", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_A7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.0, + "y": 71.49, + "z": 0.8 + }, + "position3d": { + "x": 65.0, + "y": 71.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_6_0_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.0, + "y": 71.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_B7", + "uuid": "4c4819a8-db74-431b-96bc-43be44d09554", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_B7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.0, + "y": 62.49, + "z": 0.8 + }, + "position3d": { + "x": 65.0, + "y": 62.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_6_1_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.0, + "y": 62.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_C7", + "uuid": "55080e32-5f8e-4b19-b25f-08e88369e858", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_C7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.0, + "y": 53.49, + "z": 0.8 + }, + "position3d": { + "x": 65.0, + "y": 53.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_6_2_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.0, + "y": 53.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_D7", + "uuid": "a0251012-41c2-477f-8589-74aced5cc985", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_D7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.0, + "y": 44.49, + "z": 0.8 + }, + "position3d": { + "x": 65.0, + "y": 44.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_6_3_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.0, + "y": 44.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_E7", + "uuid": "e31641e6-0b44-4233-a2fa-0ddbebe85626", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_E7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.0, + "y": 35.49, + "z": 0.8 + }, + "position3d": { + "x": 65.0, + "y": 35.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_6_4_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.0, + "y": 35.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_F7", + "uuid": "baf263de-e6a5-4b72-b020-f86aef09a0b8", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_F7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.0, + "y": 26.49, + "z": 0.8 + }, + "position3d": { + "x": 65.0, + "y": 26.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_6_5_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.0, + "y": 26.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_G7", + "uuid": "b7e743fd-b0e9-4042-a710-27be27c59019", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_G7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.0, + "y": 17.49, + "z": 0.8 + }, + "position3d": { + "x": 65.0, + "y": 17.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_6_6_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.0, + "y": 17.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_H7", + "uuid": "35051dbf-5f55-444d-b9a3-cdfc14fc864f", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_H7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 65.0, + "y": 8.49, + "z": 0.8 + }, + "position3d": { + "x": 65.0, + "y": 8.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_6_7_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 65.0, + "y": 8.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_A8", + "uuid": "b694be47-1663-4316-a10c-5bb3cea94990", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_A8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.0, + "y": 71.49, + "z": 0.8 + }, + "position3d": { + "x": 74.0, + "y": 71.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_7_0_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.0, + "y": 71.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_B8", + "uuid": "21629041-27b2-4bd3-9960-b4e10af9cf2e", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_B8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.0, + "y": 62.49, + "z": 0.8 + }, + "position3d": { + "x": 74.0, + "y": 62.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_7_1_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.0, + "y": 62.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_C8", + "uuid": "3b322fae-1c40-4d3f-8cea-1956082e87a6", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_C8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.0, + "y": 53.49, + "z": 0.8 + }, + "position3d": { + "x": 74.0, + "y": 53.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_7_2_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.0, + "y": 53.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_D8", + "uuid": "3eee909e-b24f-4d8d-b919-f40f9ac5387c", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_D8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.0, + "y": 44.49, + "z": 0.8 + }, + "position3d": { + "x": 74.0, + "y": 44.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_7_3_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.0, + "y": 44.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_E8", + "uuid": "d9dea941-5ecc-42bc-bf37-c06c21280dff", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_E8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.0, + "y": 35.49, + "z": 0.8 + }, + "position3d": { + "x": 74.0, + "y": 35.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_7_4_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.0, + "y": 35.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_F8", + "uuid": "2f08c914-c840-4137-9130-02b3e2d84b34", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_F8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.0, + "y": 26.49, + "z": 0.8 + }, + "position3d": { + "x": 74.0, + "y": 26.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_7_5_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.0, + "y": 26.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_G8", + "uuid": "3cd60ad4-8794-4232-8e43-6652d5eec1c2", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_G8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.0, + "y": 17.49, + "z": 0.8 + }, + "position3d": { + "x": 74.0, + "y": 17.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_7_6_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.0, + "y": 17.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_H8", + "uuid": "3b15f3fa-c758-4e2d-97c0-8a171638e6ce", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_H8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.0, + "y": 8.49, + "z": 0.8 + }, + "position3d": { + "x": 74.0, + "y": 8.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_7_7_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.0, + "y": 8.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_A9", + "uuid": "b12fd457-05ee-4ea6-9757-cf8b0ac84920", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_A9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.0, + "y": 71.49, + "z": 0.8 + }, + "position3d": { + "x": 83.0, + "y": 71.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_8_0_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.0, + "y": 71.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_B9", + "uuid": "17f58fab-d8f4-48af-b8ad-574d7db8f28a", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_B9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.0, + "y": 62.49, + "z": 0.8 + }, + "position3d": { + "x": 83.0, + "y": 62.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_8_1_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.0, + "y": 62.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_C9", + "uuid": "627d15e6-5891-4c75-b2c8-100b4a1250a7", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_C9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.0, + "y": 53.49, + "z": 0.8 + }, + "position3d": { + "x": 83.0, + "y": 53.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_8_2_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.0, + "y": 53.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_D9", + "uuid": "a21e274d-7967-4821-8454-28b0f214596e", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_D9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.0, + "y": 44.49, + "z": 0.8 + }, + "position3d": { + "x": 83.0, + "y": 44.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_8_3_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.0, + "y": 44.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_E9", + "uuid": "653da206-3fad-43ba-bfe3-d088064fe164", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_E9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.0, + "y": 35.49, + "z": 0.8 + }, + "position3d": { + "x": 83.0, + "y": 35.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_8_4_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.0, + "y": 35.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_F9", + "uuid": "33f27128-482a-44a6-9615-f38da43163b3", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_F9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.0, + "y": 26.49, + "z": 0.8 + }, + "position3d": { + "x": 83.0, + "y": 26.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_8_5_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.0, + "y": 26.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_G9", + "uuid": "0e0a1e68-d725-4330-b027-8d14b3a58d19", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_G9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.0, + "y": 17.49, + "z": 0.8 + }, + "position3d": { + "x": 83.0, + "y": 17.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_8_6_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.0, + "y": 17.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_H9", + "uuid": "896f2181-ae75-4b6e-a7f7-38b9a422b17b", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_H9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 83.0, + "y": 8.49, + "z": 0.8 + }, + "position3d": { + "x": 83.0, + "y": 8.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_8_7_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 83.0, + "y": 8.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_A10", + "uuid": "f5b69d65-b2c7-4e8a-96e5-a23bb25d6abc", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_A10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.0, + "y": 71.49, + "z": 0.8 + }, + "position3d": { + "x": 92.0, + "y": 71.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_9_0_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.0, + "y": 71.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_B10", + "uuid": "0d52c82d-8be0-49ad-84c7-471ea8d699a9", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_B10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.0, + "y": 62.49, + "z": 0.8 + }, + "position3d": { + "x": 92.0, + "y": 62.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_9_1_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.0, + "y": 62.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_C10", + "uuid": "273d9c49-fc71-49fb-98c1-a74decbca413", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_C10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.0, + "y": 53.49, + "z": 0.8 + }, + "position3d": { + "x": 92.0, + "y": 53.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_9_2_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.0, + "y": 53.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_D10", + "uuid": "1b053d38-c39c-4d41-a0d3-299eb7783693", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_D10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.0, + "y": 44.49, + "z": 0.8 + }, + "position3d": { + "x": 92.0, + "y": 44.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_9_3_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.0, + "y": 44.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_E10", + "uuid": "1da24c7e-69a3-4c7d-895c-2b7312efeb6f", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_E10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.0, + "y": 35.49, + "z": 0.8 + }, + "position3d": { + "x": 92.0, + "y": 35.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_9_4_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.0, + "y": 35.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_F10", + "uuid": "9e89d08c-4b09-4e49-b77a-360e1f8bbec5", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_F10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.0, + "y": 26.49, + "z": 0.8 + }, + "position3d": { + "x": 92.0, + "y": 26.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_9_5_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.0, + "y": 26.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_G10", + "uuid": "47171766-111e-4825-bee1-2d3f0ee39349", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_G10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.0, + "y": 17.49, + "z": 0.8 + }, + "position3d": { + "x": 92.0, + "y": 17.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_9_6_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.0, + "y": 17.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_H10", + "uuid": "7d14af0b-bb96-49d5-9140-d2984b73fc19", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_H10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 92.0, + "y": 8.49, + "z": 0.8 + }, + "position3d": { + "x": 92.0, + "y": 8.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_9_7_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 92.0, + "y": 8.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_A11", + "uuid": "4b59bb4a-a55c-4ac5-bf1c-8b97f685a724", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_A11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.0, + "y": 71.49, + "z": 0.8 + }, + "position3d": { + "x": 101.0, + "y": 71.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_10_0_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.0, + "y": 71.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_B11", + "uuid": "2777480b-0b6c-4990-bc7b-bc172c6fcad2", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_B11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.0, + "y": 62.49, + "z": 0.8 + }, + "position3d": { + "x": 101.0, + "y": 62.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_10_1_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.0, + "y": 62.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_C11", + "uuid": "ece4ccf0-d00d-456e-aea3-5988bc916367", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_C11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.0, + "y": 53.49, + "z": 0.8 + }, + "position3d": { + "x": 101.0, + "y": 53.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_10_2_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.0, + "y": 53.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_D11", + "uuid": "ec40b3ef-cb3d-4787-86b4-818dd3d97e8e", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_D11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.0, + "y": 44.49, + "z": 0.8 + }, + "position3d": { + "x": 101.0, + "y": 44.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_10_3_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.0, + "y": 44.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_E11", + "uuid": "d6344286-674d-45fc-82a1-b0ae46a3d298", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_E11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.0, + "y": 35.49, + "z": 0.8 + }, + "position3d": { + "x": 101.0, + "y": 35.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_10_4_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.0, + "y": 35.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_F11", + "uuid": "ca526355-c59a-449c-bee6-5a879027ca2c", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_F11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.0, + "y": 26.49, + "z": 0.8 + }, + "position3d": { + "x": 101.0, + "y": 26.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_10_5_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.0, + "y": 26.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_G11", + "uuid": "dbf7a960-3006-4b6b-aedb-d54b2692f2fc", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_G11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.0, + "y": 17.49, + "z": 0.8 + }, + "position3d": { + "x": 101.0, + "y": 17.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_10_6_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.0, + "y": 17.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_H11", + "uuid": "c3bc8266-991c-46ab-805e-36ea19302dde", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_H11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 101.0, + "y": 8.49, + "z": 0.8 + }, + "position3d": { + "x": 101.0, + "y": 8.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_10_7_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 101.0, + "y": 8.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_A12", + "uuid": "d3633c5e-6627-4969-9d27-06599d33851e", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_A12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.0, + "y": 71.49, + "z": 0.8 + }, + "position3d": { + "x": 110.0, + "y": 71.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_11_0_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.0, + "y": 71.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_B12", + "uuid": "9c499d35-9e7a-4b3c-a7ca-fcb648978f84", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_B12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.0, + "y": 62.49, + "z": 0.8 + }, + "position3d": { + "x": 110.0, + "y": 62.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_11_1_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.0, + "y": 62.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_C12", + "uuid": "fd531afd-ae50-4eec-addf-0cf7ba5f8c45", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_C12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.0, + "y": 53.49, + "z": 0.8 + }, + "position3d": { + "x": 110.0, + "y": 53.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_11_2_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.0, + "y": 53.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_D12", + "uuid": "aec9e3ba-2a66-4773-8f6a-10a86769e247", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_D12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.0, + "y": 44.49, + "z": 0.8 + }, + "position3d": { + "x": 110.0, + "y": 44.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_11_3_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.0, + "y": 44.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_E12", + "uuid": "e93f98ec-da33-4f88-912c-182b7e6abc09", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_E12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.0, + "y": 35.49, + "z": 0.8 + }, + "position3d": { + "x": 110.0, + "y": 35.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_11_4_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.0, + "y": 35.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_F12", + "uuid": "3fac7f64-d8e7-4c99-b62b-24f72947e19e", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_F12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.0, + "y": 26.49, + "z": 0.8 + }, + "position3d": { + "x": 110.0, + "y": 26.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_11_5_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.0, + "y": 26.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_G12", + "uuid": "426b321a-ce0a-46a5-ba78-46483a04c72e", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_G12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.0, + "y": 17.49, + "z": 0.8 + }, + "position3d": { + "x": 110.0, + "y": 17.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_11_6_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.0, + "y": 17.49, + "z": 0.8 + } + }, + { + "id": "PRCXI_PCR_Plate_200uL_skirted_well_H12", + "uuid": "cbe61ac8-e3ae-444d-b561-9cebed35268b", + "name": "PRCXI_PCR_Plate_200uL_skirted_well_H12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be60825a-b8df-4f2b-9751-22c8c4fbfd54", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 15.1, + "width": 6.0, + "height": 6.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 110.0, + "y": 8.49, + "z": 0.8 + }, + "position3d": { + "x": 110.0, + "y": 8.49, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 6, + "size_y": 6, + "size_z": 15.1, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 426.94244162285287, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "well_11_7_volume_tracker", + "max_volume": 426.94244162285287, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 110.0, + "y": 8.49, + "z": 0.8 + } + } + ] + }, + { + "id": "PRCXI_nest_12_troughplate", + "category": [ + "prcxi", + "plates" + ], + "class": { + "module": "unilabos.devices.liquid_handling.prcxi.prcxi_labware:PRCXI_nest_12_troughplate", + "type": "pylabrobot" + }, + "description": "12道储液槽 (Code: 12道储液槽)", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/prcxi/plates.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "PRCXI_nest_12_troughplate", + "uuid": "fd6b69b4-7e1c-400f-adf9-45268c3d1a17", + "name": "PRCXI_nest_12_troughplate", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "plate", + "class": "", + "pose": { + "size": { + "depth": 31.4, + "width": 127.76, + "height": 85.48 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "PRCXI9300Plate", + "size_x": 127.76, + "size_y": 85.48, + "size_z": 31.4, + "category": "plate", + "model": "PRCXI_nest_12_troughplate", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "PRCXI_nest_12_troughplate_well_A1", + "A2": "PRCXI_nest_12_troughplate_well_A2", + "A3": "PRCXI_nest_12_troughplate_well_A3", + "A4": "PRCXI_nest_12_troughplate_well_A4", + "A5": "PRCXI_nest_12_troughplate_well_A5", + "A6": "PRCXI_nest_12_troughplate_well_A6", + "A7": "PRCXI_nest_12_troughplate_well_A7", + "A8": "PRCXI_nest_12_troughplate_well_A8", + "A9": "PRCXI_nest_12_troughplate_well_A9", + "A10": "PRCXI_nest_12_troughplate_well_A10", + "A11": "PRCXI_nest_12_troughplate_well_A11", + "A12": "PRCXI_nest_12_troughplate_well_A12" + } + }, + "data": { + "Material": { + "uuid": "0f1639987b154e1fac78f4fb29a1f7c1", + "Code": "12道储液槽", + "Name": "12道储液槽", + "materialEnum": 0, + "SupplyType": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_nest_12_troughplate_well_A1", + "uuid": "a88d9694-2689-4cbd-9f67-f0fc10ae6a2f", + "name": "PRCXI_nest_12_troughplate_well_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6b69b4-7e1c-400f-adf9-45268c3d1a17", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 26.85, + "width": 8.2, + "height": 71.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 10.28, + "y": 7.14, + "z": 3.55 + }, + "position3d": { + "x": 10.28, + "y": 7.14, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 71.2, + "size_z": 26.85, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 15676.104, + "material_z_thickness": 0.9999999999999973, + "compute_volume_from_height": { + "type": "function", + "code": "e30100000000000000000000000500000013000000f328000000950297007401000000000000000000007c0089018902ac01a6030000ab0300000000000000005300a9024e2903da0d6c69717569645f686569676874da0b77656c6c5f6c656e677468da0a77656c6c5f7769647468a901da24636f6d707574655f766f6c756d655f66726f6d5f6865696768745f72656374616e676c65a9037203000000da0b77656c6c5f73697a655f78da0b77656c6c5f73697a655f797303000000208080fa642f55736572732f64702f736f6674776172652f4769744875622f4c6561704c61622f556e692d4c61622d4f532f756e696c61626f732f646576696365732f6c69717569645f68616e646c696e672f70726378692f70726378695f6c6162776172652e7079fa083c6c616d6264613efa2b50524358495f6e6573745f31325f74726f756768706c6174652e3c6c6f63616c733e2e3c6c616d6264613edf000000f31e000000f88000d5385cd81421a87bc07bf003023906f100023906f4000239068000f300000000", + "closure": [ + { + "type": "cell", + "contents": 8.2 + }, + { + "type": "cell", + "contents": 71.2 + } + ] + }, + "compute_height_from_volume": { + "type": "function", + "code": "e30100000000000000000000000500000013000000f328000000950297007401000000000000000000007c0089018902ac01a6030000ab0300000000000000005300a9024e2903da0d6c69717569645f766f6c756d65da0b77656c6c5f6c656e677468da0a77656c6c5f7769647468a901da24636f6d707574655f6865696768745f66726f6d5f766f6c756d655f72656374616e676c65a9037203000000da0b77656c6c5f73697a655f78da0b77656c6c5f73697a655f797303000000208080fa642f55736572732f64702f736f6674776172652f4769744875622f4c6561704c61622f556e692d4c61622d4f532f756e696c61626f732f646576696365732f6c69717569645f68616e646c696e672f70726378692f70726378695f6c6162776172652e7079fa083c6c616d6264613efa2b50524358495f6e6573745f31325f74726f756768706c6174652e3c6c6f63616c733e2e3c6c616d6264613edc000000f31e000000f88000d5385cd81421a87bc07bf003023906f100023906f4000239068000f300000000", + "closure": [ + { + "type": "cell", + "contents": 8.2 + }, + { + "type": "cell", + "contents": 71.2 + } + ] + }, + "height_volume_data": null + }, + "data": { + "thing": "well_0_0_volume_tracker", + "max_volume": 15676.104, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 10.28, + "y": 7.14, + "z": 3.55 + } + }, + { + "id": "PRCXI_nest_12_troughplate_well_A2", + "uuid": "5f908e6b-0b61-4a2c-93a8-007c021d967b", + "name": "PRCXI_nest_12_troughplate_well_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6b69b4-7e1c-400f-adf9-45268c3d1a17", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 26.85, + "width": 8.2, + "height": 71.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 19.28, + "y": 7.14, + "z": 3.55 + }, + "position3d": { + "x": 19.28, + "y": 7.14, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 71.2, + "size_z": 26.85, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 15676.104, + "material_z_thickness": 0.9999999999999973, + "compute_volume_from_height": { + "type": "function", + "code": "e30100000000000000000000000500000013000000f328000000950297007401000000000000000000007c0089018902ac01a6030000ab0300000000000000005300a9024e2903da0d6c69717569645f686569676874da0b77656c6c5f6c656e677468da0a77656c6c5f7769647468a901da24636f6d707574655f766f6c756d655f66726f6d5f6865696768745f72656374616e676c65a9037203000000da0b77656c6c5f73697a655f78da0b77656c6c5f73697a655f797303000000208080fa642f55736572732f64702f736f6674776172652f4769744875622f4c6561704c61622f556e692d4c61622d4f532f756e696c61626f732f646576696365732f6c69717569645f68616e646c696e672f70726378692f70726378695f6c6162776172652e7079fa083c6c616d6264613efa2b50524358495f6e6573745f31325f74726f756768706c6174652e3c6c6f63616c733e2e3c6c616d6264613edf000000f31e000000f88000d5385cd81421a87bc07bf003023906f100023906f4000239068000f300000000", + "closure": [ + { + "type": "cell", + "contents": 8.2 + }, + { + "type": "cell", + "contents": 71.2 + } + ] + }, + "compute_height_from_volume": { + "type": "function", + "code": "e30100000000000000000000000500000013000000f328000000950297007401000000000000000000007c0089018902ac01a6030000ab0300000000000000005300a9024e2903da0d6c69717569645f766f6c756d65da0b77656c6c5f6c656e677468da0a77656c6c5f7769647468a901da24636f6d707574655f6865696768745f66726f6d5f766f6c756d655f72656374616e676c65a9037203000000da0b77656c6c5f73697a655f78da0b77656c6c5f73697a655f797303000000208080fa642f55736572732f64702f736f6674776172652f4769744875622f4c6561704c61622f556e692d4c61622d4f532f756e696c61626f732f646576696365732f6c69717569645f68616e646c696e672f70726378692f70726378695f6c6162776172652e7079fa083c6c616d6264613efa2b50524358495f6e6573745f31325f74726f756768706c6174652e3c6c6f63616c733e2e3c6c616d6264613edc000000f31e000000f88000d5385cd81421a87bc07bf003023906f100023906f4000239068000f300000000", + "closure": [ + { + "type": "cell", + "contents": 8.2 + }, + { + "type": "cell", + "contents": 71.2 + } + ] + }, + "height_volume_data": null + }, + "data": { + "thing": "well_1_0_volume_tracker", + "max_volume": 15676.104, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 19.28, + "y": 7.14, + "z": 3.55 + } + }, + { + "id": "PRCXI_nest_12_troughplate_well_A3", + "uuid": "a8124516-998f-48e2-9985-7d3fe34db480", + "name": "PRCXI_nest_12_troughplate_well_A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6b69b4-7e1c-400f-adf9-45268c3d1a17", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 26.85, + "width": 8.2, + "height": 71.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 28.28, + "y": 7.14, + "z": 3.55 + }, + "position3d": { + "x": 28.28, + "y": 7.14, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 71.2, + "size_z": 26.85, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 15676.104, + "material_z_thickness": 0.9999999999999973, + "compute_volume_from_height": { + "type": "function", + "code": "e30100000000000000000000000500000013000000f328000000950297007401000000000000000000007c0089018902ac01a6030000ab0300000000000000005300a9024e2903da0d6c69717569645f686569676874da0b77656c6c5f6c656e677468da0a77656c6c5f7769647468a901da24636f6d707574655f766f6c756d655f66726f6d5f6865696768745f72656374616e676c65a9037203000000da0b77656c6c5f73697a655f78da0b77656c6c5f73697a655f797303000000208080fa642f55736572732f64702f736f6674776172652f4769744875622f4c6561704c61622f556e692d4c61622d4f532f756e696c61626f732f646576696365732f6c69717569645f68616e646c696e672f70726378692f70726378695f6c6162776172652e7079fa083c6c616d6264613efa2b50524358495f6e6573745f31325f74726f756768706c6174652e3c6c6f63616c733e2e3c6c616d6264613edf000000f31e000000f88000d5385cd81421a87bc07bf003023906f100023906f4000239068000f300000000", + "closure": [ + { + "type": "cell", + "contents": 8.2 + }, + { + "type": "cell", + "contents": 71.2 + } + ] + }, + "compute_height_from_volume": { + "type": "function", + "code": "e30100000000000000000000000500000013000000f328000000950297007401000000000000000000007c0089018902ac01a6030000ab0300000000000000005300a9024e2903da0d6c69717569645f766f6c756d65da0b77656c6c5f6c656e677468da0a77656c6c5f7769647468a901da24636f6d707574655f6865696768745f66726f6d5f766f6c756d655f72656374616e676c65a9037203000000da0b77656c6c5f73697a655f78da0b77656c6c5f73697a655f797303000000208080fa642f55736572732f64702f736f6674776172652f4769744875622f4c6561704c61622f556e692d4c61622d4f532f756e696c61626f732f646576696365732f6c69717569645f68616e646c696e672f70726378692f70726378695f6c6162776172652e7079fa083c6c616d6264613efa2b50524358495f6e6573745f31325f74726f756768706c6174652e3c6c6f63616c733e2e3c6c616d6264613edc000000f31e000000f88000d5385cd81421a87bc07bf003023906f100023906f4000239068000f300000000", + "closure": [ + { + "type": "cell", + "contents": 8.2 + }, + { + "type": "cell", + "contents": 71.2 + } + ] + }, + "height_volume_data": null + }, + "data": { + "thing": "well_2_0_volume_tracker", + "max_volume": 15676.104, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 28.28, + "y": 7.14, + "z": 3.55 + } + }, + { + "id": "PRCXI_nest_12_troughplate_well_A4", + "uuid": "a142cfac-f07d-4255-b362-61470708d203", + "name": "PRCXI_nest_12_troughplate_well_A4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6b69b4-7e1c-400f-adf9-45268c3d1a17", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 26.85, + "width": 8.2, + "height": 71.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 37.28, + "y": 7.14, + "z": 3.55 + }, + "position3d": { + "x": 37.28, + "y": 7.14, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 71.2, + "size_z": 26.85, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 15676.104, + "material_z_thickness": 0.9999999999999973, + "compute_volume_from_height": { + "type": "function", + "code": "e30100000000000000000000000500000013000000f328000000950297007401000000000000000000007c0089018902ac01a6030000ab0300000000000000005300a9024e2903da0d6c69717569645f686569676874da0b77656c6c5f6c656e677468da0a77656c6c5f7769647468a901da24636f6d707574655f766f6c756d655f66726f6d5f6865696768745f72656374616e676c65a9037203000000da0b77656c6c5f73697a655f78da0b77656c6c5f73697a655f797303000000208080fa642f55736572732f64702f736f6674776172652f4769744875622f4c6561704c61622f556e692d4c61622d4f532f756e696c61626f732f646576696365732f6c69717569645f68616e646c696e672f70726378692f70726378695f6c6162776172652e7079fa083c6c616d6264613efa2b50524358495f6e6573745f31325f74726f756768706c6174652e3c6c6f63616c733e2e3c6c616d6264613edf000000f31e000000f88000d5385cd81421a87bc07bf003023906f100023906f4000239068000f300000000", + "closure": [ + { + "type": "cell", + "contents": 8.2 + }, + { + "type": "cell", + "contents": 71.2 + } + ] + }, + "compute_height_from_volume": { + "type": "function", + "code": "e30100000000000000000000000500000013000000f328000000950297007401000000000000000000007c0089018902ac01a6030000ab0300000000000000005300a9024e2903da0d6c69717569645f766f6c756d65da0b77656c6c5f6c656e677468da0a77656c6c5f7769647468a901da24636f6d707574655f6865696768745f66726f6d5f766f6c756d655f72656374616e676c65a9037203000000da0b77656c6c5f73697a655f78da0b77656c6c5f73697a655f797303000000208080fa642f55736572732f64702f736f6674776172652f4769744875622f4c6561704c61622f556e692d4c61622d4f532f756e696c61626f732f646576696365732f6c69717569645f68616e646c696e672f70726378692f70726378695f6c6162776172652e7079fa083c6c616d6264613efa2b50524358495f6e6573745f31325f74726f756768706c6174652e3c6c6f63616c733e2e3c6c616d6264613edc000000f31e000000f88000d5385cd81421a87bc07bf003023906f100023906f4000239068000f300000000", + "closure": [ + { + "type": "cell", + "contents": 8.2 + }, + { + "type": "cell", + "contents": 71.2 + } + ] + }, + "height_volume_data": null + }, + "data": { + "thing": "well_3_0_volume_tracker", + "max_volume": 15676.104, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 37.28, + "y": 7.14, + "z": 3.55 + } + }, + { + "id": "PRCXI_nest_12_troughplate_well_A5", + "uuid": "31e19a2d-0d4f-4191-8b6e-e47621caf49e", + "name": "PRCXI_nest_12_troughplate_well_A5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6b69b4-7e1c-400f-adf9-45268c3d1a17", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 26.85, + "width": 8.2, + "height": 71.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.28, + "y": 7.14, + "z": 3.55 + }, + "position3d": { + "x": 46.28, + "y": 7.14, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 71.2, + "size_z": 26.85, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 15676.104, + "material_z_thickness": 0.9999999999999973, + "compute_volume_from_height": { + "type": "function", + "code": "e30100000000000000000000000500000013000000f328000000950297007401000000000000000000007c0089018902ac01a6030000ab0300000000000000005300a9024e2903da0d6c69717569645f686569676874da0b77656c6c5f6c656e677468da0a77656c6c5f7769647468a901da24636f6d707574655f766f6c756d655f66726f6d5f6865696768745f72656374616e676c65a9037203000000da0b77656c6c5f73697a655f78da0b77656c6c5f73697a655f797303000000208080fa642f55736572732f64702f736f6674776172652f4769744875622f4c6561704c61622f556e692d4c61622d4f532f756e696c61626f732f646576696365732f6c69717569645f68616e646c696e672f70726378692f70726378695f6c6162776172652e7079fa083c6c616d6264613efa2b50524358495f6e6573745f31325f74726f756768706c6174652e3c6c6f63616c733e2e3c6c616d6264613edf000000f31e000000f88000d5385cd81421a87bc07bf003023906f100023906f4000239068000f300000000", + "closure": [ + { + "type": "cell", + "contents": 8.2 + }, + { + "type": "cell", + "contents": 71.2 + } + ] + }, + "compute_height_from_volume": { + "type": "function", + "code": "e30100000000000000000000000500000013000000f328000000950297007401000000000000000000007c0089018902ac01a6030000ab0300000000000000005300a9024e2903da0d6c69717569645f766f6c756d65da0b77656c6c5f6c656e677468da0a77656c6c5f7769647468a901da24636f6d707574655f6865696768745f66726f6d5f766f6c756d655f72656374616e676c65a9037203000000da0b77656c6c5f73697a655f78da0b77656c6c5f73697a655f797303000000208080fa642f55736572732f64702f736f6674776172652f4769744875622f4c6561704c61622f556e692d4c61622d4f532f756e696c61626f732f646576696365732f6c69717569645f68616e646c696e672f70726378692f70726378695f6c6162776172652e7079fa083c6c616d6264613efa2b50524358495f6e6573745f31325f74726f756768706c6174652e3c6c6f63616c733e2e3c6c616d6264613edc000000f31e000000f88000d5385cd81421a87bc07bf003023906f100023906f4000239068000f300000000", + "closure": [ + { + "type": "cell", + "contents": 8.2 + }, + { + "type": "cell", + "contents": 71.2 + } + ] + }, + "height_volume_data": null + }, + "data": { + "thing": "well_4_0_volume_tracker", + "max_volume": 15676.104, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.28, + "y": 7.14, + "z": 3.55 + } + }, + { + "id": "PRCXI_nest_12_troughplate_well_A6", + "uuid": "339551ba-974b-40b4-afa0-ceb31f401963", + "name": "PRCXI_nest_12_troughplate_well_A6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6b69b4-7e1c-400f-adf9-45268c3d1a17", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 26.85, + "width": 8.2, + "height": 71.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 55.28, + "y": 7.14, + "z": 3.55 + }, + "position3d": { + "x": 55.28, + "y": 7.14, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 71.2, + "size_z": 26.85, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 15676.104, + "material_z_thickness": 0.9999999999999973, + "compute_volume_from_height": { + "type": "function", + "code": "e30100000000000000000000000500000013000000f328000000950297007401000000000000000000007c0089018902ac01a6030000ab0300000000000000005300a9024e2903da0d6c69717569645f686569676874da0b77656c6c5f6c656e677468da0a77656c6c5f7769647468a901da24636f6d707574655f766f6c756d655f66726f6d5f6865696768745f72656374616e676c65a9037203000000da0b77656c6c5f73697a655f78da0b77656c6c5f73697a655f797303000000208080fa642f55736572732f64702f736f6674776172652f4769744875622f4c6561704c61622f556e692d4c61622d4f532f756e696c61626f732f646576696365732f6c69717569645f68616e646c696e672f70726378692f70726378695f6c6162776172652e7079fa083c6c616d6264613efa2b50524358495f6e6573745f31325f74726f756768706c6174652e3c6c6f63616c733e2e3c6c616d6264613edf000000f31e000000f88000d5385cd81421a87bc07bf003023906f100023906f4000239068000f300000000", + "closure": [ + { + "type": "cell", + "contents": 8.2 + }, + { + "type": "cell", + "contents": 71.2 + } + ] + }, + "compute_height_from_volume": { + "type": "function", + "code": "e30100000000000000000000000500000013000000f328000000950297007401000000000000000000007c0089018902ac01a6030000ab0300000000000000005300a9024e2903da0d6c69717569645f766f6c756d65da0b77656c6c5f6c656e677468da0a77656c6c5f7769647468a901da24636f6d707574655f6865696768745f66726f6d5f766f6c756d655f72656374616e676c65a9037203000000da0b77656c6c5f73697a655f78da0b77656c6c5f73697a655f797303000000208080fa642f55736572732f64702f736f6674776172652f4769744875622f4c6561704c61622f556e692d4c61622d4f532f756e696c61626f732f646576696365732f6c69717569645f68616e646c696e672f70726378692f70726378695f6c6162776172652e7079fa083c6c616d6264613efa2b50524358495f6e6573745f31325f74726f756768706c6174652e3c6c6f63616c733e2e3c6c616d6264613edc000000f31e000000f88000d5385cd81421a87bc07bf003023906f100023906f4000239068000f300000000", + "closure": [ + { + "type": "cell", + "contents": 8.2 + }, + { + "type": "cell", + "contents": 71.2 + } + ] + }, + "height_volume_data": null + }, + "data": { + "thing": "well_5_0_volume_tracker", + "max_volume": 15676.104, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 55.28, + "y": 7.14, + "z": 3.55 + } + }, + { + "id": "PRCXI_nest_12_troughplate_well_A7", + "uuid": "8e4f8c2f-275c-42cf-b97b-f53b00efa518", + "name": "PRCXI_nest_12_troughplate_well_A7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6b69b4-7e1c-400f-adf9-45268c3d1a17", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 26.85, + "width": 8.2, + "height": 71.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 64.28, + "y": 7.14, + "z": 3.55 + }, + "position3d": { + "x": 64.28, + "y": 7.14, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 71.2, + "size_z": 26.85, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 15676.104, + "material_z_thickness": 0.9999999999999973, + "compute_volume_from_height": { + "type": "function", + "code": "e30100000000000000000000000500000013000000f328000000950297007401000000000000000000007c0089018902ac01a6030000ab0300000000000000005300a9024e2903da0d6c69717569645f686569676874da0b77656c6c5f6c656e677468da0a77656c6c5f7769647468a901da24636f6d707574655f766f6c756d655f66726f6d5f6865696768745f72656374616e676c65a9037203000000da0b77656c6c5f73697a655f78da0b77656c6c5f73697a655f797303000000208080fa642f55736572732f64702f736f6674776172652f4769744875622f4c6561704c61622f556e692d4c61622d4f532f756e696c61626f732f646576696365732f6c69717569645f68616e646c696e672f70726378692f70726378695f6c6162776172652e7079fa083c6c616d6264613efa2b50524358495f6e6573745f31325f74726f756768706c6174652e3c6c6f63616c733e2e3c6c616d6264613edf000000f31e000000f88000d5385cd81421a87bc07bf003023906f100023906f4000239068000f300000000", + "closure": [ + { + "type": "cell", + "contents": 8.2 + }, + { + "type": "cell", + "contents": 71.2 + } + ] + }, + "compute_height_from_volume": { + "type": "function", + "code": "e30100000000000000000000000500000013000000f328000000950297007401000000000000000000007c0089018902ac01a6030000ab0300000000000000005300a9024e2903da0d6c69717569645f766f6c756d65da0b77656c6c5f6c656e677468da0a77656c6c5f7769647468a901da24636f6d707574655f6865696768745f66726f6d5f766f6c756d655f72656374616e676c65a9037203000000da0b77656c6c5f73697a655f78da0b77656c6c5f73697a655f797303000000208080fa642f55736572732f64702f736f6674776172652f4769744875622f4c6561704c61622f556e692d4c61622d4f532f756e696c61626f732f646576696365732f6c69717569645f68616e646c696e672f70726378692f70726378695f6c6162776172652e7079fa083c6c616d6264613efa2b50524358495f6e6573745f31325f74726f756768706c6174652e3c6c6f63616c733e2e3c6c616d6264613edc000000f31e000000f88000d5385cd81421a87bc07bf003023906f100023906f4000239068000f300000000", + "closure": [ + { + "type": "cell", + "contents": 8.2 + }, + { + "type": "cell", + "contents": 71.2 + } + ] + }, + "height_volume_data": null + }, + "data": { + "thing": "well_6_0_volume_tracker", + "max_volume": 15676.104, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 64.28, + "y": 7.14, + "z": 3.55 + } + }, + { + "id": "PRCXI_nest_12_troughplate_well_A8", + "uuid": "af48b867-0b9e-4c67-a15d-890291764018", + "name": "PRCXI_nest_12_troughplate_well_A8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6b69b4-7e1c-400f-adf9-45268c3d1a17", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 26.85, + "width": 8.2, + "height": 71.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 73.28, + "y": 7.14, + "z": 3.55 + }, + "position3d": { + "x": 73.28, + "y": 7.14, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 71.2, + "size_z": 26.85, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 15676.104, + "material_z_thickness": 0.9999999999999973, + "compute_volume_from_height": { + "type": "function", + "code": "e30100000000000000000000000500000013000000f328000000950297007401000000000000000000007c0089018902ac01a6030000ab0300000000000000005300a9024e2903da0d6c69717569645f686569676874da0b77656c6c5f6c656e677468da0a77656c6c5f7769647468a901da24636f6d707574655f766f6c756d655f66726f6d5f6865696768745f72656374616e676c65a9037203000000da0b77656c6c5f73697a655f78da0b77656c6c5f73697a655f797303000000208080fa642f55736572732f64702f736f6674776172652f4769744875622f4c6561704c61622f556e692d4c61622d4f532f756e696c61626f732f646576696365732f6c69717569645f68616e646c696e672f70726378692f70726378695f6c6162776172652e7079fa083c6c616d6264613efa2b50524358495f6e6573745f31325f74726f756768706c6174652e3c6c6f63616c733e2e3c6c616d6264613edf000000f31e000000f88000d5385cd81421a87bc07bf003023906f100023906f4000239068000f300000000", + "closure": [ + { + "type": "cell", + "contents": 8.2 + }, + { + "type": "cell", + "contents": 71.2 + } + ] + }, + "compute_height_from_volume": { + "type": "function", + "code": "e30100000000000000000000000500000013000000f328000000950297007401000000000000000000007c0089018902ac01a6030000ab0300000000000000005300a9024e2903da0d6c69717569645f766f6c756d65da0b77656c6c5f6c656e677468da0a77656c6c5f7769647468a901da24636f6d707574655f6865696768745f66726f6d5f766f6c756d655f72656374616e676c65a9037203000000da0b77656c6c5f73697a655f78da0b77656c6c5f73697a655f797303000000208080fa642f55736572732f64702f736f6674776172652f4769744875622f4c6561704c61622f556e692d4c61622d4f532f756e696c61626f732f646576696365732f6c69717569645f68616e646c696e672f70726378692f70726378695f6c6162776172652e7079fa083c6c616d6264613efa2b50524358495f6e6573745f31325f74726f756768706c6174652e3c6c6f63616c733e2e3c6c616d6264613edc000000f31e000000f88000d5385cd81421a87bc07bf003023906f100023906f4000239068000f300000000", + "closure": [ + { + "type": "cell", + "contents": 8.2 + }, + { + "type": "cell", + "contents": 71.2 + } + ] + }, + "height_volume_data": null + }, + "data": { + "thing": "well_7_0_volume_tracker", + "max_volume": 15676.104, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 73.28, + "y": 7.14, + "z": 3.55 + } + }, + { + "id": "PRCXI_nest_12_troughplate_well_A9", + "uuid": "487e4723-2a30-4e79-a7c9-ba9a1569b832", + "name": "PRCXI_nest_12_troughplate_well_A9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6b69b4-7e1c-400f-adf9-45268c3d1a17", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 26.85, + "width": 8.2, + "height": 71.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 82.28, + "y": 7.14, + "z": 3.55 + }, + "position3d": { + "x": 82.28, + "y": 7.14, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 71.2, + "size_z": 26.85, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 15676.104, + "material_z_thickness": 0.9999999999999973, + "compute_volume_from_height": { + "type": "function", + "code": "e30100000000000000000000000500000013000000f328000000950297007401000000000000000000007c0089018902ac01a6030000ab0300000000000000005300a9024e2903da0d6c69717569645f686569676874da0b77656c6c5f6c656e677468da0a77656c6c5f7769647468a901da24636f6d707574655f766f6c756d655f66726f6d5f6865696768745f72656374616e676c65a9037203000000da0b77656c6c5f73697a655f78da0b77656c6c5f73697a655f797303000000208080fa642f55736572732f64702f736f6674776172652f4769744875622f4c6561704c61622f556e692d4c61622d4f532f756e696c61626f732f646576696365732f6c69717569645f68616e646c696e672f70726378692f70726378695f6c6162776172652e7079fa083c6c616d6264613efa2b50524358495f6e6573745f31325f74726f756768706c6174652e3c6c6f63616c733e2e3c6c616d6264613edf000000f31e000000f88000d5385cd81421a87bc07bf003023906f100023906f4000239068000f300000000", + "closure": [ + { + "type": "cell", + "contents": 8.2 + }, + { + "type": "cell", + "contents": 71.2 + } + ] + }, + "compute_height_from_volume": { + "type": "function", + "code": "e30100000000000000000000000500000013000000f328000000950297007401000000000000000000007c0089018902ac01a6030000ab0300000000000000005300a9024e2903da0d6c69717569645f766f6c756d65da0b77656c6c5f6c656e677468da0a77656c6c5f7769647468a901da24636f6d707574655f6865696768745f66726f6d5f766f6c756d655f72656374616e676c65a9037203000000da0b77656c6c5f73697a655f78da0b77656c6c5f73697a655f797303000000208080fa642f55736572732f64702f736f6674776172652f4769744875622f4c6561704c61622f556e692d4c61622d4f532f756e696c61626f732f646576696365732f6c69717569645f68616e646c696e672f70726378692f70726378695f6c6162776172652e7079fa083c6c616d6264613efa2b50524358495f6e6573745f31325f74726f756768706c6174652e3c6c6f63616c733e2e3c6c616d6264613edc000000f31e000000f88000d5385cd81421a87bc07bf003023906f100023906f4000239068000f300000000", + "closure": [ + { + "type": "cell", + "contents": 8.2 + }, + { + "type": "cell", + "contents": 71.2 + } + ] + }, + "height_volume_data": null + }, + "data": { + "thing": "well_8_0_volume_tracker", + "max_volume": 15676.104, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 82.28, + "y": 7.14, + "z": 3.55 + } + }, + { + "id": "PRCXI_nest_12_troughplate_well_A10", + "uuid": "3ab6a015-0b2a-4135-88b9-141092d3af52", + "name": "PRCXI_nest_12_troughplate_well_A10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6b69b4-7e1c-400f-adf9-45268c3d1a17", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 26.85, + "width": 8.2, + "height": 71.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 91.28, + "y": 7.14, + "z": 3.55 + }, + "position3d": { + "x": 91.28, + "y": 7.14, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 71.2, + "size_z": 26.85, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 15676.104, + "material_z_thickness": 0.9999999999999973, + "compute_volume_from_height": { + "type": "function", + "code": "e30100000000000000000000000500000013000000f328000000950297007401000000000000000000007c0089018902ac01a6030000ab0300000000000000005300a9024e2903da0d6c69717569645f686569676874da0b77656c6c5f6c656e677468da0a77656c6c5f7769647468a901da24636f6d707574655f766f6c756d655f66726f6d5f6865696768745f72656374616e676c65a9037203000000da0b77656c6c5f73697a655f78da0b77656c6c5f73697a655f797303000000208080fa642f55736572732f64702f736f6674776172652f4769744875622f4c6561704c61622f556e692d4c61622d4f532f756e696c61626f732f646576696365732f6c69717569645f68616e646c696e672f70726378692f70726378695f6c6162776172652e7079fa083c6c616d6264613efa2b50524358495f6e6573745f31325f74726f756768706c6174652e3c6c6f63616c733e2e3c6c616d6264613edf000000f31e000000f88000d5385cd81421a87bc07bf003023906f100023906f4000239068000f300000000", + "closure": [ + { + "type": "cell", + "contents": 8.2 + }, + { + "type": "cell", + "contents": 71.2 + } + ] + }, + "compute_height_from_volume": { + "type": "function", + "code": "e30100000000000000000000000500000013000000f328000000950297007401000000000000000000007c0089018902ac01a6030000ab0300000000000000005300a9024e2903da0d6c69717569645f766f6c756d65da0b77656c6c5f6c656e677468da0a77656c6c5f7769647468a901da24636f6d707574655f6865696768745f66726f6d5f766f6c756d655f72656374616e676c65a9037203000000da0b77656c6c5f73697a655f78da0b77656c6c5f73697a655f797303000000208080fa642f55736572732f64702f736f6674776172652f4769744875622f4c6561704c61622f556e692d4c61622d4f532f756e696c61626f732f646576696365732f6c69717569645f68616e646c696e672f70726378692f70726378695f6c6162776172652e7079fa083c6c616d6264613efa2b50524358495f6e6573745f31325f74726f756768706c6174652e3c6c6f63616c733e2e3c6c616d6264613edc000000f31e000000f88000d5385cd81421a87bc07bf003023906f100023906f4000239068000f300000000", + "closure": [ + { + "type": "cell", + "contents": 8.2 + }, + { + "type": "cell", + "contents": 71.2 + } + ] + }, + "height_volume_data": null + }, + "data": { + "thing": "well_9_0_volume_tracker", + "max_volume": 15676.104, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 91.28, + "y": 7.14, + "z": 3.55 + } + }, + { + "id": "PRCXI_nest_12_troughplate_well_A11", + "uuid": "b35111ff-a1dd-4b69-be51-f4a8b68f8cc7", + "name": "PRCXI_nest_12_troughplate_well_A11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6b69b4-7e1c-400f-adf9-45268c3d1a17", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 26.85, + "width": 8.2, + "height": 71.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 100.28, + "y": 7.14, + "z": 3.55 + }, + "position3d": { + "x": 100.28, + "y": 7.14, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 71.2, + "size_z": 26.85, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 15676.104, + "material_z_thickness": 0.9999999999999973, + "compute_volume_from_height": { + "type": "function", + "code": "e30100000000000000000000000500000013000000f328000000950297007401000000000000000000007c0089018902ac01a6030000ab0300000000000000005300a9024e2903da0d6c69717569645f686569676874da0b77656c6c5f6c656e677468da0a77656c6c5f7769647468a901da24636f6d707574655f766f6c756d655f66726f6d5f6865696768745f72656374616e676c65a9037203000000da0b77656c6c5f73697a655f78da0b77656c6c5f73697a655f797303000000208080fa642f55736572732f64702f736f6674776172652f4769744875622f4c6561704c61622f556e692d4c61622d4f532f756e696c61626f732f646576696365732f6c69717569645f68616e646c696e672f70726378692f70726378695f6c6162776172652e7079fa083c6c616d6264613efa2b50524358495f6e6573745f31325f74726f756768706c6174652e3c6c6f63616c733e2e3c6c616d6264613edf000000f31e000000f88000d5385cd81421a87bc07bf003023906f100023906f4000239068000f300000000", + "closure": [ + { + "type": "cell", + "contents": 8.2 + }, + { + "type": "cell", + "contents": 71.2 + } + ] + }, + "compute_height_from_volume": { + "type": "function", + "code": "e30100000000000000000000000500000013000000f328000000950297007401000000000000000000007c0089018902ac01a6030000ab0300000000000000005300a9024e2903da0d6c69717569645f766f6c756d65da0b77656c6c5f6c656e677468da0a77656c6c5f7769647468a901da24636f6d707574655f6865696768745f66726f6d5f766f6c756d655f72656374616e676c65a9037203000000da0b77656c6c5f73697a655f78da0b77656c6c5f73697a655f797303000000208080fa642f55736572732f64702f736f6674776172652f4769744875622f4c6561704c61622f556e692d4c61622d4f532f756e696c61626f732f646576696365732f6c69717569645f68616e646c696e672f70726378692f70726378695f6c6162776172652e7079fa083c6c616d6264613efa2b50524358495f6e6573745f31325f74726f756768706c6174652e3c6c6f63616c733e2e3c6c616d6264613edc000000f31e000000f88000d5385cd81421a87bc07bf003023906f100023906f4000239068000f300000000", + "closure": [ + { + "type": "cell", + "contents": 8.2 + }, + { + "type": "cell", + "contents": 71.2 + } + ] + }, + "height_volume_data": null + }, + "data": { + "thing": "well_10_0_volume_tracker", + "max_volume": 15676.104, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 100.28, + "y": 7.14, + "z": 3.55 + } + }, + { + "id": "PRCXI_nest_12_troughplate_well_A12", + "uuid": "566ffa39-de7b-484f-8550-deae1f09232a", + "name": "PRCXI_nest_12_troughplate_well_A12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6b69b4-7e1c-400f-adf9-45268c3d1a17", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 26.85, + "width": 8.2, + "height": 71.2 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.28, + "y": 7.14, + "z": 3.55 + }, + "position3d": { + "x": 109.28, + "y": 7.14, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 8.2, + "size_y": 71.2, + "size_z": 26.85, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 15676.104, + "material_z_thickness": 0.9999999999999973, + "compute_volume_from_height": { + "type": "function", + "code": "e30100000000000000000000000500000013000000f328000000950297007401000000000000000000007c0089018902ac01a6030000ab0300000000000000005300a9024e2903da0d6c69717569645f686569676874da0b77656c6c5f6c656e677468da0a77656c6c5f7769647468a901da24636f6d707574655f766f6c756d655f66726f6d5f6865696768745f72656374616e676c65a9037203000000da0b77656c6c5f73697a655f78da0b77656c6c5f73697a655f797303000000208080fa642f55736572732f64702f736f6674776172652f4769744875622f4c6561704c61622f556e692d4c61622d4f532f756e696c61626f732f646576696365732f6c69717569645f68616e646c696e672f70726378692f70726378695f6c6162776172652e7079fa083c6c616d6264613efa2b50524358495f6e6573745f31325f74726f756768706c6174652e3c6c6f63616c733e2e3c6c616d6264613edf000000f31e000000f88000d5385cd81421a87bc07bf003023906f100023906f4000239068000f300000000", + "closure": [ + { + "type": "cell", + "contents": 8.2 + }, + { + "type": "cell", + "contents": 71.2 + } + ] + }, + "compute_height_from_volume": { + "type": "function", + "code": "e30100000000000000000000000500000013000000f328000000950297007401000000000000000000007c0089018902ac01a6030000ab0300000000000000005300a9024e2903da0d6c69717569645f766f6c756d65da0b77656c6c5f6c656e677468da0a77656c6c5f7769647468a901da24636f6d707574655f6865696768745f66726f6d5f766f6c756d655f72656374616e676c65a9037203000000da0b77656c6c5f73697a655f78da0b77656c6c5f73697a655f797303000000208080fa642f55736572732f64702f736f6674776172652f4769744875622f4c6561704c61622f556e692d4c61622d4f532f756e696c61626f732f646576696365732f6c69717569645f68616e646c696e672f70726378692f70726378695f6c6162776172652e7079fa083c6c616d6264613efa2b50524358495f6e6573745f31325f74726f756768706c6174652e3c6c6f63616c733e2e3c6c616d6264613edc000000f31e000000f88000d5385cd81421a87bc07bf003023906f100023906f4000239068000f300000000", + "closure": [ + { + "type": "cell", + "contents": 8.2 + }, + { + "type": "cell", + "contents": 71.2 + } + ] + }, + "height_volume_data": null + }, + "data": { + "thing": "well_11_0_volume_tracker", + "max_volume": 15676.104, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.28, + "y": 7.14, + "z": 3.55 + } + } + ] + }, + { + "id": "PRCXI_nest_1_troughplate", + "category": [ + "prcxi", + "plates" + ], + "class": { + "module": "unilabos.devices.liquid_handling.prcxi.prcxi_labware:PRCXI_nest_1_troughplate", + "type": "pylabrobot" + }, + "description": "储液槽 (Code: ZX-58-10000)", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/prcxi/plates.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "PRCXI_nest_1_troughplate", + "uuid": "d468fe34-3da7-4663-8c69-f0816bace860", + "name": "PRCXI_nest_1_troughplate", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "plate", + "class": "", + "pose": { + "size": { + "depth": 31.4, + "width": 127.76, + "height": 85.48 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "PRCXI9300Plate", + "size_x": 127.76, + "size_y": 85.48, + "size_z": 31.4, + "category": "plate", + "model": "PRCXI_Nest_1_troughplate", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "PRCXI_nest_1_troughplate_well_A1" + } + }, + "data": { + "Material": { + "uuid": "04211a2dc93547fe9bf6121eac533650", + "Code": "ZX-58-10000", + "Name": "储液槽", + "materialEnum": 0, + "SupplyType": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_nest_1_troughplate_well_A1", + "uuid": "fa486961-32ef-4ea7-a36e-e5a9ab9409c8", + "name": "PRCXI_nest_1_troughplate_well_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "d468fe34-3da7-4663-8c69-f0816bace860", + "type": "well", + "class": "", + "pose": { + "size": { + "depth": 26.85, + "width": 108.0, + "height": 72.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 9.88, + "y": 6.74, + "z": 3.55 + }, + "position3d": { + "x": 9.88, + "y": 6.74, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Well", + "size_x": 108.0, + "size_y": 72.0, + "size_z": 26.85, + "category": "well", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 208785.6, + "material_z_thickness": 0.9999999999999973, + "compute_volume_from_height": { + "type": "function", + "code": "e30100000000000000000000000500000013000000f328000000950297007401000000000000000000007c0089018902ac01a6030000ab0300000000000000005300a9024e2903da0d6c69717569645f686569676874da0b77656c6c5f6c656e677468da0a77656c6c5f7769647468a901da24636f6d707574655f766f6c756d655f66726f6d5f6865696768745f72656374616e676c65a9037203000000da0b77656c6c5f73697a655f78da0b77656c6c5f73697a655f797303000000208080fa642f55736572732f64702f736f6674776172652f4769744875622f4c6561704c61622f556e692d4c61622d4f532f756e696c61626f732f646576696365732f6c69717569645f68616e646c696e672f70726378692f70726378695f6c6162776172652e7079fa083c6c616d6264613efa2a50524358495f6e6573745f315f74726f756768706c6174652e3c6c6f63616c733e2e3c6c616d6264613e52000000f31e000000f88000d53c60d81a27b05bc85bf003023d0af100023d0af400023d0a8000f300000000", + "closure": [ + { + "type": "cell", + "contents": 108.0 + }, + { + "type": "cell", + "contents": 72.0 + } + ] + }, + "compute_height_from_volume": { + "type": "function", + "code": "e30100000000000000000000000500000013000000f328000000950297007401000000000000000000007c0089018902ac01a6030000ab0300000000000000005300a9024e2903da0d6c69717569645f766f6c756d65da0b77656c6c5f6c656e677468da0a77656c6c5f7769647468a901da24636f6d707574655f6865696768745f66726f6d5f766f6c756d655f72656374616e676c65a9037203000000da0b77656c6c5f73697a655f78da0b77656c6c5f73697a655f797303000000208080fa642f55736572732f64702f736f6674776172652f4769744875622f4c6561704c61622f556e692d4c61622d4f532f756e696c61626f732f646576696365732f6c69717569645f68616e646c696e672f70726378692f70726378695f6c6162776172652e7079fa083c6c616d6264613efa2a50524358495f6e6573745f315f74726f756768706c6174652e3c6c6f63616c733e2e3c6c616d6264613e4f000000f31e000000f88000d53c60d81a27b05bc85bf003023d0af100023d0af400023d0a8000f300000000", + "closure": [ + { + "type": "cell", + "contents": 108.0 + }, + { + "type": "cell", + "contents": 72.0 + } + ] + }, + "height_volume_data": null + }, + "data": { + "thing": "well_0_0_volume_tracker", + "max_volume": 208785.6, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 9.88, + "y": 6.74, + "z": 3.55 + } + } + ] + }, + { + "id": "PRCXI_EP_Adapter", + "category": [ + "prcxi", + "tube_racks" + ], + "class": { + "module": "unilabos.devices.liquid_handling.prcxi.prcxi_labware:PRCXI_EP_Adapter", + "type": "pylabrobot" + }, + "description": "ep适配器 (Code: 1)", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/prcxi/tube_racks.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "PRCXI_EP_Adapter", + "uuid": "6ac60316-7864-481e-b1bb-c6392fea5fb9", + "name": "PRCXI_EP_Adapter", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "", + "class": "", + "pose": { + "size": { + "depth": 42.66, + "width": 128.04, + "height": 85.8 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "PRCXI9300TubeRack", + "size_x": 128.04, + "size_y": 85.8, + "size_z": 42.66, + "category": null, + "model": "PRCXI_EP_Adapter", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "PRCXI_EP_Adapter_tube_A1", + "B1": "PRCXI_EP_Adapter_tube_B1", + "C1": "PRCXI_EP_Adapter_tube_C1", + "D1": "PRCXI_EP_Adapter_tube_D1", + "A2": "PRCXI_EP_Adapter_tube_A2", + "B2": "PRCXI_EP_Adapter_tube_B2", + "C2": "PRCXI_EP_Adapter_tube_C2", + "D2": "PRCXI_EP_Adapter_tube_D2", + "A3": "PRCXI_EP_Adapter_tube_A3", + "B3": "PRCXI_EP_Adapter_tube_B3", + "C3": "PRCXI_EP_Adapter_tube_C3", + "D3": "PRCXI_EP_Adapter_tube_D3", + "A4": "PRCXI_EP_Adapter_tube_A4", + "B4": "PRCXI_EP_Adapter_tube_B4", + "C4": "PRCXI_EP_Adapter_tube_C4", + "D4": "PRCXI_EP_Adapter_tube_D4", + "A5": "PRCXI_EP_Adapter_tube_A5", + "B5": "PRCXI_EP_Adapter_tube_B5", + "C5": "PRCXI_EP_Adapter_tube_C5", + "D5": "PRCXI_EP_Adapter_tube_D5", + "A6": "PRCXI_EP_Adapter_tube_A6", + "B6": "PRCXI_EP_Adapter_tube_B6", + "C6": "PRCXI_EP_Adapter_tube_C6", + "D6": "PRCXI_EP_Adapter_tube_D6" + } + }, + "data": { + "Material": { + "uuid": "e146697c395e4eabb3d6b74f0dd6aaf7", + "Code": "1", + "Name": "ep适配器", + "materialEnum": 0, + "SupplyType": 1 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "PRCXI_EP_Adapter_tube_A1", + "uuid": "b89d31d0-8ea1-4d35-ac7e-27fca03cbe99", + "name": "PRCXI_EP_Adapter_tube_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6ac60316-7864-481e-b1bb-c6392fea5fb9", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 10.6, + "height": 10.6 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 3.54, + "y": 64.7, + "z": 4.58 + }, + "position3d": { + "x": 3.54, + "y": 64.7, + "z": 4.58 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 10.6, + "size_y": 10.6, + "size_z": 40.0, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "tube_0_0_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 3.54, + "y": 64.7, + "z": 4.58 + } + }, + { + "id": "PRCXI_EP_Adapter_tube_B1", + "uuid": "1ad49a3a-2290-4b7b-8ef0-80e315c62450", + "name": "PRCXI_EP_Adapter_tube_B1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6ac60316-7864-481e-b1bb-c6392fea5fb9", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 10.6, + "height": 10.6 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 3.54, + "y": 46.7, + "z": 4.58 + }, + "position3d": { + "x": 3.54, + "y": 46.7, + "z": 4.58 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 10.6, + "size_y": 10.6, + "size_z": 40.0, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "tube_0_1_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 3.54, + "y": 46.7, + "z": 4.58 + } + }, + { + "id": "PRCXI_EP_Adapter_tube_C1", + "uuid": "9b028cf0-3f1b-4d9d-8a1f-ebc2e82833ff", + "name": "PRCXI_EP_Adapter_tube_C1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6ac60316-7864-481e-b1bb-c6392fea5fb9", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 10.6, + "height": 10.6 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 3.54, + "y": 28.7, + "z": 4.58 + }, + "position3d": { + "x": 3.54, + "y": 28.7, + "z": 4.58 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 10.6, + "size_y": 10.6, + "size_z": 40.0, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "tube_0_2_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 3.54, + "y": 28.7, + "z": 4.58 + } + }, + { + "id": "PRCXI_EP_Adapter_tube_D1", + "uuid": "a18b637d-ff95-49ba-b7b0-45ff0834ec3f", + "name": "PRCXI_EP_Adapter_tube_D1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6ac60316-7864-481e-b1bb-c6392fea5fb9", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 10.6, + "height": 10.6 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 3.54, + "y": 10.7, + "z": 4.58 + }, + "position3d": { + "x": 3.54, + "y": 10.7, + "z": 4.58 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 10.6, + "size_y": 10.6, + "size_z": 40.0, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "tube_0_3_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 3.54, + "y": 10.7, + "z": 4.58 + } + }, + { + "id": "PRCXI_EP_Adapter_tube_A2", + "uuid": "e956aece-86e9-4e5b-8c58-3a1d630824ac", + "name": "PRCXI_EP_Adapter_tube_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6ac60316-7864-481e-b1bb-c6392fea5fb9", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 10.6, + "height": 10.6 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 24.54, + "y": 64.7, + "z": 4.58 + }, + "position3d": { + "x": 24.54, + "y": 64.7, + "z": 4.58 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 10.6, + "size_y": 10.6, + "size_z": 40.0, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "tube_1_0_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 24.54, + "y": 64.7, + "z": 4.58 + } + }, + { + "id": "PRCXI_EP_Adapter_tube_B2", + "uuid": "4b0cf1e9-9ca2-4fe3-a81f-10e9bc8d13bc", + "name": "PRCXI_EP_Adapter_tube_B2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6ac60316-7864-481e-b1bb-c6392fea5fb9", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 10.6, + "height": 10.6 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 24.54, + "y": 46.7, + "z": 4.58 + }, + "position3d": { + "x": 24.54, + "y": 46.7, + "z": 4.58 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 10.6, + "size_y": 10.6, + "size_z": 40.0, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "tube_1_1_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 24.54, + "y": 46.7, + "z": 4.58 + } + }, + { + "id": "PRCXI_EP_Adapter_tube_C2", + "uuid": "324b4111-ebbc-4e2d-9b10-c6e03259a732", + "name": "PRCXI_EP_Adapter_tube_C2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6ac60316-7864-481e-b1bb-c6392fea5fb9", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 10.6, + "height": 10.6 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 24.54, + "y": 28.7, + "z": 4.58 + }, + "position3d": { + "x": 24.54, + "y": 28.7, + "z": 4.58 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 10.6, + "size_y": 10.6, + "size_z": 40.0, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "tube_1_2_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 24.54, + "y": 28.7, + "z": 4.58 + } + }, + { + "id": "PRCXI_EP_Adapter_tube_D2", + "uuid": "57ab6da6-2a4d-4207-a7b5-5f8efd354075", + "name": "PRCXI_EP_Adapter_tube_D2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6ac60316-7864-481e-b1bb-c6392fea5fb9", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 10.6, + "height": 10.6 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 24.54, + "y": 10.7, + "z": 4.58 + }, + "position3d": { + "x": 24.54, + "y": 10.7, + "z": 4.58 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 10.6, + "size_y": 10.6, + "size_z": 40.0, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "tube_1_3_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 24.54, + "y": 10.7, + "z": 4.58 + } + }, + { + "id": "PRCXI_EP_Adapter_tube_A3", + "uuid": "a98b98fa-63d2-4d00-ace8-04260314dbf0", + "name": "PRCXI_EP_Adapter_tube_A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6ac60316-7864-481e-b1bb-c6392fea5fb9", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 10.6, + "height": 10.6 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 45.54, + "y": 64.7, + "z": 4.58 + }, + "position3d": { + "x": 45.54, + "y": 64.7, + "z": 4.58 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 10.6, + "size_y": 10.6, + "size_z": 40.0, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "tube_2_0_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 45.54, + "y": 64.7, + "z": 4.58 + } + }, + { + "id": "PRCXI_EP_Adapter_tube_B3", + "uuid": "0e7a967c-4d84-4ddc-ae4e-82b44593d9b6", + "name": "PRCXI_EP_Adapter_tube_B3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6ac60316-7864-481e-b1bb-c6392fea5fb9", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 10.6, + "height": 10.6 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 45.54, + "y": 46.7, + "z": 4.58 + }, + "position3d": { + "x": 45.54, + "y": 46.7, + "z": 4.58 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 10.6, + "size_y": 10.6, + "size_z": 40.0, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "tube_2_1_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 45.54, + "y": 46.7, + "z": 4.58 + } + }, + { + "id": "PRCXI_EP_Adapter_tube_C3", + "uuid": "3fcacabc-e476-44e2-94fc-da5633863b19", + "name": "PRCXI_EP_Adapter_tube_C3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6ac60316-7864-481e-b1bb-c6392fea5fb9", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 10.6, + "height": 10.6 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 45.54, + "y": 28.7, + "z": 4.58 + }, + "position3d": { + "x": 45.54, + "y": 28.7, + "z": 4.58 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 10.6, + "size_y": 10.6, + "size_z": 40.0, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "tube_2_2_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 45.54, + "y": 28.7, + "z": 4.58 + } + }, + { + "id": "PRCXI_EP_Adapter_tube_D3", + "uuid": "2e874e52-1a66-424a-baf1-ca485c017fce", + "name": "PRCXI_EP_Adapter_tube_D3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6ac60316-7864-481e-b1bb-c6392fea5fb9", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 10.6, + "height": 10.6 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 45.54, + "y": 10.7, + "z": 4.58 + }, + "position3d": { + "x": 45.54, + "y": 10.7, + "z": 4.58 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 10.6, + "size_y": 10.6, + "size_z": 40.0, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "tube_2_3_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 45.54, + "y": 10.7, + "z": 4.58 + } + }, + { + "id": "PRCXI_EP_Adapter_tube_A4", + "uuid": "d8c02b9e-1f94-49e1-a774-7e4978d36ad2", + "name": "PRCXI_EP_Adapter_tube_A4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6ac60316-7864-481e-b1bb-c6392fea5fb9", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 10.6, + "height": 10.6 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 66.54, + "y": 64.7, + "z": 4.58 + }, + "position3d": { + "x": 66.54, + "y": 64.7, + "z": 4.58 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 10.6, + "size_y": 10.6, + "size_z": 40.0, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "tube_3_0_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 66.54, + "y": 64.7, + "z": 4.58 + } + }, + { + "id": "PRCXI_EP_Adapter_tube_B4", + "uuid": "e65e1574-9c22-4ba2-8f2b-c76dc6e04654", + "name": "PRCXI_EP_Adapter_tube_B4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6ac60316-7864-481e-b1bb-c6392fea5fb9", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 10.6, + "height": 10.6 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 66.54, + "y": 46.7, + "z": 4.58 + }, + "position3d": { + "x": 66.54, + "y": 46.7, + "z": 4.58 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 10.6, + "size_y": 10.6, + "size_z": 40.0, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "tube_3_1_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 66.54, + "y": 46.7, + "z": 4.58 + } + }, + { + "id": "PRCXI_EP_Adapter_tube_C4", + "uuid": "1bf39e38-b3c6-4d50-aea8-46e9bbdb3895", + "name": "PRCXI_EP_Adapter_tube_C4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6ac60316-7864-481e-b1bb-c6392fea5fb9", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 10.6, + "height": 10.6 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 66.54, + "y": 28.7, + "z": 4.58 + }, + "position3d": { + "x": 66.54, + "y": 28.7, + "z": 4.58 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 10.6, + "size_y": 10.6, + "size_z": 40.0, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "tube_3_2_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 66.54, + "y": 28.7, + "z": 4.58 + } + }, + { + "id": "PRCXI_EP_Adapter_tube_D4", + "uuid": "5b1ea842-ba1c-40ff-984e-cc0a95ffe2fe", + "name": "PRCXI_EP_Adapter_tube_D4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6ac60316-7864-481e-b1bb-c6392fea5fb9", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 10.6, + "height": 10.6 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 66.54, + "y": 10.7, + "z": 4.58 + }, + "position3d": { + "x": 66.54, + "y": 10.7, + "z": 4.58 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 10.6, + "size_y": 10.6, + "size_z": 40.0, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "tube_3_3_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 66.54, + "y": 10.7, + "z": 4.58 + } + }, + { + "id": "PRCXI_EP_Adapter_tube_A5", + "uuid": "734ee8a6-2ee0-41bd-8bab-e16d14ca827e", + "name": "PRCXI_EP_Adapter_tube_A5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6ac60316-7864-481e-b1bb-c6392fea5fb9", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 10.6, + "height": 10.6 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 87.54, + "y": 64.7, + "z": 4.58 + }, + "position3d": { + "x": 87.54, + "y": 64.7, + "z": 4.58 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 10.6, + "size_y": 10.6, + "size_z": 40.0, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "tube_4_0_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 87.54, + "y": 64.7, + "z": 4.58 + } + }, + { + "id": "PRCXI_EP_Adapter_tube_B5", + "uuid": "661ee37b-c9a9-4777-8797-d836810c71f0", + "name": "PRCXI_EP_Adapter_tube_B5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6ac60316-7864-481e-b1bb-c6392fea5fb9", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 10.6, + "height": 10.6 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 87.54, + "y": 46.7, + "z": 4.58 + }, + "position3d": { + "x": 87.54, + "y": 46.7, + "z": 4.58 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 10.6, + "size_y": 10.6, + "size_z": 40.0, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "tube_4_1_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 87.54, + "y": 46.7, + "z": 4.58 + } + }, + { + "id": "PRCXI_EP_Adapter_tube_C5", + "uuid": "d74aa13a-f420-4b81-9cb3-d875ea4a116c", + "name": "PRCXI_EP_Adapter_tube_C5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6ac60316-7864-481e-b1bb-c6392fea5fb9", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 10.6, + "height": 10.6 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 87.54, + "y": 28.7, + "z": 4.58 + }, + "position3d": { + "x": 87.54, + "y": 28.7, + "z": 4.58 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 10.6, + "size_y": 10.6, + "size_z": 40.0, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "tube_4_2_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 87.54, + "y": 28.7, + "z": 4.58 + } + }, + { + "id": "PRCXI_EP_Adapter_tube_D5", + "uuid": "572f2339-7b9c-4ff9-9742-ddbcb1f9da67", + "name": "PRCXI_EP_Adapter_tube_D5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6ac60316-7864-481e-b1bb-c6392fea5fb9", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 10.6, + "height": 10.6 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 87.54, + "y": 10.7, + "z": 4.58 + }, + "position3d": { + "x": 87.54, + "y": 10.7, + "z": 4.58 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 10.6, + "size_y": 10.6, + "size_z": 40.0, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "tube_4_3_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 87.54, + "y": 10.7, + "z": 4.58 + } + }, + { + "id": "PRCXI_EP_Adapter_tube_A6", + "uuid": "65cb9170-bebb-4829-8255-a9d7cbf3222d", + "name": "PRCXI_EP_Adapter_tube_A6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6ac60316-7864-481e-b1bb-c6392fea5fb9", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 10.6, + "height": 10.6 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 108.54, + "y": 64.7, + "z": 4.58 + }, + "position3d": { + "x": 108.54, + "y": 64.7, + "z": 4.58 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 10.6, + "size_y": 10.6, + "size_z": 40.0, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "tube_5_0_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 108.54, + "y": 64.7, + "z": 4.58 + } + }, + { + "id": "PRCXI_EP_Adapter_tube_B6", + "uuid": "50dfd74a-1cd6-4049-a5b1-672d1267fceb", + "name": "PRCXI_EP_Adapter_tube_B6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6ac60316-7864-481e-b1bb-c6392fea5fb9", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 10.6, + "height": 10.6 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 108.54, + "y": 46.7, + "z": 4.58 + }, + "position3d": { + "x": 108.54, + "y": 46.7, + "z": 4.58 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 10.6, + "size_y": 10.6, + "size_z": 40.0, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "tube_5_1_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 108.54, + "y": 46.7, + "z": 4.58 + } + }, + { + "id": "PRCXI_EP_Adapter_tube_C6", + "uuid": "d9b06c2c-c406-43a2-9b12-cd8aae38b406", + "name": "PRCXI_EP_Adapter_tube_C6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6ac60316-7864-481e-b1bb-c6392fea5fb9", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 10.6, + "height": 10.6 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 108.54, + "y": 28.7, + "z": 4.58 + }, + "position3d": { + "x": 108.54, + "y": 28.7, + "z": 4.58 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 10.6, + "size_y": 10.6, + "size_z": 40.0, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "tube_5_2_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 108.54, + "y": 28.7, + "z": 4.58 + } + }, + { + "id": "PRCXI_EP_Adapter_tube_D6", + "uuid": "4f429de5-1fd2-4217-9be7-42b972f4c44f", + "name": "PRCXI_EP_Adapter_tube_D6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6ac60316-7864-481e-b1bb-c6392fea5fb9", + "type": "tube", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 10.6, + "height": 10.6 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 108.54, + "y": 10.7, + "z": 4.58 + }, + "position3d": { + "x": 108.54, + "y": 10.7, + "z": 4.58 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Tube", + "size_x": 10.6, + "size_y": 10.6, + "size_z": 40.0, + "category": "tube", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1500, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "tube_5_3_volume_tracker", + "max_volume": 1500, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 108.54, + "y": 10.7, + "z": 4.58 + } + } + ] + }, + { + "id": "BIOYOND_PolymerStation_1BottleCarrier", + "category": [ + "bottle_carriers" + ], + "class": { + "module": "unilabos.resources.bioyond.bottle_carriers:BIOYOND_PolymerStation_1BottleCarrier", + "type": "pylabrobot" + }, + "description": "BIOYOND_PolymerStation_1BottleCarrier", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/bioyond/bottle_carriers.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "BIOYOND_PolymerStation_1BottleCarrier", + "uuid": "e08e46d0-78f1-4e6c-b8ea-d1ab1ee13783", + "name": "BIOYOND_PolymerStation_1BottleCarrier", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "bottle_carrier", + "class": "", + "pose": { + "size": { + "depth": 20.0, + "width": 127.8, + "height": 85.5 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "BottleCarrier", + "size_x": 127.8, + "size_y": 85.5, + "size_z": 20.0, + "category": "bottle_carrier", + "model": "BIOYOND_PolymerStation_1BottleCarrier", + "barcode": null, + "preferred_pickup_location": null, + "num_items_x": 1, + "num_items_y": 1, + "num_items_z": 1, + "layout": "x-y", + "sites": [ + { + "label": "0", + "visible": true, + "occupied_by": "BIOYOND_PolymerStation_1BottleCarrier_flask_1", + "position": { + "x": 33.9, + "y": 12.75, + "z": 5.0 + }, + "size": { + "width": 60.0, + "height": 60.0, + "depth": 0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + } + ] + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "BIOYOND_PolymerStation_1BottleCarrier_flask_1", + "uuid": "55d25b92-2a53-4fd9-90d7-e013f819e4c0", + "name": "BIOYOND_PolymerStation_1BottleCarrier_flask_1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e08e46d0-78f1-4e6c-b8ea-d1ab1ee13783", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 120.0, + "width": 70.0, + "height": 70.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 33.9, + "y": 12.75, + "z": 5.0 + }, + "position3d": { + "x": 33.9, + "y": 12.75, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 70.0, + "size_y": 70.0, + "size_z": 120.0, + "category": "container", + "model": "BIOYOND_PolymerStation_Reagent_Bottle", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 500000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 70.0, + "height": 120.0 + }, + "data": { + "thing": "BIOYOND_PolymerStation_1BottleCarrier_flask_1_volume_tracker", + "max_volume": 500000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 33.9, + "y": 12.75, + "z": 5.0 + } + } + ] + }, + { + "id": "BIOYOND_PolymerStation_1FlaskCarrier", + "category": [ + "bottle_carriers" + ], + "class": { + "module": "unilabos.resources.bioyond.bottle_carriers:BIOYOND_PolymerStation_1FlaskCarrier", + "type": "pylabrobot" + }, + "description": "BIOYOND_PolymerStation_1FlaskCarrier", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/bioyond/bottle_carriers.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "BIOYOND_PolymerStation_1FlaskCarrier", + "uuid": "a772be5c-fcc2-430d-964f-ddbb16bf7602", + "name": "BIOYOND_PolymerStation_1FlaskCarrier", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "bottle_carrier", + "class": "", + "pose": { + "size": { + "depth": 20.0, + "width": 127.8, + "height": 85.5 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "BottleCarrier", + "size_x": 127.8, + "size_y": 85.5, + "size_z": 20.0, + "category": "bottle_carrier", + "model": "BIOYOND_PolymerStation_1FlaskCarrier", + "barcode": null, + "preferred_pickup_location": null, + "num_items_x": 1, + "num_items_y": 1, + "num_items_z": 1, + "layout": "x-y", + "sites": [ + { + "label": "0", + "visible": true, + "occupied_by": "BIOYOND_PolymerStation_1FlaskCarrier_flask_1", + "position": { + "x": 33.9, + "y": 12.75, + "z": 5.0 + }, + "size": { + "width": 60.0, + "height": 60.0, + "depth": 0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + } + ] + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "BIOYOND_PolymerStation_1FlaskCarrier_flask_1", + "uuid": "9d3151d5-39ad-4415-94a6-7c86367f2b21", + "name": "BIOYOND_PolymerStation_1FlaskCarrier_flask_1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "a772be5c-fcc2-430d-964f-ddbb16bf7602", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 70.0, + "width": 60.0, + "height": 60.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 33.9, + "y": 12.75, + "z": 5.0 + }, + "position3d": { + "x": 33.9, + "y": 12.75, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 60.0, + "size_y": 60.0, + "size_z": 70.0, + "category": "container", + "model": "BIOYOND_PolymerStation_Flask", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 60.0, + "height": 70.0 + }, + "data": { + "thing": "BIOYOND_PolymerStation_1FlaskCarrier_flask_1_volume_tracker", + "max_volume": 200000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 33.9, + "y": 12.75, + "z": 5.0 + } + } + ] + }, + { + "id": "BIOYOND_PolymerStation_6StockCarrier", + "category": [ + "bottle_carriers" + ], + "class": { + "module": "unilabos.resources.bioyond.bottle_carriers:BIOYOND_PolymerStation_6StockCarrier", + "type": "pylabrobot" + }, + "description": "BIOYOND_PolymerStation_6StockCarrier", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/bioyond/bottle_carriers.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "BIOYOND_PolymerStation_6StockCarrier", + "uuid": "1f99bde6-51ea-4aa1-8e15-8a48dd3d2ffe", + "name": "BIOYOND_PolymerStation_6StockCarrier", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "bottle_carrier", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 127.8, + "height": 85.5 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "BottleCarrier", + "size_x": 127.8, + "size_y": 85.5, + "size_z": 50.0, + "category": "bottle_carrier", + "model": "BIOYOND_PolymerStation_6StockCarrier", + "barcode": null, + "preferred_pickup_location": null, + "num_items_x": 3, + "num_items_y": 2, + "num_items_z": 1, + "layout": "x-y", + "sites": [ + { + "label": "A1", + "visible": true, + "occupied_by": "A1", + "position": { + "x": 11.9, + "y": 50.25, + "z": 5.0 + }, + "size": { + "width": 20.0, + "height": 20.0, + "depth": 50.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "B1", + "visible": true, + "occupied_by": "B1", + "position": { + "x": 11.9, + "y": 15.25, + "z": 5.0 + }, + "size": { + "width": 20.0, + "height": 20.0, + "depth": 50.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "A2", + "visible": true, + "occupied_by": "A2", + "position": { + "x": 53.9, + "y": 50.25, + "z": 5.0 + }, + "size": { + "width": 20.0, + "height": 20.0, + "depth": 50.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "B2", + "visible": true, + "occupied_by": "B2", + "position": { + "x": 53.9, + "y": 15.25, + "z": 5.0 + }, + "size": { + "width": 20.0, + "height": 20.0, + "depth": 50.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "A3", + "visible": true, + "occupied_by": "A3", + "position": { + "x": 95.9, + "y": 50.25, + "z": 5.0 + }, + "size": { + "width": 20.0, + "height": 20.0, + "depth": 50.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "B3", + "visible": true, + "occupied_by": "B3", + "position": { + "x": 95.9, + "y": 15.25, + "z": 5.0 + }, + "size": { + "width": 20.0, + "height": 20.0, + "depth": 50.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + } + ] + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "A1", + "uuid": "fb90e55a-fba6-4f42-9d6c-f450314b0c53", + "name": "A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1f99bde6-51ea-4aa1-8e15-8a48dd3d2ffe", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 60.0, + "width": 25.0, + "height": 25.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.9, + "y": 50.25, + "z": 5.0 + }, + "position3d": { + "x": 11.9, + "y": 50.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 25.0, + "size_y": 25.0, + "size_z": 60.0, + "category": "container", + "model": "BIOYOND_PolymerStation_Liquid_Vial", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 30000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 25.0, + "height": 60.0 + }, + "data": { + "thing": "A1_volume_tracker", + "max_volume": 30000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.9, + "y": 50.25, + "z": 5.0 + } + }, + { + "id": "B1", + "uuid": "d89f9ae9-ee24-41b8-b753-ced47d16c91f", + "name": "B1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1f99bde6-51ea-4aa1-8e15-8a48dd3d2ffe", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 60.0, + "width": 25.0, + "height": 25.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 11.9, + "y": 15.25, + "z": 5.0 + }, + "position3d": { + "x": 11.9, + "y": 15.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 25.0, + "size_y": 25.0, + "size_z": 60.0, + "category": "container", + "model": "BIOYOND_PolymerStation_Solid_Vial", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 30000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 25.0, + "height": 60.0 + }, + "data": { + "thing": "B1_volume_tracker", + "max_volume": 30000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 11.9, + "y": 15.25, + "z": 5.0 + } + }, + { + "id": "A2", + "uuid": "606bc0bd-a08c-48f8-93ea-c227876e8769", + "name": "A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1f99bde6-51ea-4aa1-8e15-8a48dd3d2ffe", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 60.0, + "width": 25.0, + "height": 25.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 53.9, + "y": 50.25, + "z": 5.0 + }, + "position3d": { + "x": 53.9, + "y": 50.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 25.0, + "size_y": 25.0, + "size_z": 60.0, + "category": "container", + "model": "BIOYOND_PolymerStation_Liquid_Vial", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 30000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 25.0, + "height": 60.0 + }, + "data": { + "thing": "A2_volume_tracker", + "max_volume": 30000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 53.9, + "y": 50.25, + "z": 5.0 + } + }, + { + "id": "B2", + "uuid": "0d461643-828d-4a80-b5b2-b6502fd1fec9", + "name": "B2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1f99bde6-51ea-4aa1-8e15-8a48dd3d2ffe", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 60.0, + "width": 25.0, + "height": 25.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 53.9, + "y": 15.25, + "z": 5.0 + }, + "position3d": { + "x": 53.9, + "y": 15.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 25.0, + "size_y": 25.0, + "size_z": 60.0, + "category": "container", + "model": "BIOYOND_PolymerStation_Solid_Vial", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 30000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 25.0, + "height": 60.0 + }, + "data": { + "thing": "B2_volume_tracker", + "max_volume": 30000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 53.9, + "y": 15.25, + "z": 5.0 + } + }, + { + "id": "A3", + "uuid": "c9176848-9f23-40f4-8272-7c771fa3d61a", + "name": "A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1f99bde6-51ea-4aa1-8e15-8a48dd3d2ffe", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 60.0, + "width": 25.0, + "height": 25.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 95.9, + "y": 50.25, + "z": 5.0 + }, + "position3d": { + "x": 95.9, + "y": 50.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 25.0, + "size_y": 25.0, + "size_z": 60.0, + "category": "container", + "model": "BIOYOND_PolymerStation_Liquid_Vial", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 30000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 25.0, + "height": 60.0 + }, + "data": { + "thing": "A3_volume_tracker", + "max_volume": 30000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 95.9, + "y": 50.25, + "z": 5.0 + } + }, + { + "id": "B3", + "uuid": "3c57c67a-ad9d-40a6-a83b-6e9470c0cf08", + "name": "B3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "1f99bde6-51ea-4aa1-8e15-8a48dd3d2ffe", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 60.0, + "width": 25.0, + "height": 25.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 95.9, + "y": 15.25, + "z": 5.0 + }, + "position3d": { + "x": 95.9, + "y": 15.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 25.0, + "size_y": 25.0, + "size_z": 60.0, + "category": "container", + "model": "BIOYOND_PolymerStation_Solid_Vial", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 30000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 25.0, + "height": 60.0 + }, + "data": { + "thing": "B3_volume_tracker", + "max_volume": 30000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 95.9, + "y": 15.25, + "z": 5.0 + } + } + ] + }, + { + "id": "BIOYOND_PolymerStation_8StockCarrier", + "category": [ + "bottle_carriers" + ], + "class": { + "module": "unilabos.resources.bioyond.bottle_carriers:BIOYOND_PolymerStation_8StockCarrier", + "type": "pylabrobot" + }, + "description": "BIOYOND_PolymerStation_8StockCarrier (2x4布局,8个位置)", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/bioyond/bottle_carriers.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "BIOYOND_PolymerStation_8StockCarrier", + "uuid": "2fb6c40e-202c-4936-aab2-df7bd67ea948", + "name": "BIOYOND_PolymerStation_8StockCarrier", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "bottle_carrier", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 128.0, + "height": 85.5 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "BottleCarrier", + "size_x": 128.0, + "size_y": 85.5, + "size_z": 50.0, + "category": "bottle_carrier", + "model": "BIOYOND_PolymerStation_8StockCarrier", + "barcode": null, + "preferred_pickup_location": null, + "num_items_x": 4, + "num_items_y": 2, + "num_items_z": 1, + "layout": "x-y", + "sites": [ + { + "label": "A1", + "visible": true, + "occupied_by": "BIOYOND_PolymerStation_8StockCarrier_vial_A1", + "position": { + "x": 9.0, + "y": 50.25, + "z": 5.0 + }, + "size": { + "width": 20.0, + "height": 20.0, + "depth": 50.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "B1", + "visible": true, + "occupied_by": "BIOYOND_PolymerStation_8StockCarrier_vial_B1", + "position": { + "x": 9.0, + "y": 15.25, + "z": 5.0 + }, + "size": { + "width": 20.0, + "height": 20.0, + "depth": 50.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "A2", + "visible": true, + "occupied_by": "BIOYOND_PolymerStation_8StockCarrier_vial_A2", + "position": { + "x": 39.0, + "y": 50.25, + "z": 5.0 + }, + "size": { + "width": 20.0, + "height": 20.0, + "depth": 50.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "B2", + "visible": true, + "occupied_by": "BIOYOND_PolymerStation_8StockCarrier_vial_B2", + "position": { + "x": 39.0, + "y": 15.25, + "z": 5.0 + }, + "size": { + "width": 20.0, + "height": 20.0, + "depth": 50.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "A3", + "visible": true, + "occupied_by": "BIOYOND_PolymerStation_8StockCarrier_vial_A3", + "position": { + "x": 69.0, + "y": 50.25, + "z": 5.0 + }, + "size": { + "width": 20.0, + "height": 20.0, + "depth": 50.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "B3", + "visible": true, + "occupied_by": "BIOYOND_PolymerStation_8StockCarrier_vial_B3", + "position": { + "x": 69.0, + "y": 15.25, + "z": 5.0 + }, + "size": { + "width": 20.0, + "height": 20.0, + "depth": 50.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "A4", + "visible": true, + "occupied_by": "BIOYOND_PolymerStation_8StockCarrier_vial_A4", + "position": { + "x": 99.0, + "y": 50.25, + "z": 5.0 + }, + "size": { + "width": 20.0, + "height": 20.0, + "depth": 50.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "B4", + "visible": true, + "occupied_by": "BIOYOND_PolymerStation_8StockCarrier_vial_B4", + "position": { + "x": 99.0, + "y": 15.25, + "z": 5.0 + }, + "size": { + "width": 20.0, + "height": 20.0, + "depth": 50.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + } + ] + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "BIOYOND_PolymerStation_8StockCarrier_vial_A1", + "uuid": "136991fe-3420-4b6d-bc09-0e8160d000b4", + "name": "BIOYOND_PolymerStation_8StockCarrier_vial_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2fb6c40e-202c-4936-aab2-df7bd67ea948", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 100.0, + "width": 20.0, + "height": 20.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 9.0, + "y": 50.25, + "z": 5.0 + }, + "position3d": { + "x": 9.0, + "y": 50.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 20.0, + "size_y": 20.0, + "size_z": 100.0, + "category": "container", + "model": "BIOYOND_PolymerStation_Solid_Stock", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 30000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 20.0, + "height": 100.0 + }, + "data": { + "thing": "BIOYOND_PolymerStation_8StockCarrier_vial_A1_volume_tracker", + "max_volume": 30000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 9.0, + "y": 50.25, + "z": 5.0 + } + }, + { + "id": "BIOYOND_PolymerStation_8StockCarrier_vial_B1", + "uuid": "79e18277-b243-4828-bbe9-ea9f714b7c74", + "name": "BIOYOND_PolymerStation_8StockCarrier_vial_B1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2fb6c40e-202c-4936-aab2-df7bd67ea948", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 100.0, + "width": 20.0, + "height": 20.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 9.0, + "y": 15.25, + "z": 5.0 + }, + "position3d": { + "x": 9.0, + "y": 15.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 20.0, + "size_y": 20.0, + "size_z": 100.0, + "category": "container", + "model": "BIOYOND_PolymerStation_Solid_Stock", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 30000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 20.0, + "height": 100.0 + }, + "data": { + "thing": "BIOYOND_PolymerStation_8StockCarrier_vial_B1_volume_tracker", + "max_volume": 30000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 9.0, + "y": 15.25, + "z": 5.0 + } + }, + { + "id": "BIOYOND_PolymerStation_8StockCarrier_vial_A2", + "uuid": "20d82c11-4b19-47e6-ad68-9d57239b805f", + "name": "BIOYOND_PolymerStation_8StockCarrier_vial_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2fb6c40e-202c-4936-aab2-df7bd67ea948", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 100.0, + "width": 20.0, + "height": 20.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 39.0, + "y": 50.25, + "z": 5.0 + }, + "position3d": { + "x": 39.0, + "y": 50.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 20.0, + "size_y": 20.0, + "size_z": 100.0, + "category": "container", + "model": "BIOYOND_PolymerStation_Solid_Stock", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 30000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 20.0, + "height": 100.0 + }, + "data": { + "thing": "BIOYOND_PolymerStation_8StockCarrier_vial_A2_volume_tracker", + "max_volume": 30000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 39.0, + "y": 50.25, + "z": 5.0 + } + }, + { + "id": "BIOYOND_PolymerStation_8StockCarrier_vial_B2", + "uuid": "10207b39-2f52-4c8b-9713-9412aea46653", + "name": "BIOYOND_PolymerStation_8StockCarrier_vial_B2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2fb6c40e-202c-4936-aab2-df7bd67ea948", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 100.0, + "width": 20.0, + "height": 20.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 39.0, + "y": 15.25, + "z": 5.0 + }, + "position3d": { + "x": 39.0, + "y": 15.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 20.0, + "size_y": 20.0, + "size_z": 100.0, + "category": "container", + "model": "BIOYOND_PolymerStation_Solid_Stock", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 30000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 20.0, + "height": 100.0 + }, + "data": { + "thing": "BIOYOND_PolymerStation_8StockCarrier_vial_B2_volume_tracker", + "max_volume": 30000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 39.0, + "y": 15.25, + "z": 5.0 + } + }, + { + "id": "BIOYOND_PolymerStation_8StockCarrier_vial_A3", + "uuid": "c19f8f49-7c9f-4773-90a8-934c4486e1bc", + "name": "BIOYOND_PolymerStation_8StockCarrier_vial_A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2fb6c40e-202c-4936-aab2-df7bd67ea948", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 100.0, + "width": 20.0, + "height": 20.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 69.0, + "y": 50.25, + "z": 5.0 + }, + "position3d": { + "x": 69.0, + "y": 50.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 20.0, + "size_y": 20.0, + "size_z": 100.0, + "category": "container", + "model": "BIOYOND_PolymerStation_Solid_Stock", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 30000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 20.0, + "height": 100.0 + }, + "data": { + "thing": "BIOYOND_PolymerStation_8StockCarrier_vial_A3_volume_tracker", + "max_volume": 30000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 69.0, + "y": 50.25, + "z": 5.0 + } + }, + { + "id": "BIOYOND_PolymerStation_8StockCarrier_vial_B3", + "uuid": "ca08a5f5-0650-4ab6-b471-7bcfd3da5e6d", + "name": "BIOYOND_PolymerStation_8StockCarrier_vial_B3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2fb6c40e-202c-4936-aab2-df7bd67ea948", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 100.0, + "width": 20.0, + "height": 20.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 69.0, + "y": 15.25, + "z": 5.0 + }, + "position3d": { + "x": 69.0, + "y": 15.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 20.0, + "size_y": 20.0, + "size_z": 100.0, + "category": "container", + "model": "BIOYOND_PolymerStation_Solid_Stock", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 30000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 20.0, + "height": 100.0 + }, + "data": { + "thing": "BIOYOND_PolymerStation_8StockCarrier_vial_B3_volume_tracker", + "max_volume": 30000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 69.0, + "y": 15.25, + "z": 5.0 + } + }, + { + "id": "BIOYOND_PolymerStation_8StockCarrier_vial_A4", + "uuid": "79d7179a-6c94-4019-a463-937eb4090c64", + "name": "BIOYOND_PolymerStation_8StockCarrier_vial_A4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2fb6c40e-202c-4936-aab2-df7bd67ea948", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 100.0, + "width": 20.0, + "height": 20.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 99.0, + "y": 50.25, + "z": 5.0 + }, + "position3d": { + "x": 99.0, + "y": 50.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 20.0, + "size_y": 20.0, + "size_z": 100.0, + "category": "container", + "model": "BIOYOND_PolymerStation_Solid_Stock", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 30000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 20.0, + "height": 100.0 + }, + "data": { + "thing": "BIOYOND_PolymerStation_8StockCarrier_vial_A4_volume_tracker", + "max_volume": 30000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 99.0, + "y": 50.25, + "z": 5.0 + } + }, + { + "id": "BIOYOND_PolymerStation_8StockCarrier_vial_B4", + "uuid": "9d54d83d-324a-44f9-b70c-040f9d3b27c4", + "name": "BIOYOND_PolymerStation_8StockCarrier_vial_B4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2fb6c40e-202c-4936-aab2-df7bd67ea948", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 100.0, + "width": 20.0, + "height": 20.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 99.0, + "y": 15.25, + "z": 5.0 + }, + "position3d": { + "x": 99.0, + "y": 15.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 20.0, + "size_y": 20.0, + "size_z": 100.0, + "category": "container", + "model": "BIOYOND_PolymerStation_Solid_Stock", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 30000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 20.0, + "height": 100.0 + }, + "data": { + "thing": "BIOYOND_PolymerStation_8StockCarrier_vial_B4_volume_tracker", + "max_volume": 30000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 99.0, + "y": 15.25, + "z": 5.0 + } + } + ] + }, + { + "id": "BIOYOND_PolymerStation_Flask", + "category": [ + "bottles", + "flasks" + ], + "class": { + "module": "unilabos.resources.bioyond.bottles:BIOYOND_PolymerStation_Flask", + "type": "pylabrobot" + }, + "description": "聚合站-烧杯容器", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/bioyond/bottles.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "BIOYOND_PolymerStation_Flask", + "uuid": "ee544b6d-fa0e-45a8-b4a6-13cf3637d6a1", + "name": "BIOYOND_PolymerStation_Flask", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 70.0, + "width": 60.0, + "height": 60.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 60.0, + "size_y": 60.0, + "size_z": 70.0, + "category": "container", + "model": "BIOYOND_PolymerStation_Flask", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 60.0, + "height": 70.0 + }, + "data": { + "thing": "BIOYOND_PolymerStation_Flask_volume_tracker", + "max_volume": 200000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + ] + }, + { + "id": "BIOYOND_PolymerStation_Liquid_Vial", + "category": [ + "bottles" + ], + "class": { + "module": "unilabos.resources.bioyond.bottles:BIOYOND_PolymerStation_Liquid_Vial", + "type": "pylabrobot" + }, + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/bioyond/bottles.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "BIOYOND_PolymerStation_Liquid_Vial", + "uuid": "59157584-efe1-4716-a461-3cc148cb4b59", + "name": "BIOYOND_PolymerStation_Liquid_Vial", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 60.0, + "width": 25.0, + "height": 25.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 25.0, + "size_y": 25.0, + "size_z": 60.0, + "category": "container", + "model": "BIOYOND_PolymerStation_Liquid_Vial", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 30000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 25.0, + "height": 60.0 + }, + "data": { + "thing": "BIOYOND_PolymerStation_Liquid_Vial_volume_tracker", + "max_volume": 30000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + ] + }, + { + "id": "BIOYOND_PolymerStation_Measurement_Vial", + "category": [ + "bottles" + ], + "class": { + "module": "unilabos.resources.bioyond.bottles:BIOYOND_PolymerStation_Measurement_Vial", + "type": "pylabrobot" + }, + "description": "聚合站-测量小瓶(测密度)", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/bioyond/bottles.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "BIOYOND_PolymerStation_Measurement_Vial", + "uuid": "e07b6c68-706c-42fd-a720-06bd35d7728b", + "name": "BIOYOND_PolymerStation_Measurement_Vial", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 60.0, + "width": 25.0, + "height": 25.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 25.0, + "size_y": 25.0, + "size_z": 60.0, + "category": "container", + "model": "BIOYOND_PolymerStation_Measurement_Vial", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 20000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 25.0, + "height": 60.0 + }, + "data": { + "thing": "BIOYOND_PolymerStation_Measurement_Vial_volume_tracker", + "max_volume": 20000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + ] + }, + { + "id": "BIOYOND_PolymerStation_Reactor", + "category": [ + "bottles", + "reactors" + ], + "class": { + "module": "unilabos.resources.bioyond.bottles:BIOYOND_PolymerStation_Reactor", + "type": "pylabrobot" + }, + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/bioyond/bottles.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "BIOYOND_PolymerStation_Reactor", + "uuid": "73922ceb-af9a-409b-9aca-3439ed50abe8", + "name": "BIOYOND_PolymerStation_Reactor", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 80.0, + "width": 30.0, + "height": 30.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 30.0, + "size_y": 30.0, + "size_z": 80.0, + "category": "container", + "model": "BIOYOND_PolymerStation_Reactor", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 30.0, + "height": 80.0 + }, + "data": { + "thing": "BIOYOND_PolymerStation_Reactor_volume_tracker", + "max_volume": 50000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + ] + }, + { + "id": "BIOYOND_PolymerStation_Reagent_Bottle", + "category": [ + "bottles" + ], + "class": { + "module": "unilabos.resources.bioyond.bottles:BIOYOND_PolymerStation_Reagent_Bottle", + "type": "pylabrobot" + }, + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/bioyond/bottles.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "BIOYOND_PolymerStation_Reagent_Bottle", + "uuid": "87bd7e11-09a0-434b-ad85-ed9e3fc708e0", + "name": "BIOYOND_PolymerStation_Reagent_Bottle", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 120.0, + "width": 70.0, + "height": 70.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 70.0, + "size_y": 70.0, + "size_z": 120.0, + "category": "container", + "model": "BIOYOND_PolymerStation_Reagent_Bottle", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 500000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 70.0, + "height": 120.0 + }, + "data": { + "thing": "BIOYOND_PolymerStation_Reagent_Bottle_volume_tracker", + "max_volume": 500000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + ] + }, + { + "id": "BIOYOND_PolymerStation_Solid_Stock", + "category": [ + "bottles" + ], + "class": { + "module": "unilabos.resources.bioyond.bottles:BIOYOND_PolymerStation_Solid_Stock", + "type": "pylabrobot" + }, + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/bioyond/bottles.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "BIOYOND_PolymerStation_Solid_Stock", + "uuid": "356bf8ed-6be3-4d63-9f0f-99fd9a1e2ecb", + "name": "BIOYOND_PolymerStation_Solid_Stock", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 100.0, + "width": 20.0, + "height": 20.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 20.0, + "size_y": 20.0, + "size_z": 100.0, + "category": "container", + "model": "BIOYOND_PolymerStation_Solid_Stock", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 30000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 20.0, + "height": 100.0 + }, + "data": { + "thing": "BIOYOND_PolymerStation_Solid_Stock_volume_tracker", + "max_volume": 30000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + ] + }, + { + "id": "BIOYOND_PolymerStation_Solid_Vial", + "category": [ + "bottles" + ], + "class": { + "module": "unilabos.resources.bioyond.bottles:BIOYOND_PolymerStation_Solid_Vial", + "type": "pylabrobot" + }, + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/bioyond/bottles.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "BIOYOND_PolymerStation_Solid_Vial", + "uuid": "44c9927c-69e0-4f8c-aef2-9dd4908ad9e3", + "name": "BIOYOND_PolymerStation_Solid_Vial", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 60.0, + "width": 25.0, + "height": 25.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 25.0, + "size_y": 25.0, + "size_z": 60.0, + "category": "container", + "model": "BIOYOND_PolymerStation_Solid_Vial", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 30000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 25.0, + "height": 60.0 + }, + "data": { + "thing": "BIOYOND_PolymerStation_Solid_Vial_volume_tracker", + "max_volume": 30000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + ] + }, + { + "id": "BIOYOND_PolymerStation_Solution_Beaker", + "category": [ + "bottles" + ], + "class": { + "module": "unilabos.resources.bioyond.bottles:BIOYOND_PolymerStation_Solution_Beaker", + "type": "pylabrobot" + }, + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/bioyond/bottles.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "BIOYOND_PolymerStation_Solution_Beaker", + "uuid": "ee5ea705-b4fb-4236-af71-d16c670bdfc2", + "name": "BIOYOND_PolymerStation_Solution_Beaker", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 70.0, + "width": 60.0, + "height": 60.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 60.0, + "size_y": 60.0, + "size_z": 70.0, + "category": "container", + "model": "BIOYOND_PolymerStation_Solution_Beaker", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 200000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 60.0, + "height": 70.0 + }, + "data": { + "thing": "BIOYOND_PolymerStation_Solution_Beaker_volume_tracker", + "max_volume": 200000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + ] + }, + { + "id": "BIOYOND_PolymerStation_TipBox", + "category": [ + "bottles", + "tip_boxes" + ], + "class": { + "module": "unilabos.resources.bioyond.bottles:BIOYOND_PolymerStation_TipBox", + "type": "pylabrobot" + }, + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/bioyond/bottles.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "BIOYOND_PolymerStation_TipBox", + "uuid": "77b79f7e-b1d3-431c-aa39-5e3a6cc26121", + "name": "BIOYOND_PolymerStation_TipBox", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "tip_rack", + "class": "", + "pose": { + "size": { + "depth": 100.0, + "width": 127.76, + "height": 85.48 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Container", + "size_x": 127.76, + "size_y": 85.48, + "size_z": 100.0, + "category": "tip_rack", + "model": "BIOYOND_PolymerStation_TipBox_4x6", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1092092.48, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "BIOYOND_PolymerStation_TipBox_volume_tracker", + "max_volume": 1092092.48, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "A1", + "uuid": "a6dbfe00-185c-426a-a447-651cbb792150", + "name": "A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "77b79f7e-b1d3-431c-aa39-5e3a6cc26121", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 90.0, + "width": 8.0, + "height": 8.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 14.38, + "y": 11.24, + "z": 0.0 + }, + "position3d": { + "x": 14.38, + "y": 11.24, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Container", + "size_x": 8.0, + "size_y": 8.0, + "size_z": 90.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 5760.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A1_volume_tracker", + "max_volume": 5760.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 14.38, + "y": 11.24, + "z": 0.0 + } + }, + { + "id": "A2", + "uuid": "bd4e8637-7a8b-4638-a22b-8bd52e279a74", + "name": "A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "77b79f7e-b1d3-431c-aa39-5e3a6cc26121", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 90.0, + "width": 8.0, + "height": 8.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 23.38, + "y": 11.24, + "z": 0.0 + }, + "position3d": { + "x": 23.38, + "y": 11.24, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Container", + "size_x": 8.0, + "size_y": 8.0, + "size_z": 90.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 5760.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A2_volume_tracker", + "max_volume": 5760.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 23.38, + "y": 11.24, + "z": 0.0 + } + }, + { + "id": "A3", + "uuid": "b8511950-c1eb-4b61-ac71-96a729392a99", + "name": "A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "77b79f7e-b1d3-431c-aa39-5e3a6cc26121", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 90.0, + "width": 8.0, + "height": 8.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 32.38, + "y": 11.24, + "z": 0.0 + }, + "position3d": { + "x": 32.38, + "y": 11.24, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Container", + "size_x": 8.0, + "size_y": 8.0, + "size_z": 90.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 5760.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A3_volume_tracker", + "max_volume": 5760.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 32.38, + "y": 11.24, + "z": 0.0 + } + }, + { + "id": "A4", + "uuid": "667332fd-09cc-40cb-be72-36d3b5acf1a1", + "name": "A4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "77b79f7e-b1d3-431c-aa39-5e3a6cc26121", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 90.0, + "width": 8.0, + "height": 8.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 41.38, + "y": 11.24, + "z": 0.0 + }, + "position3d": { + "x": 41.38, + "y": 11.24, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Container", + "size_x": 8.0, + "size_y": 8.0, + "size_z": 90.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 5760.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A4_volume_tracker", + "max_volume": 5760.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 41.38, + "y": 11.24, + "z": 0.0 + } + }, + { + "id": "A5", + "uuid": "811aa33e-c107-495b-ab30-485802230e1c", + "name": "A5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "77b79f7e-b1d3-431c-aa39-5e3a6cc26121", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 90.0, + "width": 8.0, + "height": 8.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 50.38, + "y": 11.24, + "z": 0.0 + }, + "position3d": { + "x": 50.38, + "y": 11.24, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Container", + "size_x": 8.0, + "size_y": 8.0, + "size_z": 90.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 5760.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A5_volume_tracker", + "max_volume": 5760.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 50.38, + "y": 11.24, + "z": 0.0 + } + }, + { + "id": "A6", + "uuid": "249002a4-4eb7-4297-9114-a3028edf8023", + "name": "A6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "77b79f7e-b1d3-431c-aa39-5e3a6cc26121", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 90.0, + "width": 8.0, + "height": 8.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 59.38, + "y": 11.24, + "z": 0.0 + }, + "position3d": { + "x": 59.38, + "y": 11.24, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Container", + "size_x": 8.0, + "size_y": 8.0, + "size_z": 90.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 5760.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "A6_volume_tracker", + "max_volume": 5760.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 59.38, + "y": 11.24, + "z": 0.0 + } + }, + { + "id": "B1", + "uuid": "6eeb74d0-4307-48d3-8a3e-a8153325ee79", + "name": "B1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "77b79f7e-b1d3-431c-aa39-5e3a6cc26121", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 90.0, + "width": 8.0, + "height": 8.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 14.38, + "y": 20.24, + "z": 0.0 + }, + "position3d": { + "x": 14.38, + "y": 20.24, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Container", + "size_x": 8.0, + "size_y": 8.0, + "size_z": 90.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 5760.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B1_volume_tracker", + "max_volume": 5760.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 14.38, + "y": 20.24, + "z": 0.0 + } + }, + { + "id": "B2", + "uuid": "7b40075d-7d53-468a-aad5-f4fc1ba3729b", + "name": "B2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "77b79f7e-b1d3-431c-aa39-5e3a6cc26121", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 90.0, + "width": 8.0, + "height": 8.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 23.38, + "y": 20.24, + "z": 0.0 + }, + "position3d": { + "x": 23.38, + "y": 20.24, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Container", + "size_x": 8.0, + "size_y": 8.0, + "size_z": 90.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 5760.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B2_volume_tracker", + "max_volume": 5760.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 23.38, + "y": 20.24, + "z": 0.0 + } + }, + { + "id": "B3", + "uuid": "58955af4-4f50-42d4-8a9e-0e5211b940b3", + "name": "B3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "77b79f7e-b1d3-431c-aa39-5e3a6cc26121", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 90.0, + "width": 8.0, + "height": 8.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 32.38, + "y": 20.24, + "z": 0.0 + }, + "position3d": { + "x": 32.38, + "y": 20.24, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Container", + "size_x": 8.0, + "size_y": 8.0, + "size_z": 90.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 5760.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B3_volume_tracker", + "max_volume": 5760.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 32.38, + "y": 20.24, + "z": 0.0 + } + }, + { + "id": "B4", + "uuid": "81284048-265e-44c5-a9bd-44580da4e86b", + "name": "B4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "77b79f7e-b1d3-431c-aa39-5e3a6cc26121", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 90.0, + "width": 8.0, + "height": 8.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 41.38, + "y": 20.24, + "z": 0.0 + }, + "position3d": { + "x": 41.38, + "y": 20.24, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Container", + "size_x": 8.0, + "size_y": 8.0, + "size_z": 90.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 5760.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B4_volume_tracker", + "max_volume": 5760.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 41.38, + "y": 20.24, + "z": 0.0 + } + }, + { + "id": "B5", + "uuid": "719d7497-83ee-42eb-bec8-c8eaf0461614", + "name": "B5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "77b79f7e-b1d3-431c-aa39-5e3a6cc26121", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 90.0, + "width": 8.0, + "height": 8.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 50.38, + "y": 20.24, + "z": 0.0 + }, + "position3d": { + "x": 50.38, + "y": 20.24, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Container", + "size_x": 8.0, + "size_y": 8.0, + "size_z": 90.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 5760.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B5_volume_tracker", + "max_volume": 5760.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 50.38, + "y": 20.24, + "z": 0.0 + } + }, + { + "id": "B6", + "uuid": "a7b2cf0f-2055-4eeb-b6e5-ff85c7c0ca1e", + "name": "B6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "77b79f7e-b1d3-431c-aa39-5e3a6cc26121", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 90.0, + "width": 8.0, + "height": 8.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 59.38, + "y": 20.24, + "z": 0.0 + }, + "position3d": { + "x": 59.38, + "y": 20.24, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Container", + "size_x": 8.0, + "size_y": 8.0, + "size_z": 90.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 5760.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "B6_volume_tracker", + "max_volume": 5760.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 59.38, + "y": 20.24, + "z": 0.0 + } + }, + { + "id": "C1", + "uuid": "eee804c1-e69d-4dba-b540-c73ede15b790", + "name": "C1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "77b79f7e-b1d3-431c-aa39-5e3a6cc26121", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 90.0, + "width": 8.0, + "height": 8.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 14.38, + "y": 29.24, + "z": 0.0 + }, + "position3d": { + "x": 14.38, + "y": 29.24, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Container", + "size_x": 8.0, + "size_y": 8.0, + "size_z": 90.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 5760.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C1_volume_tracker", + "max_volume": 5760.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 14.38, + "y": 29.24, + "z": 0.0 + } + }, + { + "id": "C2", + "uuid": "851125fa-9819-4580-b201-3950280d4da8", + "name": "C2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "77b79f7e-b1d3-431c-aa39-5e3a6cc26121", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 90.0, + "width": 8.0, + "height": 8.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 23.38, + "y": 29.24, + "z": 0.0 + }, + "position3d": { + "x": 23.38, + "y": 29.24, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Container", + "size_x": 8.0, + "size_y": 8.0, + "size_z": 90.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 5760.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C2_volume_tracker", + "max_volume": 5760.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 23.38, + "y": 29.24, + "z": 0.0 + } + }, + { + "id": "C3", + "uuid": "a301a714-fe14-48f7-918f-d5f923780341", + "name": "C3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "77b79f7e-b1d3-431c-aa39-5e3a6cc26121", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 90.0, + "width": 8.0, + "height": 8.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 32.38, + "y": 29.24, + "z": 0.0 + }, + "position3d": { + "x": 32.38, + "y": 29.24, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Container", + "size_x": 8.0, + "size_y": 8.0, + "size_z": 90.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 5760.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C3_volume_tracker", + "max_volume": 5760.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 32.38, + "y": 29.24, + "z": 0.0 + } + }, + { + "id": "C4", + "uuid": "c0bdeaa0-0e88-4656-af29-4e7aa4a6c9e4", + "name": "C4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "77b79f7e-b1d3-431c-aa39-5e3a6cc26121", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 90.0, + "width": 8.0, + "height": 8.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 41.38, + "y": 29.24, + "z": 0.0 + }, + "position3d": { + "x": 41.38, + "y": 29.24, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Container", + "size_x": 8.0, + "size_y": 8.0, + "size_z": 90.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 5760.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C4_volume_tracker", + "max_volume": 5760.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 41.38, + "y": 29.24, + "z": 0.0 + } + }, + { + "id": "C5", + "uuid": "50ac44fe-68b3-41bc-8070-92a6a71a949a", + "name": "C5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "77b79f7e-b1d3-431c-aa39-5e3a6cc26121", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 90.0, + "width": 8.0, + "height": 8.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 50.38, + "y": 29.24, + "z": 0.0 + }, + "position3d": { + "x": 50.38, + "y": 29.24, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Container", + "size_x": 8.0, + "size_y": 8.0, + "size_z": 90.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 5760.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C5_volume_tracker", + "max_volume": 5760.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 50.38, + "y": 29.24, + "z": 0.0 + } + }, + { + "id": "C6", + "uuid": "08f810a0-f538-48dc-9fb4-eccfc7051c15", + "name": "C6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "77b79f7e-b1d3-431c-aa39-5e3a6cc26121", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 90.0, + "width": 8.0, + "height": 8.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 59.38, + "y": 29.24, + "z": 0.0 + }, + "position3d": { + "x": 59.38, + "y": 29.24, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Container", + "size_x": 8.0, + "size_y": 8.0, + "size_z": 90.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 5760.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "C6_volume_tracker", + "max_volume": 5760.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 59.38, + "y": 29.24, + "z": 0.0 + } + }, + { + "id": "D1", + "uuid": "c0b05222-cee5-4c54-8348-e867bdaf4593", + "name": "D1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "77b79f7e-b1d3-431c-aa39-5e3a6cc26121", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 90.0, + "width": 8.0, + "height": 8.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 14.38, + "y": 38.24, + "z": 0.0 + }, + "position3d": { + "x": 14.38, + "y": 38.24, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Container", + "size_x": 8.0, + "size_y": 8.0, + "size_z": 90.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 5760.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D1_volume_tracker", + "max_volume": 5760.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 14.38, + "y": 38.24, + "z": 0.0 + } + }, + { + "id": "D2", + "uuid": "e388ae2b-5ecc-477a-b826-2a62d3a71a66", + "name": "D2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "77b79f7e-b1d3-431c-aa39-5e3a6cc26121", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 90.0, + "width": 8.0, + "height": 8.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 23.38, + "y": 38.24, + "z": 0.0 + }, + "position3d": { + "x": 23.38, + "y": 38.24, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Container", + "size_x": 8.0, + "size_y": 8.0, + "size_z": 90.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 5760.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D2_volume_tracker", + "max_volume": 5760.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 23.38, + "y": 38.24, + "z": 0.0 + } + }, + { + "id": "D3", + "uuid": "08a57d20-6c45-4013-8ce3-f9ad871b19de", + "name": "D3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "77b79f7e-b1d3-431c-aa39-5e3a6cc26121", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 90.0, + "width": 8.0, + "height": 8.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 32.38, + "y": 38.24, + "z": 0.0 + }, + "position3d": { + "x": 32.38, + "y": 38.24, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Container", + "size_x": 8.0, + "size_y": 8.0, + "size_z": 90.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 5760.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D3_volume_tracker", + "max_volume": 5760.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 32.38, + "y": 38.24, + "z": 0.0 + } + }, + { + "id": "D4", + "uuid": "6d146f82-bec1-494d-a901-4c1faab364f2", + "name": "D4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "77b79f7e-b1d3-431c-aa39-5e3a6cc26121", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 90.0, + "width": 8.0, + "height": 8.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 41.38, + "y": 38.24, + "z": 0.0 + }, + "position3d": { + "x": 41.38, + "y": 38.24, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Container", + "size_x": 8.0, + "size_y": 8.0, + "size_z": 90.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 5760.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D4_volume_tracker", + "max_volume": 5760.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 41.38, + "y": 38.24, + "z": 0.0 + } + }, + { + "id": "D5", + "uuid": "9adf1c41-27b1-4ca2-adf0-7c2df271baf6", + "name": "D5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "77b79f7e-b1d3-431c-aa39-5e3a6cc26121", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 90.0, + "width": 8.0, + "height": 8.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 50.38, + "y": 38.24, + "z": 0.0 + }, + "position3d": { + "x": 50.38, + "y": 38.24, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Container", + "size_x": 8.0, + "size_y": 8.0, + "size_z": 90.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 5760.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D5_volume_tracker", + "max_volume": 5760.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 50.38, + "y": 38.24, + "z": 0.0 + } + }, + { + "id": "D6", + "uuid": "5db01e0c-fa19-4c2c-ba34-797a841b49c1", + "name": "D6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "77b79f7e-b1d3-431c-aa39-5e3a6cc26121", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 90.0, + "width": 8.0, + "height": 8.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 59.38, + "y": 38.24, + "z": 0.0 + }, + "position3d": { + "x": 59.38, + "y": 38.24, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Container", + "size_x": 8.0, + "size_y": 8.0, + "size_z": 90.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 5760.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "D6_volume_tracker", + "max_volume": 5760.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 59.38, + "y": 38.24, + "z": 0.0 + } + } + ] + }, + { + "id": "BIOYOND_PolymerPreparationStation_Deck", + "category": [ + "deck" + ], + "class": { + "module": "unilabos.resources.bioyond.decks:BIOYOND_PolymerPreparationStation_Deck", + "type": "pylabrobot" + }, + "description": "BIOYOND PolymerPreparationStation Deck", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/bioyond/deck.yaml", + "handles": [], + "icon": "配液站.webp", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [] + }, + { + "id": "BIOYOND_PolymerReactionStation_Deck", + "category": [ + "deck" + ], + "class": { + "module": "unilabos.resources.bioyond.decks:BIOYOND_PolymerReactionStation_Deck", + "type": "pylabrobot" + }, + "description": "BIOYOND PolymerReactionStation Deck", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/bioyond/deck.yaml", + "handles": [], + "icon": "反应站.webp", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [] + }, + { + "id": "BIOYOND_YB_Deck", + "category": [ + "deck" + ], + "class": { + "module": "unilabos.resources.bioyond.decks:YB_Deck", + "type": "pylabrobot" + }, + "description": "BIOYOND ElectrolyteFormulationStation Deck", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/bioyond/deck.yaml", + "handles": [], + "icon": "配液站.webp", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "YB_Deck", + "uuid": "9056ac2e-fe0f-4310-8aa8-7632536e4700", + "name": "YB_Deck", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "deck", + "class": "", + "pose": { + "size": { + "depth": 2670.0, + "width": 4150.0, + "height": 1400.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "BIOYOND_YB_Deck", + "size_x": 4150.0, + "size_y": 1400.0, + "size_z": 2670.0, + "category": "deck", + "barcode": null, + "preferred_pickup_location": null + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "321窗口", + "uuid": "8e23af1a-2af5-41e4-b96c-7a9b78ed857f", + "name": "321窗口", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "9056ac2e-fe0f-4310-8aa8-7632536e4700", + "type": "warehouse", + "class": "", + "pose": { + "size": { + "depth": 130.0, + "width": 284.0, + "height": 202.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": -150.0, + "y": 158.0, + "z": 0.0 + }, + "position3d": { + "x": -150.0, + "y": 158.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "WareHouse", + "size_x": 284.0, + "size_y": 202.0, + "size_z": 130.0, + "category": "warehouse", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "num_items_x": 2, + "num_items_y": 2, + "num_items_z": 1, + "layout": "x-y", + "sites": [ + { + "label": "A01", + "visible": true, + "occupied_by": null, + "position": { + "x": 10.0, + "y": 10.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "A02", + "visible": true, + "occupied_by": null, + "position": { + "x": 147.0, + "y": 10.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "B01", + "visible": true, + "occupied_by": null, + "position": { + "x": 10.0, + "y": 106.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "B02", + "visible": true, + "occupied_by": null, + "position": { + "x": 147.0, + "y": 106.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + } + ], + "ordering_layout": "row-major" + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": -150.0, + "y": 158.0, + "z": 0.0 + } + }, + { + "id": "43窗口", + "uuid": "7f50e290-ad1f-441a-9fd1-152fad14d38a", + "name": "43窗口", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "9056ac2e-fe0f-4310-8aa8-7632536e4700", + "type": "warehouse", + "class": "", + "pose": { + "size": { + "depth": 130.0, + "width": 284.0, + "height": 202.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 4160.0, + "y": 158.0, + "z": 0.0 + }, + "position3d": { + "x": 4160.0, + "y": 158.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "WareHouse", + "size_x": 284.0, + "size_y": 202.0, + "size_z": 130.0, + "category": "warehouse", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "num_items_x": 2, + "num_items_y": 2, + "num_items_z": 1, + "layout": "x-y", + "sites": [ + { + "label": "A01", + "visible": true, + "occupied_by": null, + "position": { + "x": 10.0, + "y": 10.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "A02", + "visible": true, + "occupied_by": null, + "position": { + "x": 147.0, + "y": 10.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "B01", + "visible": true, + "occupied_by": null, + "position": { + "x": 10.0, + "y": 106.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "B02", + "visible": true, + "occupied_by": null, + "position": { + "x": 147.0, + "y": 106.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + } + ], + "ordering_layout": "row-major" + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 4160.0, + "y": 158.0, + "z": 0.0 + } + }, + { + "id": "手动传递窗右", + "uuid": "49ff7bc5-b43e-4aa1-9ce8-984580a1a596", + "name": "手动传递窗右", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "9056ac2e-fe0f-4310-8aa8-7632536e4700", + "type": "warehouse", + "class": "", + "pose": { + "size": { + "depth": 130.0, + "width": 421.0, + "height": 610.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 4160.0, + "y": 877.0, + "z": 0.0 + }, + "position3d": { + "x": 4160.0, + "y": 877.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "WareHouse", + "size_x": 421.0, + "size_y": 610.0, + "size_z": 130.0, + "category": "warehouse", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "num_items_x": 3, + "num_items_y": 5, + "num_items_z": 1, + "layout": "x-y", + "sites": [ + { + "label": "A01", + "visible": true, + "occupied_by": null, + "position": { + "x": 10.0, + "y": 10.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "A02", + "visible": true, + "occupied_by": null, + "position": { + "x": 147.0, + "y": 10.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "A03", + "visible": true, + "occupied_by": null, + "position": { + "x": 284.0, + "y": 10.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "B01", + "visible": true, + "occupied_by": null, + "position": { + "x": 10.0, + "y": 130.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "B02", + "visible": true, + "occupied_by": null, + "position": { + "x": 147.0, + "y": 130.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "B03", + "visible": true, + "occupied_by": null, + "position": { + "x": 284.0, + "y": 130.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "C01", + "visible": true, + "occupied_by": null, + "position": { + "x": 10.0, + "y": 250.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "C02", + "visible": true, + "occupied_by": null, + "position": { + "x": 147.0, + "y": 250.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "C03", + "visible": true, + "occupied_by": null, + "position": { + "x": 284.0, + "y": 250.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "D01", + "visible": true, + "occupied_by": null, + "position": { + "x": 10.0, + "y": 370.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "D02", + "visible": true, + "occupied_by": null, + "position": { + "x": 147.0, + "y": 370.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "D03", + "visible": true, + "occupied_by": null, + "position": { + "x": 284.0, + "y": 370.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "E01", + "visible": true, + "occupied_by": null, + "position": { + "x": 10.0, + "y": 490.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "E02", + "visible": true, + "occupied_by": null, + "position": { + "x": 147.0, + "y": 490.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "E03", + "visible": true, + "occupied_by": null, + "position": { + "x": 284.0, + "y": 490.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + } + ], + "ordering_layout": "row-major" + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 4160.0, + "y": 877.0, + "z": 0.0 + } + }, + { + "id": "手动传递窗左", + "uuid": "94f16426-884b-4878-9884-803747e4af9e", + "name": "手动传递窗左", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "9056ac2e-fe0f-4310-8aa8-7632536e4700", + "type": "warehouse", + "class": "", + "pose": { + "size": { + "depth": 130.0, + "width": 421.0, + "height": 610.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": -150.0, + "y": 877.0, + "z": 0.0 + }, + "position3d": { + "x": -150.0, + "y": 877.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "WareHouse", + "size_x": 421.0, + "size_y": 610.0, + "size_z": 130.0, + "category": "warehouse", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "num_items_x": 3, + "num_items_y": 5, + "num_items_z": 1, + "layout": "x-y", + "sites": [ + { + "label": "F01", + "visible": true, + "occupied_by": null, + "position": { + "x": 10.0, + "y": 10.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "F02", + "visible": true, + "occupied_by": null, + "position": { + "x": 147.0, + "y": 10.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "F03", + "visible": true, + "occupied_by": null, + "position": { + "x": 284.0, + "y": 10.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "G01", + "visible": true, + "occupied_by": null, + "position": { + "x": 10.0, + "y": 130.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "G02", + "visible": true, + "occupied_by": null, + "position": { + "x": 147.0, + "y": 130.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "G03", + "visible": true, + "occupied_by": null, + "position": { + "x": 284.0, + "y": 130.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "H01", + "visible": true, + "occupied_by": null, + "position": { + "x": 10.0, + "y": 250.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "H02", + "visible": true, + "occupied_by": null, + "position": { + "x": 147.0, + "y": 250.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "H03", + "visible": true, + "occupied_by": null, + "position": { + "x": 284.0, + "y": 250.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "I01", + "visible": true, + "occupied_by": null, + "position": { + "x": 10.0, + "y": 370.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "I02", + "visible": true, + "occupied_by": null, + "position": { + "x": 147.0, + "y": 370.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "I03", + "visible": true, + "occupied_by": null, + "position": { + "x": 284.0, + "y": 370.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "J01", + "visible": true, + "occupied_by": null, + "position": { + "x": 10.0, + "y": 490.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "J02", + "visible": true, + "occupied_by": null, + "position": { + "x": 147.0, + "y": 490.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "J03", + "visible": true, + "occupied_by": null, + "position": { + "x": 284.0, + "y": 490.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + } + ], + "ordering_layout": "row-major" + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": -150.0, + "y": 877.0, + "z": 0.0 + } + }, + { + "id": "加样头堆栈左", + "uuid": "13506e26-1474-4273-9466-2c3e6bb08b36", + "name": "加样头堆栈左", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "9056ac2e-fe0f-4310-8aa8-7632536e4700", + "type": "warehouse", + "class": "", + "pose": { + "size": { + "depth": 130.0, + "width": 1380.0, + "height": 106.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 385.0, + "y": 1300.0, + "z": 0.0 + }, + "position3d": { + "x": 385.0, + "y": 1300.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "WareHouse", + "size_x": 1380.0, + "size_y": 106.0, + "size_z": 130.0, + "category": "warehouse", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "num_items_x": 10, + "num_items_y": 1, + "num_items_z": 1, + "layout": "x-y", + "sites": [ + { + "label": "A01", + "visible": true, + "occupied_by": null, + "position": { + "x": 10.0, + "y": 10.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "A02", + "visible": true, + "occupied_by": null, + "position": { + "x": 147.0, + "y": 10.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "A03", + "visible": true, + "occupied_by": null, + "position": { + "x": 284.0, + "y": 10.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "A04", + "visible": true, + "occupied_by": null, + "position": { + "x": 421.0, + "y": 10.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "A05", + "visible": true, + "occupied_by": null, + "position": { + "x": 558.0, + "y": 10.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "A06", + "visible": true, + "occupied_by": null, + "position": { + "x": 695.0, + "y": 10.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "A07", + "visible": true, + "occupied_by": null, + "position": { + "x": 832.0, + "y": 10.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "A08", + "visible": true, + "occupied_by": null, + "position": { + "x": 969.0, + "y": 10.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "A09", + "visible": true, + "occupied_by": null, + "position": { + "x": 1106.0, + "y": 10.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "A10", + "visible": true, + "occupied_by": null, + "position": { + "x": 1243.0, + "y": 10.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + } + ], + "ordering_layout": "col-major" + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 385.0, + "y": 1300.0, + "z": 0.0 + } + }, + { + "id": "加样头堆栈右", + "uuid": "36c519a3-e161-4754-8c81-828e457f48b2", + "name": "加样头堆栈右", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "9056ac2e-fe0f-4310-8aa8-7632536e4700", + "type": "warehouse", + "class": "", + "pose": { + "size": { + "depth": 130.0, + "width": 1380.0, + "height": 106.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 2187.0, + "y": 1300.0, + "z": 0.0 + }, + "position3d": { + "x": 2187.0, + "y": 1300.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "WareHouse", + "size_x": 1380.0, + "size_y": 106.0, + "size_z": 130.0, + "category": "warehouse", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "num_items_x": 10, + "num_items_y": 1, + "num_items_z": 1, + "layout": "x-y", + "sites": [ + { + "label": "A01", + "visible": true, + "occupied_by": null, + "position": { + "x": 10.0, + "y": 10.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "A02", + "visible": true, + "occupied_by": null, + "position": { + "x": 147.0, + "y": 10.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "A03", + "visible": true, + "occupied_by": null, + "position": { + "x": 284.0, + "y": 10.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "A04", + "visible": true, + "occupied_by": null, + "position": { + "x": 421.0, + "y": 10.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "A05", + "visible": true, + "occupied_by": null, + "position": { + "x": 558.0, + "y": 10.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "A06", + "visible": true, + "occupied_by": null, + "position": { + "x": 695.0, + "y": 10.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "A07", + "visible": true, + "occupied_by": null, + "position": { + "x": 832.0, + "y": 10.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "A08", + "visible": true, + "occupied_by": null, + "position": { + "x": 969.0, + "y": 10.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "A09", + "visible": true, + "occupied_by": null, + "position": { + "x": 1106.0, + "y": 10.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "A10", + "visible": true, + "occupied_by": null, + "position": { + "x": 1243.0, + "y": 10.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + } + ], + "ordering_layout": "col-major" + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 2187.0, + "y": 1300.0, + "z": 0.0 + } + }, + { + "id": "15ml配液堆栈左", + "uuid": "e587c504-bca4-4e48-812c-ab233ac6a035", + "name": "15ml配液堆栈左", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "9056ac2e-fe0f-4310-8aa8-7632536e4700", + "type": "warehouse", + "class": "", + "pose": { + "size": { + "depth": 130.0, + "width": 421.0, + "height": 298.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 749.0, + "y": 355.0, + "z": 0.0 + }, + "position3d": { + "x": 749.0, + "y": 355.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "WareHouse", + "size_x": 421.0, + "size_y": 298.0, + "size_z": 130.0, + "category": "warehouse", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "num_items_x": 3, + "num_items_y": 3, + "num_items_z": 1, + "layout": "x-y", + "sites": [ + { + "label": "A01", + "visible": true, + "occupied_by": null, + "position": { + "x": 10.0, + "y": 10.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "A02", + "visible": true, + "occupied_by": null, + "position": { + "x": 147.0, + "y": 10.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "A03", + "visible": true, + "occupied_by": null, + "position": { + "x": 284.0, + "y": 10.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "B01", + "visible": true, + "occupied_by": null, + "position": { + "x": 10.0, + "y": 106.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "B02", + "visible": true, + "occupied_by": null, + "position": { + "x": 147.0, + "y": 106.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "B03", + "visible": true, + "occupied_by": null, + "position": { + "x": 284.0, + "y": 106.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "C01", + "visible": true, + "occupied_by": null, + "position": { + "x": 10.0, + "y": 202.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "C02", + "visible": true, + "occupied_by": null, + "position": { + "x": 147.0, + "y": 202.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "C03", + "visible": true, + "occupied_by": null, + "position": { + "x": 284.0, + "y": 202.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + } + ], + "ordering_layout": "row-major" + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 749.0, + "y": 355.0, + "z": 0.0 + } + }, + { + "id": "母液加样右", + "uuid": "be71322a-c154-4a14-8777-5e2862ec8733", + "name": "母液加样右", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "9056ac2e-fe0f-4310-8aa8-7632536e4700", + "type": "warehouse", + "class": "", + "pose": { + "size": { + "depth": 132.0, + "width": 423.0, + "height": 300.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 2152.0, + "y": 333.0, + "z": 0.0 + }, + "position3d": { + "x": 2152.0, + "y": 333.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "WareHouse", + "size_x": 423.0, + "size_y": 300.0, + "size_z": 132.0, + "category": "warehouse", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "num_items_x": 3, + "num_items_y": 3, + "num_items_z": 1, + "layout": "x-y", + "sites": [ + { + "label": "A01", + "visible": true, + "occupied_by": null, + "position": { + "x": 12.0, + "y": 204.0, + "z": 12.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "B01", + "visible": true, + "occupied_by": null, + "position": { + "x": 149.0, + "y": 204.0, + "z": 12.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "C01", + "visible": true, + "occupied_by": null, + "position": { + "x": 286.0, + "y": 204.0, + "z": 12.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "A02", + "visible": true, + "occupied_by": null, + "position": { + "x": 12.0, + "y": 108.0, + "z": 12.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "B02", + "visible": true, + "occupied_by": null, + "position": { + "x": 149.0, + "y": 108.0, + "z": 12.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "C02", + "visible": true, + "occupied_by": null, + "position": { + "x": 286.0, + "y": 108.0, + "z": 12.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "A03", + "visible": true, + "occupied_by": null, + "position": { + "x": 12.0, + "y": 12.0, + "z": 12.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "B03", + "visible": true, + "occupied_by": null, + "position": { + "x": 149.0, + "y": 12.0, + "z": 12.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "C03", + "visible": true, + "occupied_by": null, + "position": { + "x": 286.0, + "y": 12.0, + "z": 12.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + } + ], + "ordering_layout": "col-major" + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 2152.0, + "y": 333.0, + "z": 0.0 + } + }, + { + "id": "大瓶母液堆栈左", + "uuid": "1d41b616-e99d-43ed-9df6-ff9aa41d2347", + "name": "大瓶母液堆栈左", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "9056ac2e-fe0f-4310-8aa8-7632536e4700", + "type": "warehouse", + "class": "", + "pose": { + "size": { + "depth": 130.0, + "width": 695.0, + "height": 106.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 1164.0, + "y": 676.0, + "z": 0.0 + }, + "position3d": { + "x": 1164.0, + "y": 676.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "WareHouse", + "size_x": 695.0, + "size_y": 106.0, + "size_z": 130.0, + "category": "warehouse", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "num_items_x": 5, + "num_items_y": 1, + "num_items_z": 1, + "layout": "x-y", + "sites": [ + { + "label": "A01", + "visible": true, + "occupied_by": null, + "position": { + "x": 10.0, + "y": 10.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "A02", + "visible": true, + "occupied_by": null, + "position": { + "x": 147.0, + "y": 10.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "A03", + "visible": true, + "occupied_by": null, + "position": { + "x": 284.0, + "y": 10.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "A04", + "visible": true, + "occupied_by": null, + "position": { + "x": 421.0, + "y": 10.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "A05", + "visible": true, + "occupied_by": null, + "position": { + "x": 558.0, + "y": 10.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + } + ], + "ordering_layout": "col-major" + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 1164.0, + "y": 676.0, + "z": 0.0 + } + }, + { + "id": "大瓶母液堆栈右", + "uuid": "b77aef16-481f-40e7-8de9-e4a628af16d6", + "name": "大瓶母液堆栈右", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "9056ac2e-fe0f-4310-8aa8-7632536e4700", + "type": "warehouse", + "class": "", + "pose": { + "size": { + "depth": 130.0, + "width": 695.0, + "height": 106.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 2717.0, + "y": 676.0, + "z": 0.0 + }, + "position3d": { + "x": 2717.0, + "y": 676.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "WareHouse", + "size_x": 695.0, + "size_y": 106.0, + "size_z": 130.0, + "category": "warehouse", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "num_items_x": 5, + "num_items_y": 1, + "num_items_z": 1, + "layout": "x-y", + "sites": [ + { + "label": "A01", + "visible": true, + "occupied_by": null, + "position": { + "x": 10.0, + "y": 10.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "A02", + "visible": true, + "occupied_by": null, + "position": { + "x": 147.0, + "y": 10.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "A03", + "visible": true, + "occupied_by": null, + "position": { + "x": 284.0, + "y": 10.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "A04", + "visible": true, + "occupied_by": null, + "position": { + "x": 421.0, + "y": 10.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "A05", + "visible": true, + "occupied_by": null, + "position": { + "x": 558.0, + "y": 10.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + } + ], + "ordering_layout": "col-major" + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 2717.0, + "y": 676.0, + "z": 0.0 + } + }, + { + "id": "2号手套箱内部堆栈", + "uuid": "c0d0f7b7-5bbe-49fe-933a-9b6b4f0889e1", + "name": "2号手套箱内部堆栈", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "9056ac2e-fe0f-4310-8aa8-7632536e4700", + "type": "warehouse", + "class": "", + "pose": { + "size": { + "depth": 130.0, + "width": 421.0, + "height": 298.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": -800.0, + "y": -500.0, + "z": 0.0 + }, + "position3d": { + "x": -800.0, + "y": -500.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "WareHouse", + "size_x": 421.0, + "size_y": 298.0, + "size_z": 130.0, + "category": "warehouse", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "num_items_x": 3, + "num_items_y": 3, + "num_items_z": 1, + "layout": "x-y", + "sites": [ + { + "label": "A01", + "visible": true, + "occupied_by": null, + "position": { + "x": 10.0, + "y": 10.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "A02", + "visible": true, + "occupied_by": null, + "position": { + "x": 147.0, + "y": 10.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "A03", + "visible": true, + "occupied_by": null, + "position": { + "x": 284.0, + "y": 10.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "B01", + "visible": true, + "occupied_by": null, + "position": { + "x": 10.0, + "y": 106.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "B02", + "visible": true, + "occupied_by": null, + "position": { + "x": 147.0, + "y": 106.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "B03", + "visible": true, + "occupied_by": null, + "position": { + "x": 284.0, + "y": 106.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "C01", + "visible": true, + "occupied_by": null, + "position": { + "x": 10.0, + "y": 202.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "C02", + "visible": true, + "occupied_by": null, + "position": { + "x": 147.0, + "y": 202.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "C03", + "visible": true, + "occupied_by": null, + "position": { + "x": 284.0, + "y": 202.0, + "z": 10.0 + }, + "size": { + "width": 127.0, + "height": 86.0, + "depth": 25.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + } + ], + "ordering_layout": "row-major" + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": -800.0, + "y": -500.0, + "z": 0.0 + } + } + ] + }, + { + "id": "CoincellDeck", + "category": [ + "deck" + ], + "class": { + "module": "unilabos.devices.workstation.coin_cell_assembly.YB_YH_materials:YH_Deck", + "type": "pylabrobot" + }, + "description": "YIHUA CoinCellAssembly Deck", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/bioyond/deck.yaml", + "handles": [], + "icon": "koudian.webp", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "YH_Deck", + "uuid": "24b64c33-ddb4-409e-8b71-aa3721c52a0f", + "name": "YH_Deck", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "deck", + "class": "", + "pose": { + "size": { + "depth": 100.0, + "width": 1450.0, + "height": 1450.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": -2200.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": -2200.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "CoincellDeck", + "size_x": 1450.0, + "size_y": 1450.0, + "size_z": 100.0, + "category": "deck", + "barcode": null, + "preferred_pickup_location": null + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": -2200.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "正极&铝箔弹夹", + "uuid": "6b0c4306-5125-4eed-b85a-15348a5310a9", + "name": "正极&铝箔弹夹", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "24b64c33-ddb4-409e-8b71-aa3721c52a0f", + "type": "magazine_holder", + "class": "", + "pose": { + "size": { + "depth": 10.0, + "width": 80.0, + "height": 80.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 402.0, + "y": 830.0, + "z": 0.0 + }, + "position3d": { + "x": 402.0, + "y": 830.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "MagazineHolder", + "size_x": 80.0, + "size_y": 80.0, + "size_z": 10.0, + "category": "magazine_holder", + "model": "MagazineHolder_4_Cathode", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "正极&铝箔弹夹_正极&铝箔弹夹-0", + "A2": "正极&铝箔弹夹_正极&铝箔弹夹-1", + "A3": "正极&铝箔弹夹_正极&铝箔弹夹-2", + "A4": "正极&铝箔弹夹_正极&铝箔弹夹-3" + }, + "hole_diameter": 14.0, + "hole_depth": 10.0, + "max_sheets_per_hole": 100 + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 402.0, + "y": 830.0, + "z": 0.0 + } + }, + { + "id": "正极&铝箔弹夹_正极&铝箔弹夹-0", + "uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "name": "正极&铝箔弹夹_正极&铝箔弹夹-0", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6b0c4306-5125-4eed-b85a-15348a5310a9", + "type": "resource_group", + "class": "", + "pose": { + "size": { + "depth": 4.99999999999999, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.5, + "y": 20.5, + "z": 0.0 + }, + "position3d": { + "x": 20.5, + "y": 20.5, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Magazine", + "size_x": 10, + "size_y": 10, + "size_z": 4.99999999999999, + "category": "resource_group", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_sheets": 100 + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.5, + "y": 20.5, + "z": 0.0 + } + }, + { + "id": "A1_sheet100", + "uuid": "1f91365e-0612-4ea4-93b2-b90aa8b2908f", + "name": "A1_sheet100", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "A1_sheet99", + "uuid": "64072fc7-4250-4161-b9c6-7be1d11307bc", + "name": "A1_sheet99", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.05 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.05 + } + }, + { + "id": "A1_sheet98", + "uuid": "d8834f7b-2aa7-4a44-a2de-12c8083195c0", + "name": "A1_sheet98", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.1 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.1 + } + }, + { + "id": "A1_sheet97", + "uuid": "ae00c9ce-5f31-4e2b-a931-7190bedfb2a3", + "name": "A1_sheet97", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.15 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.15 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.15 + } + }, + { + "id": "A1_sheet96", + "uuid": "75c29005-555f-444c-b984-4c8d456fd31a", + "name": "A1_sheet96", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.2 + } + }, + { + "id": "A1_sheet95", + "uuid": "08f04d11-9032-48a4-9d69-d6f2e70f7249", + "name": "A1_sheet95", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.25 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.25 + } + }, + { + "id": "A1_sheet94", + "uuid": "1ea0ee61-6f0a-47d6-9a36-a99415578dd9", + "name": "A1_sheet94", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.3 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.3 + } + }, + { + "id": "A1_sheet93", + "uuid": "810dc5b8-abf9-43dc-b288-1426f1b76d64", + "name": "A1_sheet93", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.35 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.35 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.35 + } + }, + { + "id": "A1_sheet92", + "uuid": "5e6b2c8e-07c0-41fc-b578-91adc61473c8", + "name": "A1_sheet92", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.4 + } + }, + { + "id": "A1_sheet91", + "uuid": "231936bf-d707-444a-91e4-727584e50839", + "name": "A1_sheet91", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.45 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.45 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.45 + } + }, + { + "id": "A1_sheet90", + "uuid": "f4775de2-a944-4f20-8751-15674d1e8c78", + "name": "A1_sheet90", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.5 + } + }, + { + "id": "A1_sheet89", + "uuid": "a4277371-6237-495a-8819-a4e7fa751ce2", + "name": "A1_sheet89", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.55 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.55 + } + }, + { + "id": "A1_sheet88", + "uuid": "bd5d023d-ae53-4a10-a409-14ee57e8bb49", + "name": "A1_sheet88", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.6 + } + }, + { + "id": "A1_sheet87", + "uuid": "071681ff-64ae-43ba-91c6-15fa04a9704d", + "name": "A1_sheet87", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.65 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.65 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.65 + } + }, + { + "id": "A1_sheet86", + "uuid": "9c5e564a-f3e9-4080-b939-07c129445ea9", + "name": "A1_sheet86", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.7 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.7 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.7 + } + }, + { + "id": "A1_sheet85", + "uuid": "21f900f7-d3b6-4222-8acc-a2b6907e1eec", + "name": "A1_sheet85", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.75 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.75 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.75 + } + }, + { + "id": "A1_sheet84", + "uuid": "4479cb09-2349-494f-a186-26332329c5ce", + "name": "A1_sheet84", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.8 + } + }, + { + "id": "A1_sheet83", + "uuid": "c5439cb0-2319-4323-bdaa-b1f883d4d8f7", + "name": "A1_sheet83", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.85 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.85 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.85 + } + }, + { + "id": "A1_sheet82", + "uuid": "ea62b124-a089-460b-a89a-4a06e3fb6181", + "name": "A1_sheet82", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.9 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.9 + } + }, + { + "id": "A1_sheet81", + "uuid": "eb7986bf-c927-4a5b-af37-153085117733", + "name": "A1_sheet81", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.95 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.95 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.95 + } + }, + { + "id": "A1_sheet80", + "uuid": "bbd51c76-abd2-4fe5-9c78-18e989f7cbb3", + "name": "A1_sheet80", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + }, + { + "id": "A1_sheet79", + "uuid": "4558add2-41ff-46b1-be46-5b3ed47041ae", + "name": "A1_sheet79", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.05 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 1.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.05 + } + }, + { + "id": "A1_sheet78", + "uuid": "c7c356ab-e833-4533-b40b-3d8d04edd801", + "name": "A1_sheet78", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.1 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 1.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.1 + } + }, + { + "id": "A1_sheet77", + "uuid": "2f0f6f7b-e7cc-467d-a778-d49827cdd4b6", + "name": "A1_sheet77", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.15 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 1.15 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.15 + } + }, + { + "id": "A1_sheet76", + "uuid": "3c54f1c8-bc17-4efc-b3c5-39fe0d29bfaa", + "name": "A1_sheet76", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 1.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.2 + } + }, + { + "id": "A1_sheet75", + "uuid": "a6e8efc4-9c3e-46d6-9486-cda3432ab586", + "name": "A1_sheet75", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.25 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 1.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.25 + } + }, + { + "id": "A1_sheet74", + "uuid": "737e0668-90ab-4ada-ad69-c1a4229b4611", + "name": "A1_sheet74", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.3 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 1.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.3 + } + }, + { + "id": "A1_sheet73", + "uuid": "42635e3a-b1f2-4105-b7da-acfb94ce93db", + "name": "A1_sheet73", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.35 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 1.35 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.35 + } + }, + { + "id": "A1_sheet72", + "uuid": "619cc986-78e0-4dd9-9e71-5f741f7d2dd4", + "name": "A1_sheet72", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 1.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.4 + } + }, + { + "id": "A1_sheet71", + "uuid": "7124935c-7368-4ff3-9ae7-f394d20b004a", + "name": "A1_sheet71", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.45 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 1.45 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.45 + } + }, + { + "id": "A1_sheet70", + "uuid": "98faab1f-a8fe-4783-a11c-27ae5f638f47", + "name": "A1_sheet70", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 1.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.5 + } + }, + { + "id": "A1_sheet69", + "uuid": "022b7561-67f6-4cb3-9b19-c55dc89e12a4", + "name": "A1_sheet69", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.55 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 1.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.55 + } + }, + { + "id": "A1_sheet68", + "uuid": "47b59c9d-57d7-425e-8ac3-c019d247e83f", + "name": "A1_sheet68", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 1.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.6 + } + }, + { + "id": "A1_sheet67", + "uuid": "cacf0e48-327b-4617-b183-d8f50a12b8ec", + "name": "A1_sheet67", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.65 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 1.65 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.65 + } + }, + { + "id": "A1_sheet66", + "uuid": "a7969fd9-9df3-45c4-9afd-9f1f165527f3", + "name": "A1_sheet66", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.7 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 1.7 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.7 + } + }, + { + "id": "A1_sheet65", + "uuid": "e0660c66-09dd-4264-8392-7411542901ec", + "name": "A1_sheet65", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.75 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 1.75 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.75 + } + }, + { + "id": "A1_sheet64", + "uuid": "ccbf16fb-4a43-4962-936f-ecb70c7a9b62", + "name": "A1_sheet64", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 1.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.8 + } + }, + { + "id": "A1_sheet63", + "uuid": "1255873d-b942-4714-bce8-81a744236006", + "name": "A1_sheet63", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.85 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 1.85 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.85 + } + }, + { + "id": "A1_sheet62", + "uuid": "51d86ac4-f6e1-474b-8e4a-8db8a3feff22", + "name": "A1_sheet62", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.9 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 1.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.9 + } + }, + { + "id": "A1_sheet61", + "uuid": "f296de64-431f-4a40-b1c4-3d0edc95bd0d", + "name": "A1_sheet61", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.95 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 1.95 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.95 + } + }, + { + "id": "A1_sheet60", + "uuid": "b9ae4cb1-ff2a-4297-861c-754d0802912a", + "name": "A1_sheet60", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + } + }, + { + "id": "A1_sheet59", + "uuid": "87f76462-c076-4953-947c-91dca798e07c", + "name": "A1_sheet59", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.05 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 2.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.05 + } + }, + { + "id": "A1_sheet58", + "uuid": "850a8cf6-5b6d-403e-b07d-dd92d76db74b", + "name": "A1_sheet58", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.1 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.1 + } + }, + { + "id": "A1_sheet57", + "uuid": "ae029081-482f-4a61-82b3-6cd8d12ca6e5", + "name": "A1_sheet57", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.15 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 2.15 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.15 + } + }, + { + "id": "A1_sheet56", + "uuid": "3f1c196b-be48-4db6-8609-c8084bdaa410", + "name": "A1_sheet56", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 2.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.2 + } + }, + { + "id": "A1_sheet55", + "uuid": "8b51c78e-ab68-4071-94ed-148385b01cf1", + "name": "A1_sheet55", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.25 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 2.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.25 + } + }, + { + "id": "A1_sheet54", + "uuid": "9c642e2d-d688-47f2-ab08-061cce6580d9", + "name": "A1_sheet54", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.3 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 2.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.3 + } + }, + { + "id": "A1_sheet53", + "uuid": "7eb1a3c6-0785-4865-9faf-d502d7d81652", + "name": "A1_sheet53", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.35 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 2.35 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.35 + } + }, + { + "id": "A1_sheet52", + "uuid": "9412fc3e-1795-4a2b-8734-97664ea94017", + "name": "A1_sheet52", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 2.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.4 + } + }, + { + "id": "A1_sheet51", + "uuid": "105fb103-d10e-4000-a321-b7e52e46cff9", + "name": "A1_sheet51", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.45 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 2.45 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.45 + } + }, + { + "id": "A1_sheet50", + "uuid": "c6c189ff-d364-477c-aa53-48706884ec85", + "name": "A1_sheet50", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.5 + } + }, + { + "id": "A1_sheet49", + "uuid": "18a25a27-c820-404b-8ac6-d29d570fae8b", + "name": "A1_sheet49", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.55 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 2.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.55 + } + }, + { + "id": "A1_sheet48", + "uuid": "155f30be-74d3-440c-a46a-c9172415067f", + "name": "A1_sheet48", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 2.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.6 + } + }, + { + "id": "A1_sheet47", + "uuid": "04995961-c3e2-49c3-a745-3b43f4cfb01b", + "name": "A1_sheet47", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.65 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 2.65 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.65 + } + }, + { + "id": "A1_sheet46", + "uuid": "2fe90d89-aa6a-42b3-91bc-5212005dbc82", + "name": "A1_sheet46", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.7 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 2.7 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.7 + } + }, + { + "id": "A1_sheet45", + "uuid": "61555662-7ab1-453f-b006-d3ceb69475ba", + "name": "A1_sheet45", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.75 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 2.75 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.75 + } + }, + { + "id": "A1_sheet44", + "uuid": "d6e7fb5f-2fdf-4759-93c1-013756ecf135", + "name": "A1_sheet44", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.8 + } + }, + { + "id": "A1_sheet43", + "uuid": "4f7ba150-0e65-43ad-a76a-d7b52eff7be8", + "name": "A1_sheet43", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.85 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 2.85 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.85 + } + }, + { + "id": "A1_sheet42", + "uuid": "aa7d5584-9a28-4bbe-8ae7-cbb936794e47", + "name": "A1_sheet42", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.9 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 2.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.9 + } + }, + { + "id": "A1_sheet41", + "uuid": "19d449ad-437c-4db4-903b-d782a1ce07b8", + "name": "A1_sheet41", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.95 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 2.95 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.95 + } + }, + { + "id": "A1_sheet40", + "uuid": "b6a1ff76-9289-4a85-850a-4164d504b8af", + "name": "A1_sheet40", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.0 + } + }, + { + "id": "A1_sheet39", + "uuid": "cf9948ec-2544-485c-a47e-ec452d3c31b6", + "name": "A1_sheet39", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.05 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 3.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.05 + } + }, + { + "id": "A1_sheet38", + "uuid": "d5643bab-10b4-4cc3-96ed-f88483f326c7", + "name": "A1_sheet38", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.1 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 3.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.1 + } + }, + { + "id": "A1_sheet37", + "uuid": "8b536132-d371-49ea-8eee-1136d6b50f36", + "name": "A1_sheet37", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.15 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 3.15 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.15 + } + }, + { + "id": "A1_sheet36", + "uuid": "c01409c8-37ee-4a12-acc9-4fa4937f7dac", + "name": "A1_sheet36", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 3.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.2 + } + }, + { + "id": "A1_sheet35", + "uuid": "9a921698-25ca-472e-88f6-f797b1335a85", + "name": "A1_sheet35", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.25 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 3.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.25 + } + }, + { + "id": "A1_sheet34", + "uuid": "e48543b8-722e-4f80-947b-03e9f1435392", + "name": "A1_sheet34", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.3 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 3.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.3 + } + }, + { + "id": "A1_sheet33", + "uuid": "99003124-fbb1-47b4-bbb3-013e2d4a6e4e", + "name": "A1_sheet33", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.35 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 3.35 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.35 + } + }, + { + "id": "A1_sheet32", + "uuid": "bb50aec9-1883-4f4a-b902-0d199d798d38", + "name": "A1_sheet32", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 3.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.4 + } + }, + { + "id": "A1_sheet31", + "uuid": "56afc9aa-c57d-4ee3-9b6d-990d340fc6de", + "name": "A1_sheet31", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.45 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 3.45 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.45 + } + }, + { + "id": "A1_sheet30", + "uuid": "d0e51c72-8573-4c1b-84af-c141f694a70b", + "name": "A1_sheet30", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.5 + } + }, + { + "id": "A1_sheet29", + "uuid": "63a7927f-73dd-47df-9073-6a746c545e07", + "name": "A1_sheet29", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.55 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 3.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.55 + } + }, + { + "id": "A1_sheet28", + "uuid": "052d287a-8c2c-4dcb-8c42-75d724650b9f", + "name": "A1_sheet28", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 3.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.6 + } + }, + { + "id": "A1_sheet27", + "uuid": "79ff194b-4bd5-4212-88ce-a035a6d5977e", + "name": "A1_sheet27", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.65 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 3.65 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.65 + } + }, + { + "id": "A1_sheet26", + "uuid": "f89c0eca-c8f5-457e-a482-99937b0a897e", + "name": "A1_sheet26", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.7 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 3.7 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.7 + } + }, + { + "id": "A1_sheet25", + "uuid": "10bc57ff-0f1a-4b1e-b19d-d6f4cea2df25", + "name": "A1_sheet25", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.75 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 3.75 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.75 + } + }, + { + "id": "A1_sheet24", + "uuid": "770d08ad-d093-44f6-821d-03d44144bb5b", + "name": "A1_sheet24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 3.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.8 + } + }, + { + "id": "A1_sheet23", + "uuid": "2998e1c8-4af0-4a60-b6f6-5867f15687fa", + "name": "A1_sheet23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.85 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 3.85 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.85 + } + }, + { + "id": "A1_sheet22", + "uuid": "6189a20a-2949-42e9-9b75-90abbe89d24d", + "name": "A1_sheet22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.9 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 3.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.9 + } + }, + { + "id": "A1_sheet21", + "uuid": "267378b8-e60e-4f41-b2ce-3aa6e33a2a4c", + "name": "A1_sheet21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.95 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 3.95 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.95 + } + }, + { + "id": "A1_sheet20", + "uuid": "3d371475-9aec-4054-85d3-c0d59b57738d", + "name": "A1_sheet20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 4.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.0 + } + }, + { + "id": "A1_sheet19", + "uuid": "c49115d1-b85e-4b65-8769-2da76ad5e4c3", + "name": "A1_sheet19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.05 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 4.05 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.05 + } + }, + { + "id": "A1_sheet18", + "uuid": "a6e60d7b-1533-462e-a5cd-59294cc18d08", + "name": "A1_sheet18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.1 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 4.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.1 + } + }, + { + "id": "A1_sheet17", + "uuid": "cd39201f-2e1e-4f09-bdcf-4d8f13c2fde7", + "name": "A1_sheet17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.15 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 4.15 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.15 + } + }, + { + "id": "A1_sheet16", + "uuid": "650ad5d0-9a58-4f8d-8898-04b2a417c955", + "name": "A1_sheet16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 4.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.2 + } + }, + { + "id": "A1_sheet15", + "uuid": "154927f8-58a9-496c-8a0d-09c3b777bae7", + "name": "A1_sheet15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.25 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 4.25 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.25 + } + }, + { + "id": "A1_sheet14", + "uuid": "72c4014a-119a-4832-9c9d-ab61d2a5a1f6", + "name": "A1_sheet14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.3 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 4.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.3 + } + }, + { + "id": "A1_sheet13", + "uuid": "81df9bc5-e2ca-4f48-ae5e-f69b9e133ed7", + "name": "A1_sheet13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.35 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 4.35 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.35 + } + }, + { + "id": "A1_sheet12", + "uuid": "7be789d5-c65a-4439-9e0f-8b7efa23c0c9", + "name": "A1_sheet12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 4.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.4 + } + }, + { + "id": "A1_sheet11", + "uuid": "6057a5b9-5e73-4fa4-b388-02b67baf1355", + "name": "A1_sheet11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.45 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 4.45 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.45 + } + }, + { + "id": "A1_sheet10", + "uuid": "ee816f34-46d9-490e-b5ae-f977d7bacdd5", + "name": "A1_sheet10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 4.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.5 + } + }, + { + "id": "A1_sheet9", + "uuid": "c5feebf6-078a-421e-be9f-46ed5370b525", + "name": "A1_sheet9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.55 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 4.55 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.55 + } + }, + { + "id": "A1_sheet8", + "uuid": "631ba1c1-bfd2-4814-ab51-d4568ba2c6ef", + "name": "A1_sheet8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 4.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.6 + } + }, + { + "id": "A1_sheet7", + "uuid": "8ad0a453-a92c-475b-ad36-1d5f20381c53", + "name": "A1_sheet7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.65 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 4.65 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.65 + } + }, + { + "id": "A1_sheet6", + "uuid": "374e6623-b386-4156-93c4-94097af2eea6", + "name": "A1_sheet6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.7 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 4.7 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.7 + } + }, + { + "id": "A1_sheet5", + "uuid": "4ee2d2e8-f99f-40e5-acd8-5f4a7427f2e3", + "name": "A1_sheet5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.75 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 4.75 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.75 + } + }, + { + "id": "A1_sheet4", + "uuid": "03a6bb7b-8cd3-4734-a2d6-f6d0fc92145d", + "name": "A1_sheet4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 4.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.8 + } + }, + { + "id": "A1_sheet3", + "uuid": "90bacfc0-22bb-4cb0-87cc-91e36e660e76", + "name": "A1_sheet3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.85 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 4.85 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.85 + } + }, + { + "id": "A1_sheet2", + "uuid": "bf44c124-58db-475f-ae17-a8d0b3ecca28", + "name": "A1_sheet2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.9 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 4.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.9 + } + }, + { + "id": "A1_sheet1", + "uuid": "2d65d5c9-c00d-4a74-af07-5964e2ab420c", + "name": "A1_sheet1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b3cf54d3-0e8d-4b16-8609-fd374c62dbf7", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.05, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.95 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 4.95 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.05, + "category": "electrode_sheet", + "model": "AluminumFoil", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.95 + } + }, + { + "id": "正极&铝箔弹夹_正极&铝箔弹夹-1", + "uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "name": "正极&铝箔弹夹_正极&铝箔弹夹-1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6b0c4306-5125-4eed-b85a-15348a5310a9", + "type": "resource_group", + "class": "", + "pose": { + "size": { + "depth": 9.99999999999998, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 45.5, + "y": 20.5, + "z": 0.0 + }, + "position3d": { + "x": 45.5, + "y": 20.5, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Magazine", + "size_x": 10, + "size_y": 10, + "size_z": 9.99999999999998, + "category": "resource_group", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_sheets": 100 + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 45.5, + "y": 20.5, + "z": 0.0 + } + }, + { + "id": "A2_sheet100", + "uuid": "2bce270f-0f0e-407a-bcf7-328991b4da23", + "name": "A2_sheet100", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "A2_sheet99", + "uuid": "d54df9b9-292f-4ed0-922e-303183a0f029", + "name": "A2_sheet99", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.1 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.1 + } + }, + { + "id": "A2_sheet98", + "uuid": "bc7ecb47-c8a2-4c43-8992-30e2e31f41cf", + "name": "A2_sheet98", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.2 + } + }, + { + "id": "A2_sheet97", + "uuid": "784b3cb9-1473-4a08-b526-f7859be65fb8", + "name": "A2_sheet97", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.3 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.3 + } + }, + { + "id": "A2_sheet96", + "uuid": "22e5f65c-a0e2-48ec-9bbc-302d23bddac5", + "name": "A2_sheet96", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.4 + } + }, + { + "id": "A2_sheet95", + "uuid": "92ffc64e-b2c8-45ae-af09-ba4682cefa29", + "name": "A2_sheet95", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.5 + } + }, + { + "id": "A2_sheet94", + "uuid": "4a6a5acb-4669-4ae4-a901-fbdffa2c7663", + "name": "A2_sheet94", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.6 + } + }, + { + "id": "A2_sheet93", + "uuid": "771801bf-ff24-4544-81cd-c3826f1c0625", + "name": "A2_sheet93", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.7 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.7 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.7 + } + }, + { + "id": "A2_sheet92", + "uuid": "7561a240-b7d9-4e9f-9642-2328cb6e9cab", + "name": "A2_sheet92", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.8 + } + }, + { + "id": "A2_sheet91", + "uuid": "03ad5aaa-212a-497b-a15e-99926bfb8594", + "name": "A2_sheet91", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.9 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.9 + } + }, + { + "id": "A2_sheet90", + "uuid": "8485a8b3-0060-4d54-a086-2189abd7e41a", + "name": "A2_sheet90", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + }, + { + "id": "A2_sheet89", + "uuid": "cf46fade-cfe7-4647-9e22-d2bfcd274137", + "name": "A2_sheet89", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.1 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 1.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.1 + } + }, + { + "id": "A2_sheet88", + "uuid": "d766b228-09e1-4ab6-820d-e5859618832e", + "name": "A2_sheet88", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 1.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.2 + } + }, + { + "id": "A2_sheet87", + "uuid": "66b18927-ea00-4a59-a726-d3d17e62e7b7", + "name": "A2_sheet87", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.3 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 1.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.3 + } + }, + { + "id": "A2_sheet86", + "uuid": "aa756118-67c8-4d60-9250-cdd1867138d8", + "name": "A2_sheet86", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 1.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.4 + } + }, + { + "id": "A2_sheet85", + "uuid": "ae165b80-b511-4a0a-bc6d-b1b637e5a411", + "name": "A2_sheet85", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 1.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.5 + } + }, + { + "id": "A2_sheet84", + "uuid": "73b3c707-3d78-4aec-aece-e78c4ffcc98f", + "name": "A2_sheet84", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 1.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.6 + } + }, + { + "id": "A2_sheet83", + "uuid": "078c50f7-1dcf-47cb-9545-e0372cc0cad0", + "name": "A2_sheet83", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.7 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 1.7 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.7 + } + }, + { + "id": "A2_sheet82", + "uuid": "d2d6a287-2a89-4e5f-a8a2-b649324f47f9", + "name": "A2_sheet82", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 1.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.8 + } + }, + { + "id": "A2_sheet81", + "uuid": "6690c033-a070-48b1-82d3-82562e7b455a", + "name": "A2_sheet81", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.9 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 1.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.9 + } + }, + { + "id": "A2_sheet80", + "uuid": "5f747ced-6e4e-4b35-af7f-a3256157259d", + "name": "A2_sheet80", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + } + }, + { + "id": "A2_sheet79", + "uuid": "b97834be-3546-42a1-b366-9ae63df9e793", + "name": "A2_sheet79", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.1 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.1 + } + }, + { + "id": "A2_sheet78", + "uuid": "2995c459-d72c-4e92-8744-f1907e75407a", + "name": "A2_sheet78", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 2.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.2 + } + }, + { + "id": "A2_sheet77", + "uuid": "228bb04e-4913-4921-96ba-bfb26d2fcd05", + "name": "A2_sheet77", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.3 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 2.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.3 + } + }, + { + "id": "A2_sheet76", + "uuid": "49d4bfc1-affb-4d02-9b32-a4907cf56535", + "name": "A2_sheet76", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 2.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.4 + } + }, + { + "id": "A2_sheet75", + "uuid": "f306de3a-c2d0-4089-9d17-e72093d7016a", + "name": "A2_sheet75", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.5 + } + }, + { + "id": "A2_sheet74", + "uuid": "676f2808-268c-4785-bd6b-64494c231f4f", + "name": "A2_sheet74", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 2.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.6 + } + }, + { + "id": "A2_sheet73", + "uuid": "59972d08-c100-4386-9871-c72ab136f5f6", + "name": "A2_sheet73", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.7 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 2.7 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.7 + } + }, + { + "id": "A2_sheet72", + "uuid": "55f393bd-0cf1-4967-a913-fee4b9789d51", + "name": "A2_sheet72", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.8 + } + }, + { + "id": "A2_sheet71", + "uuid": "38528b15-5cc5-461e-82e4-e9e4499d49e0", + "name": "A2_sheet71", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.9 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 2.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.9 + } + }, + { + "id": "A2_sheet70", + "uuid": "8c713958-4387-4c96-aae1-2bb5a6a682ca", + "name": "A2_sheet70", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.0 + } + }, + { + "id": "A2_sheet69", + "uuid": "af83f94f-e95e-416a-89c2-03b913897ff9", + "name": "A2_sheet69", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.1 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 3.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.1 + } + }, + { + "id": "A2_sheet68", + "uuid": "81f2e44f-754d-4d12-bc8b-836eba3ed143", + "name": "A2_sheet68", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 3.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.2 + } + }, + { + "id": "A2_sheet67", + "uuid": "e012790a-cb8b-4b10-939a-4bfc5ac88922", + "name": "A2_sheet67", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.3 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 3.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.3 + } + }, + { + "id": "A2_sheet66", + "uuid": "9e75593c-20b9-4d6e-938d-73e24b504e82", + "name": "A2_sheet66", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 3.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.4 + } + }, + { + "id": "A2_sheet65", + "uuid": "b45c00d0-fbcf-441f-a430-1fa03121f278", + "name": "A2_sheet65", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.5 + } + }, + { + "id": "A2_sheet64", + "uuid": "ab0e06bd-3a72-4c0f-b556-8bb8c5fc8b44", + "name": "A2_sheet64", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 3.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.6 + } + }, + { + "id": "A2_sheet63", + "uuid": "970c4472-8d88-4238-8c30-c3823a9f2121", + "name": "A2_sheet63", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.7 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 3.7 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.7 + } + }, + { + "id": "A2_sheet62", + "uuid": "c5f5d7ba-ac13-4222-86ec-62b1d50aaeac", + "name": "A2_sheet62", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 3.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.8 + } + }, + { + "id": "A2_sheet61", + "uuid": "73a6f387-f083-4820-a2f2-dee29a4a86a1", + "name": "A2_sheet61", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.9 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 3.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.9 + } + }, + { + "id": "A2_sheet60", + "uuid": "53273d41-41ac-4288-bcb7-e3bad8329959", + "name": "A2_sheet60", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 4.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.0 + } + }, + { + "id": "A2_sheet59", + "uuid": "83c2b8d4-e027-4ffc-8209-1481afbb70dd", + "name": "A2_sheet59", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.1 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 4.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.1 + } + }, + { + "id": "A2_sheet58", + "uuid": "4dabdcbf-2423-43ec-a944-786e1bd3dcdb", + "name": "A2_sheet58", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 4.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.2 + } + }, + { + "id": "A2_sheet57", + "uuid": "c3686bbb-b289-44dc-98d1-e914c1b42232", + "name": "A2_sheet57", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.3 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 4.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.3 + } + }, + { + "id": "A2_sheet56", + "uuid": "70e47e3c-8bda-49d9-9886-9a50cccb878b", + "name": "A2_sheet56", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 4.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.4 + } + }, + { + "id": "A2_sheet55", + "uuid": "a447a7de-744c-49c2-9a32-6928479f720a", + "name": "A2_sheet55", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 4.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.5 + } + }, + { + "id": "A2_sheet54", + "uuid": "63385899-6d01-400d-803a-b0684a4bd948", + "name": "A2_sheet54", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 4.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.6 + } + }, + { + "id": "A2_sheet53", + "uuid": "09eabd4a-9098-4572-aca8-96d8130fa01d", + "name": "A2_sheet53", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.7 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 4.7 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.7 + } + }, + { + "id": "A2_sheet52", + "uuid": "f59b7dc1-47c6-4bff-88a8-1e48e956be0d", + "name": "A2_sheet52", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 4.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.8 + } + }, + { + "id": "A2_sheet51", + "uuid": "76ea0fbf-c961-4600-97f4-bdfbe922ccb2", + "name": "A2_sheet51", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.9 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 4.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.9 + } + }, + { + "id": "A2_sheet50", + "uuid": "115378ea-b10b-40b9-954b-842b5534751b", + "name": "A2_sheet50", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + } + }, + { + "id": "A2_sheet49", + "uuid": "afd3d9e6-bfda-483b-a381-afe3a5680c57", + "name": "A2_sheet49", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.1 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 5.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.1 + } + }, + { + "id": "A2_sheet48", + "uuid": "ad2f9c3c-be2e-40d4-be5b-a32015d9eb84", + "name": "A2_sheet48", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 5.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.2 + } + }, + { + "id": "A2_sheet47", + "uuid": "d994debf-e248-42b0-a945-fae3bcf4101f", + "name": "A2_sheet47", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.3 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 5.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.3 + } + }, + { + "id": "A2_sheet46", + "uuid": "1f8eb1d7-c205-4005-abb5-65c2945de9c8", + "name": "A2_sheet46", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 5.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.4 + } + }, + { + "id": "A2_sheet45", + "uuid": "0841eefd-3c74-497f-ab63-efc356ec3ee8", + "name": "A2_sheet45", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 5.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.5 + } + }, + { + "id": "A2_sheet44", + "uuid": "6d4e9761-a334-486d-b6bd-52110a0a7403", + "name": "A2_sheet44", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 5.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.6 + } + }, + { + "id": "A2_sheet43", + "uuid": "0e285dca-8b5b-4472-a167-764ab2a09c7f", + "name": "A2_sheet43", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.7 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 5.7 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.7 + } + }, + { + "id": "A2_sheet42", + "uuid": "33e1bb2e-0e4f-446b-99b2-149007d0899d", + "name": "A2_sheet42", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 5.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.8 + } + }, + { + "id": "A2_sheet41", + "uuid": "0d0e54ce-c41f-432a-907e-be9d134fa42a", + "name": "A2_sheet41", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.9 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 5.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.9 + } + }, + { + "id": "A2_sheet40", + "uuid": "7f938d02-31fc-4a2b-af74-55a27d10d3dc", + "name": "A2_sheet40", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.0 + } + }, + { + "id": "A2_sheet39", + "uuid": "6df1d104-7fe3-441a-8db9-4ed27a254486", + "name": "A2_sheet39", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.1 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 6.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.1 + } + }, + { + "id": "A2_sheet38", + "uuid": "b1212d86-7a13-4d2a-9c69-c60ce59c0297", + "name": "A2_sheet38", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 6.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.2 + } + }, + { + "id": "A2_sheet37", + "uuid": "da41eb44-53e2-4995-b9fc-89ccc15ab1a5", + "name": "A2_sheet37", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.3 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 6.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.3 + } + }, + { + "id": "A2_sheet36", + "uuid": "6902976d-2053-447e-9e13-ebd4b2507919", + "name": "A2_sheet36", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 6.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.4 + } + }, + { + "id": "A2_sheet35", + "uuid": "747db9b9-bbcc-422f-bd85-ad05da2cdc96", + "name": "A2_sheet35", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 6.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.5 + } + }, + { + "id": "A2_sheet34", + "uuid": "2ced23b5-78b1-4785-a9fc-249f778feff6", + "name": "A2_sheet34", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 6.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.6 + } + }, + { + "id": "A2_sheet33", + "uuid": "6702fc0b-b13a-4843-8638-7cf6d72a2694", + "name": "A2_sheet33", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.7 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 6.7 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.7 + } + }, + { + "id": "A2_sheet32", + "uuid": "6f527ddb-d3bc-4aed-afcb-9ccb18af5b8f", + "name": "A2_sheet32", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 6.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.8 + } + }, + { + "id": "A2_sheet31", + "uuid": "820e4e77-3f93-46dc-9c4d-5d8342c0e0a7", + "name": "A2_sheet31", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.9 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 6.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.9 + } + }, + { + "id": "A2_sheet30", + "uuid": "6bdb50b4-8d6a-4a12-ae2a-4628f8237f62", + "name": "A2_sheet30", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 7.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.0 + } + }, + { + "id": "A2_sheet29", + "uuid": "f4c285ed-3607-46ad-97a1-97d1595b0597", + "name": "A2_sheet29", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.1 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 7.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.1 + } + }, + { + "id": "A2_sheet28", + "uuid": "74aadc98-a88d-431b-850a-71b01746c288", + "name": "A2_sheet28", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 7.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.2 + } + }, + { + "id": "A2_sheet27", + "uuid": "56f8ef66-32ea-4066-888c-6e973a909ef3", + "name": "A2_sheet27", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.3 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 7.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.3 + } + }, + { + "id": "A2_sheet26", + "uuid": "cfedbe8b-9695-42ce-b49b-31b4a7ac5401", + "name": "A2_sheet26", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 7.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.4 + } + }, + { + "id": "A2_sheet25", + "uuid": "6bcedce4-e881-42ad-b394-0ec70497d696", + "name": "A2_sheet25", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 7.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.5 + } + }, + { + "id": "A2_sheet24", + "uuid": "20ac8489-0dea-430c-a113-7306a2141636", + "name": "A2_sheet24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 7.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.6 + } + }, + { + "id": "A2_sheet23", + "uuid": "e13dffaa-61a4-46c4-a41a-81cfc14aedf8", + "name": "A2_sheet23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.7 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 7.7 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.7 + } + }, + { + "id": "A2_sheet22", + "uuid": "1071ba9f-6fc3-4955-9daf-db20bf8b1225", + "name": "A2_sheet22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 7.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.8 + } + }, + { + "id": "A2_sheet21", + "uuid": "d6cab014-b94b-4db5-8d32-bb26393e8561", + "name": "A2_sheet21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.9 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 7.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.9 + } + }, + { + "id": "A2_sheet20", + "uuid": "f67fa1f5-32fd-4bc6-9bd9-340ceb9b1503", + "name": "A2_sheet20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 8.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.0 + } + }, + { + "id": "A2_sheet19", + "uuid": "94ca5356-bc64-4ff4-976a-c50e6a62fc2f", + "name": "A2_sheet19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.1 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 8.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.1 + } + }, + { + "id": "A2_sheet18", + "uuid": "980cdc16-1e82-43dd-b138-947a01aeae5a", + "name": "A2_sheet18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 8.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.2 + } + }, + { + "id": "A2_sheet17", + "uuid": "687ff108-a472-4b51-b5ac-6fdc4b8b4867", + "name": "A2_sheet17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.3 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 8.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.3 + } + }, + { + "id": "A2_sheet16", + "uuid": "96407250-09b2-497e-b407-b3a2f1515011", + "name": "A2_sheet16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 8.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.4 + } + }, + { + "id": "A2_sheet15", + "uuid": "bd02c7f2-ed49-4478-a026-fc6fc1bb4e5a", + "name": "A2_sheet15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 8.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.5 + } + }, + { + "id": "A2_sheet14", + "uuid": "f6c3d0cd-82d3-4e3e-9f87-8807a01a8531", + "name": "A2_sheet14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 8.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.6 + } + }, + { + "id": "A2_sheet13", + "uuid": "80579743-0477-4b75-8057-43d72176d4ac", + "name": "A2_sheet13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.7 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 8.7 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.7 + } + }, + { + "id": "A2_sheet12", + "uuid": "9c4dfc81-2972-4a8c-82e3-127c5632eb73", + "name": "A2_sheet12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 8.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.8 + } + }, + { + "id": "A2_sheet11", + "uuid": "495d81f5-394f-4a8d-b8c0-4888d02d10f7", + "name": "A2_sheet11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.9 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 8.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.9 + } + }, + { + "id": "A2_sheet10", + "uuid": "009b2d4b-ce32-4074-96da-d1dba9123907", + "name": "A2_sheet10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 9.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.0 + } + }, + { + "id": "A2_sheet9", + "uuid": "79ed6cb8-bbf4-4fa0-9897-290a5e46afda", + "name": "A2_sheet9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.1 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 9.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.1 + } + }, + { + "id": "A2_sheet8", + "uuid": "f59208ea-3c36-4a6e-8b61-a56c9e42a26d", + "name": "A2_sheet8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 9.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.2 + } + }, + { + "id": "A2_sheet7", + "uuid": "b2be5ea8-dc80-4240-92d0-ec40c74768c7", + "name": "A2_sheet7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.3 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 9.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.3 + } + }, + { + "id": "A2_sheet6", + "uuid": "35469edc-f315-48a1-b783-aef41518120b", + "name": "A2_sheet6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 9.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.4 + } + }, + { + "id": "A2_sheet5", + "uuid": "83f282e2-be80-421a-86b9-d64e168516cb", + "name": "A2_sheet5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 9.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.5 + } + }, + { + "id": "A2_sheet4", + "uuid": "86f1dda9-f315-41a2-9897-e09dd5554cc9", + "name": "A2_sheet4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 9.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.6 + } + }, + { + "id": "A2_sheet3", + "uuid": "a9e9d626-7fec-40cb-9614-87701fd3f98d", + "name": "A2_sheet3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.7 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 9.7 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.7 + } + }, + { + "id": "A2_sheet2", + "uuid": "afd80b7f-1dec-4a46-be28-6fb781b763d7", + "name": "A2_sheet2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 9.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.8 + } + }, + { + "id": "A2_sheet1", + "uuid": "a3a7b125-4aaa-4680-9945-da5466371172", + "name": "A2_sheet1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "83985888-0809-4bb1-8db1-5e24e7cb9534", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.9 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 9.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.9 + } + }, + { + "id": "正极&铝箔弹夹_正极&铝箔弹夹-2", + "uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "name": "正极&铝箔弹夹_正极&铝箔弹夹-2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6b0c4306-5125-4eed-b85a-15348a5310a9", + "type": "resource_group", + "class": "", + "pose": { + "size": { + "depth": 9.99999999999998, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 20.5, + "y": 45.5, + "z": 0.0 + }, + "position3d": { + "x": 20.5, + "y": 45.5, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Magazine", + "size_x": 10, + "size_y": 10, + "size_z": 9.99999999999998, + "category": "resource_group", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_sheets": 100 + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 20.5, + "y": 45.5, + "z": 0.0 + } + }, + { + "id": "A3_sheet100", + "uuid": "30529e8c-23eb-461d-ae90-396b621953c2", + "name": "A3_sheet100", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "A3_sheet99", + "uuid": "f3a954d7-0460-47d0-b1a0-7addf86e34a0", + "name": "A3_sheet99", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.1 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.1 + } + }, + { + "id": "A3_sheet98", + "uuid": "2b3a93c0-9e92-4725-8266-116356d9e229", + "name": "A3_sheet98", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.2 + } + }, + { + "id": "A3_sheet97", + "uuid": "dd6285b1-3900-48b9-8f24-132e78e88b6e", + "name": "A3_sheet97", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.3 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.3 + } + }, + { + "id": "A3_sheet96", + "uuid": "5ce41089-f5bc-46af-8590-021c01f105b5", + "name": "A3_sheet96", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.4 + } + }, + { + "id": "A3_sheet95", + "uuid": "a483bf7a-94b6-407a-8a0e-4607020a5699", + "name": "A3_sheet95", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.5 + } + }, + { + "id": "A3_sheet94", + "uuid": "1e32abda-8544-4c80-9810-4e12a7d5f8e3", + "name": "A3_sheet94", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.6 + } + }, + { + "id": "A3_sheet93", + "uuid": "b74bd09a-ef5f-4bcf-9bde-84f1dc553597", + "name": "A3_sheet93", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.7 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.7 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.7 + } + }, + { + "id": "A3_sheet92", + "uuid": "b8658cab-72ae-4785-a3a4-ab0e3daa7948", + "name": "A3_sheet92", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.8 + } + }, + { + "id": "A3_sheet91", + "uuid": "7e33fcd5-a37f-432c-8ec0-eaa8a60bb931", + "name": "A3_sheet91", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.9 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.9 + } + }, + { + "id": "A3_sheet90", + "uuid": "e7ed711b-9a4f-4245-81af-1bf1c162c3ac", + "name": "A3_sheet90", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + }, + { + "id": "A3_sheet89", + "uuid": "afd40b2d-bc78-4222-8b2f-8d9edc0d7c18", + "name": "A3_sheet89", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.1 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 1.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.1 + } + }, + { + "id": "A3_sheet88", + "uuid": "daeb29ac-f8cc-4464-a47b-520f2fadda84", + "name": "A3_sheet88", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 1.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.2 + } + }, + { + "id": "A3_sheet87", + "uuid": "e6b56ee5-9476-456d-8c24-6a252bc398f9", + "name": "A3_sheet87", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.3 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 1.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.3 + } + }, + { + "id": "A3_sheet86", + "uuid": "58b24446-036e-4a35-96ef-ad7d2fff9aa6", + "name": "A3_sheet86", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 1.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.4 + } + }, + { + "id": "A3_sheet85", + "uuid": "f33978ee-0801-4a6d-b4ee-8ec6b924f175", + "name": "A3_sheet85", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 1.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.5 + } + }, + { + "id": "A3_sheet84", + "uuid": "cca59b6b-9bf5-4cc3-85e8-d586cb715c40", + "name": "A3_sheet84", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 1.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.6 + } + }, + { + "id": "A3_sheet83", + "uuid": "fa2d11d8-5bf1-4362-8851-6f14345c9a0d", + "name": "A3_sheet83", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.7 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 1.7 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.7 + } + }, + { + "id": "A3_sheet82", + "uuid": "01580eae-df90-4a4a-bbe1-e6c74611fd0d", + "name": "A3_sheet82", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 1.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.8 + } + }, + { + "id": "A3_sheet81", + "uuid": "c5e1542d-d246-40d5-8a06-9891e7297ae2", + "name": "A3_sheet81", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.9 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 1.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.9 + } + }, + { + "id": "A3_sheet80", + "uuid": "b4168d2d-55e2-45ab-b86a-074793c65588", + "name": "A3_sheet80", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + } + }, + { + "id": "A3_sheet79", + "uuid": "4e3d07a1-30f2-40e4-8e1f-f5e1abd97837", + "name": "A3_sheet79", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.1 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.1 + } + }, + { + "id": "A3_sheet78", + "uuid": "395da3c3-5db1-4b8f-8858-2afc35751b32", + "name": "A3_sheet78", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 2.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.2 + } + }, + { + "id": "A3_sheet77", + "uuid": "7fa31740-7cca-4378-988d-d1e0ce8a299e", + "name": "A3_sheet77", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.3 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 2.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.3 + } + }, + { + "id": "A3_sheet76", + "uuid": "1b00cdfb-c012-47ac-88a6-8b9c38322d11", + "name": "A3_sheet76", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 2.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.4 + } + }, + { + "id": "A3_sheet75", + "uuid": "2b8854fd-fcc6-4048-a9a3-90c490e7c9a8", + "name": "A3_sheet75", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.5 + } + }, + { + "id": "A3_sheet74", + "uuid": "13a643b0-929e-4968-8189-fac3c240a7a4", + "name": "A3_sheet74", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 2.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.6 + } + }, + { + "id": "A3_sheet73", + "uuid": "fa2e2e3b-b7c2-4b31-99cc-acc24ef3ed3b", + "name": "A3_sheet73", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.7 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 2.7 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.7 + } + }, + { + "id": "A3_sheet72", + "uuid": "28fd2ced-43bc-4d1e-b664-dba7f02d0a30", + "name": "A3_sheet72", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.8 + } + }, + { + "id": "A3_sheet71", + "uuid": "291d0ad9-e676-4f34-891d-815b70324fa8", + "name": "A3_sheet71", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.9 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 2.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.9 + } + }, + { + "id": "A3_sheet70", + "uuid": "0a1285c1-ce11-4511-88e3-f7f65e09809e", + "name": "A3_sheet70", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.0 + } + }, + { + "id": "A3_sheet69", + "uuid": "ad27d769-fade-4c4a-af0b-f5b72c7e84cd", + "name": "A3_sheet69", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.1 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 3.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.1 + } + }, + { + "id": "A3_sheet68", + "uuid": "04cff9cf-53db-4891-b9a7-c0af2804ffeb", + "name": "A3_sheet68", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 3.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.2 + } + }, + { + "id": "A3_sheet67", + "uuid": "5ca9a1c2-ffb3-429b-98e6-fbbe3cd1c57e", + "name": "A3_sheet67", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.3 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 3.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.3 + } + }, + { + "id": "A3_sheet66", + "uuid": "18703129-2064-4858-923b-92b0e71dd0cf", + "name": "A3_sheet66", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 3.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.4 + } + }, + { + "id": "A3_sheet65", + "uuid": "abfa1dca-2910-4d4d-b5d1-ae668640b461", + "name": "A3_sheet65", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.5 + } + }, + { + "id": "A3_sheet64", + "uuid": "3e560280-f662-4758-a458-f4253cbee4cc", + "name": "A3_sheet64", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 3.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.6 + } + }, + { + "id": "A3_sheet63", + "uuid": "a7192f4c-9e13-4215-8bc4-b0e76c1ff3f2", + "name": "A3_sheet63", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.7 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 3.7 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.7 + } + }, + { + "id": "A3_sheet62", + "uuid": "99f72202-10ba-4960-bc75-7a928143e4d4", + "name": "A3_sheet62", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 3.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.8 + } + }, + { + "id": "A3_sheet61", + "uuid": "f41734fb-2e13-4902-94d6-0af5ffc86d77", + "name": "A3_sheet61", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.9 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 3.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.9 + } + }, + { + "id": "A3_sheet60", + "uuid": "2d256ca1-8975-44bc-8ff7-a22dfb838560", + "name": "A3_sheet60", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 4.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.0 + } + }, + { + "id": "A3_sheet59", + "uuid": "dc89bc39-7bf6-4ca4-a9a8-c318eb1ef195", + "name": "A3_sheet59", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.1 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 4.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.1 + } + }, + { + "id": "A3_sheet58", + "uuid": "57abf303-805c-4791-b1e9-cb9d198564a1", + "name": "A3_sheet58", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 4.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.2 + } + }, + { + "id": "A3_sheet57", + "uuid": "8ac9af6f-b6a3-433c-98d4-7b63874f1b4a", + "name": "A3_sheet57", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.3 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 4.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.3 + } + }, + { + "id": "A3_sheet56", + "uuid": "9cf518f4-c3cf-4ef2-a005-9415366a18ff", + "name": "A3_sheet56", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 4.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.4 + } + }, + { + "id": "A3_sheet55", + "uuid": "42f02c49-f395-4fb6-af6e-fd215207ae0a", + "name": "A3_sheet55", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 4.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.5 + } + }, + { + "id": "A3_sheet54", + "uuid": "91c334ba-f497-4490-9e7a-900997625344", + "name": "A3_sheet54", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 4.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.6 + } + }, + { + "id": "A3_sheet53", + "uuid": "9af66b77-3d8c-4864-87da-6a942d5b18b2", + "name": "A3_sheet53", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.7 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 4.7 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.7 + } + }, + { + "id": "A3_sheet52", + "uuid": "ce0874ae-9894-4277-a693-e42f5936a0cc", + "name": "A3_sheet52", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 4.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.8 + } + }, + { + "id": "A3_sheet51", + "uuid": "31cebbae-9dad-4542-a4e1-8b7336a48041", + "name": "A3_sheet51", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.9 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 4.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.9 + } + }, + { + "id": "A3_sheet50", + "uuid": "4d19ec44-caf5-4fa3-9903-d5426d0ea8ff", + "name": "A3_sheet50", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + } + }, + { + "id": "A3_sheet49", + "uuid": "92b2f26c-116d-4c08-a360-cdfc9515e1a3", + "name": "A3_sheet49", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.1 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 5.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.1 + } + }, + { + "id": "A3_sheet48", + "uuid": "0479e2a3-7cc9-4a49-bd3b-b9e0c239f742", + "name": "A3_sheet48", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 5.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.2 + } + }, + { + "id": "A3_sheet47", + "uuid": "9ff519b4-d08a-46ed-a752-241ef9971098", + "name": "A3_sheet47", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.3 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 5.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.3 + } + }, + { + "id": "A3_sheet46", + "uuid": "3111e112-e976-436f-a920-4550f507d4bb", + "name": "A3_sheet46", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 5.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.4 + } + }, + { + "id": "A3_sheet45", + "uuid": "bd29f7aa-763e-4143-9e0a-d339f189d553", + "name": "A3_sheet45", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 5.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.5 + } + }, + { + "id": "A3_sheet44", + "uuid": "72310e49-ba80-4faa-b6bc-93795e0c3833", + "name": "A3_sheet44", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 5.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.6 + } + }, + { + "id": "A3_sheet43", + "uuid": "eb502fa1-823c-4166-8252-54d2e1053418", + "name": "A3_sheet43", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.7 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 5.7 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.7 + } + }, + { + "id": "A3_sheet42", + "uuid": "ec697473-1d62-4761-8202-3653aa4ea18e", + "name": "A3_sheet42", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 5.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.8 + } + }, + { + "id": "A3_sheet41", + "uuid": "0b820bbe-539f-4a61-bf8c-9a59dd11d1db", + "name": "A3_sheet41", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.9 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 5.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.9 + } + }, + { + "id": "A3_sheet40", + "uuid": "e04ecbf2-d60d-49db-8757-33df931ca367", + "name": "A3_sheet40", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.0 + } + }, + { + "id": "A3_sheet39", + "uuid": "1df04554-3053-4eb8-a669-61c8242b4529", + "name": "A3_sheet39", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.1 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 6.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.1 + } + }, + { + "id": "A3_sheet38", + "uuid": "f97358d4-95e2-4a5e-a9db-3a5bd5cc42bc", + "name": "A3_sheet38", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 6.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.2 + } + }, + { + "id": "A3_sheet37", + "uuid": "fd868842-8887-40e5-8d00-30c6e0c9a209", + "name": "A3_sheet37", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.3 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 6.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.3 + } + }, + { + "id": "A3_sheet36", + "uuid": "056c6f91-78b2-472c-979e-7689fc14f4de", + "name": "A3_sheet36", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 6.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.4 + } + }, + { + "id": "A3_sheet35", + "uuid": "9f39dce6-84e8-443a-8086-b1f9c34a9215", + "name": "A3_sheet35", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 6.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.5 + } + }, + { + "id": "A3_sheet34", + "uuid": "6407269f-24ff-40b9-b67e-49c57fb11e27", + "name": "A3_sheet34", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 6.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.6 + } + }, + { + "id": "A3_sheet33", + "uuid": "6f96023b-6d4e-4e4d-87e1-2cac885af1a0", + "name": "A3_sheet33", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.7 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 6.7 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.7 + } + }, + { + "id": "A3_sheet32", + "uuid": "316fca6a-a9b1-4d11-875d-5fa3a9f67131", + "name": "A3_sheet32", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 6.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.8 + } + }, + { + "id": "A3_sheet31", + "uuid": "5604f5ac-b745-47c2-9dbd-4aa952a01caa", + "name": "A3_sheet31", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.9 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 6.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.9 + } + }, + { + "id": "A3_sheet30", + "uuid": "5eae1e96-9924-45bc-9915-4b3a62fddf60", + "name": "A3_sheet30", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 7.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.0 + } + }, + { + "id": "A3_sheet29", + "uuid": "61314b37-d470-4976-95b8-4080e15e5ba9", + "name": "A3_sheet29", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.1 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 7.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.1 + } + }, + { + "id": "A3_sheet28", + "uuid": "8d39124d-38f4-464f-ba40-d0946f115c04", + "name": "A3_sheet28", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 7.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.2 + } + }, + { + "id": "A3_sheet27", + "uuid": "d78f3586-c667-4bcf-90be-d273286d8d1c", + "name": "A3_sheet27", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.3 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 7.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.3 + } + }, + { + "id": "A3_sheet26", + "uuid": "feefa505-f795-49b1-94c2-d3d3cce0db8f", + "name": "A3_sheet26", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 7.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.4 + } + }, + { + "id": "A3_sheet25", + "uuid": "6b545ab2-e5c4-4a0a-b3a6-481b86e5f426", + "name": "A3_sheet25", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 7.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.5 + } + }, + { + "id": "A3_sheet24", + "uuid": "24173896-6f88-45fd-bc4a-bf4cc3377305", + "name": "A3_sheet24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 7.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.6 + } + }, + { + "id": "A3_sheet23", + "uuid": "728ef3dd-3e26-4eb8-bed4-cc2e258c249d", + "name": "A3_sheet23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.7 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 7.7 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.7 + } + }, + { + "id": "A3_sheet22", + "uuid": "2064d235-dffe-4ccb-b7a8-768f1369bd2e", + "name": "A3_sheet22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 7.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.8 + } + }, + { + "id": "A3_sheet21", + "uuid": "4fddd986-d627-4771-a630-596fbc250f96", + "name": "A3_sheet21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.9 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 7.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.9 + } + }, + { + "id": "A3_sheet20", + "uuid": "70ab6455-b292-4dab-afaf-fc97b10cd3ab", + "name": "A3_sheet20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 8.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.0 + } + }, + { + "id": "A3_sheet19", + "uuid": "dd212f60-14d3-48e7-bd05-4e0a8e3c8f99", + "name": "A3_sheet19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.1 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 8.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.1 + } + }, + { + "id": "A3_sheet18", + "uuid": "664c0e2e-9c6d-4097-a0c5-e608f582d4b4", + "name": "A3_sheet18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 8.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.2 + } + }, + { + "id": "A3_sheet17", + "uuid": "2d5035d9-f890-4c43-8371-f2c1da6d2405", + "name": "A3_sheet17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.3 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 8.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.3 + } + }, + { + "id": "A3_sheet16", + "uuid": "1974e333-e839-414d-84e5-30af967cdf43", + "name": "A3_sheet16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 8.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.4 + } + }, + { + "id": "A3_sheet15", + "uuid": "692f6971-dee4-4d41-99f4-eaa16e4c76de", + "name": "A3_sheet15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 8.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.5 + } + }, + { + "id": "A3_sheet14", + "uuid": "08fc534b-d57d-499f-8ebe-32d77d6b5646", + "name": "A3_sheet14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 8.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.6 + } + }, + { + "id": "A3_sheet13", + "uuid": "6c930e89-ee4f-4f07-b253-46f8ee4b6883", + "name": "A3_sheet13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.7 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 8.7 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.7 + } + }, + { + "id": "A3_sheet12", + "uuid": "3e9441d7-dee3-413f-8595-f8d4746031e7", + "name": "A3_sheet12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 8.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.8 + } + }, + { + "id": "A3_sheet11", + "uuid": "304b18af-049f-491c-ade7-917cbcf23646", + "name": "A3_sheet11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.9 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 8.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.9 + } + }, + { + "id": "A3_sheet10", + "uuid": "1e47b291-5d08-434a-8a5a-aea31d21ced8", + "name": "A3_sheet10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 9.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.0 + } + }, + { + "id": "A3_sheet9", + "uuid": "5ce61dcc-eca4-4f43-bd23-b88814c35a4e", + "name": "A3_sheet9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.1 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 9.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.1 + } + }, + { + "id": "A3_sheet8", + "uuid": "8c91437a-63cd-439a-bec4-2a12d400f570", + "name": "A3_sheet8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 9.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.2 + } + }, + { + "id": "A3_sheet7", + "uuid": "43b58184-2219-4ad7-b043-f761e4bcb893", + "name": "A3_sheet7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.3 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 9.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.3 + } + }, + { + "id": "A3_sheet6", + "uuid": "a8d8c29b-3eb8-4d9f-aafe-572cbad8fc49", + "name": "A3_sheet6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 9.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.4 + } + }, + { + "id": "A3_sheet5", + "uuid": "9e4b451b-bc63-4518-9075-faaae82f4cee", + "name": "A3_sheet5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 9.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.5 + } + }, + { + "id": "A3_sheet4", + "uuid": "325e81f7-08ed-4429-ab18-32ba4e5abf09", + "name": "A3_sheet4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 9.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.6 + } + }, + { + "id": "A3_sheet3", + "uuid": "06edcbeb-9b06-48ee-a201-8edc030de1b1", + "name": "A3_sheet3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.7 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 9.7 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.7 + } + }, + { + "id": "A3_sheet2", + "uuid": "7ce07ba3-1ea9-462f-83e1-421270ee70b8", + "name": "A3_sheet2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 9.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.8 + } + }, + { + "id": "A3_sheet1", + "uuid": "6fa29842-90eb-4a9b-85ed-3f79d5c6d08b", + "name": "A3_sheet1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "4c230321-ee0e-4001-b63a-387d3fb8db59", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.9 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 9.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.9 + } + }, + { + "id": "正极&铝箔弹夹_正极&铝箔弹夹-3", + "uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "name": "正极&铝箔弹夹_正极&铝箔弹夹-3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6b0c4306-5125-4eed-b85a-15348a5310a9", + "type": "resource_group", + "class": "", + "pose": { + "size": { + "depth": 9.99999999999998, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 45.5, + "y": 45.5, + "z": 0.0 + }, + "position3d": { + "x": 45.5, + "y": 45.5, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Magazine", + "size_x": 10, + "size_y": 10, + "size_z": 9.99999999999998, + "category": "resource_group", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_sheets": 100 + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 45.5, + "y": 45.5, + "z": 0.0 + } + }, + { + "id": "A4_sheet100", + "uuid": "f10b18e8-ca4f-4179-ae3c-bc9c4553ce57", + "name": "A4_sheet100", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "A4_sheet99", + "uuid": "6641c752-309e-4d7c-a5d8-c3de2682012c", + "name": "A4_sheet99", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.1 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.1 + } + }, + { + "id": "A4_sheet98", + "uuid": "417f8590-510d-48b1-a0aa-9fb6766e480c", + "name": "A4_sheet98", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.2 + } + }, + { + "id": "A4_sheet97", + "uuid": "12d70075-3f21-4cb4-9f8a-8741c2809683", + "name": "A4_sheet97", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.3 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.3 + } + }, + { + "id": "A4_sheet96", + "uuid": "853ed713-2359-41dd-ab1c-1e3daf5d843c", + "name": "A4_sheet96", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.4 + } + }, + { + "id": "A4_sheet95", + "uuid": "1ad71d4d-5aba-4c8b-a14d-514401277fbf", + "name": "A4_sheet95", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.5 + } + }, + { + "id": "A4_sheet94", + "uuid": "dd6594c3-5d79-4fa2-8c48-1a46d0cdcac4", + "name": "A4_sheet94", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.6 + } + }, + { + "id": "A4_sheet93", + "uuid": "d7a42e51-3b17-49be-8f72-45ad89f549b6", + "name": "A4_sheet93", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.7 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.7 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.7 + } + }, + { + "id": "A4_sheet92", + "uuid": "8fac5f87-6b99-4d46-80cf-f839fccf20a7", + "name": "A4_sheet92", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.8 + } + }, + { + "id": "A4_sheet91", + "uuid": "cf70a440-5c11-4fc8-8d79-78aa168ef772", + "name": "A4_sheet91", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.9 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.9 + } + }, + { + "id": "A4_sheet90", + "uuid": "c5f4b4ed-45b1-45ad-88f9-da7bb7ebbcd8", + "name": "A4_sheet90", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + }, + { + "id": "A4_sheet89", + "uuid": "1f8da4c9-74a8-4c5b-ae89-9cc10ad6c34c", + "name": "A4_sheet89", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.1 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 1.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.1 + } + }, + { + "id": "A4_sheet88", + "uuid": "16615a87-ef0a-4829-bec1-286b310a4bfe", + "name": "A4_sheet88", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 1.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.2 + } + }, + { + "id": "A4_sheet87", + "uuid": "12928245-8655-40ec-a2f4-4a5fa53aaa6e", + "name": "A4_sheet87", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.3 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 1.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.3 + } + }, + { + "id": "A4_sheet86", + "uuid": "fba76900-9263-4402-b299-b4415f9e2ceb", + "name": "A4_sheet86", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 1.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.4 + } + }, + { + "id": "A4_sheet85", + "uuid": "0ef288e5-997f-4f7a-97ef-e06a11ac5efc", + "name": "A4_sheet85", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 1.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.5 + } + }, + { + "id": "A4_sheet84", + "uuid": "0f0abbbe-e70a-4484-a71b-5fbc63582c54", + "name": "A4_sheet84", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 1.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.6 + } + }, + { + "id": "A4_sheet83", + "uuid": "9df53fcb-4de8-467a-853c-37209113c0d5", + "name": "A4_sheet83", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.7 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 1.7 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.7 + } + }, + { + "id": "A4_sheet82", + "uuid": "8f241c51-9a73-4483-ac64-6f3955651a3b", + "name": "A4_sheet82", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 1.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.8 + } + }, + { + "id": "A4_sheet81", + "uuid": "2fbd05ae-d61f-4b7b-a33d-d8af28ba4f91", + "name": "A4_sheet81", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.9 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 1.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.9 + } + }, + { + "id": "A4_sheet80", + "uuid": "b6aa8fa9-5387-46c8-bdb8-cdcdfc5b4277", + "name": "A4_sheet80", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + } + }, + { + "id": "A4_sheet79", + "uuid": "0ab55a8c-6324-464f-8f64-5d52da33e933", + "name": "A4_sheet79", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.1 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 2.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.1 + } + }, + { + "id": "A4_sheet78", + "uuid": "b1d8f72e-7c05-45e3-82c1-ecdc41a9d57d", + "name": "A4_sheet78", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 2.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.2 + } + }, + { + "id": "A4_sheet77", + "uuid": "708ef70d-2c1a-4cf6-9441-68fc2d6780f1", + "name": "A4_sheet77", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.3 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 2.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.3 + } + }, + { + "id": "A4_sheet76", + "uuid": "360e77cb-8de9-4873-9d3a-bcf2c7cd588e", + "name": "A4_sheet76", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 2.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.4 + } + }, + { + "id": "A4_sheet75", + "uuid": "6dd05a65-dad3-411d-b5cd-cdf4ff451140", + "name": "A4_sheet75", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.5 + } + }, + { + "id": "A4_sheet74", + "uuid": "42f286cf-a783-4b07-9d24-2a497e20cb5c", + "name": "A4_sheet74", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 2.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.6 + } + }, + { + "id": "A4_sheet73", + "uuid": "5e3b0776-6f19-4594-bb4d-094bb3c5cfc4", + "name": "A4_sheet73", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.7 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 2.7 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.7 + } + }, + { + "id": "A4_sheet72", + "uuid": "544ff1c4-2e15-4576-9e89-7b14b6eccfb5", + "name": "A4_sheet72", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.8 + } + }, + { + "id": "A4_sheet71", + "uuid": "c15f2b56-6acd-48ef-b9ec-24accfeae05e", + "name": "A4_sheet71", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.9 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 2.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.9 + } + }, + { + "id": "A4_sheet70", + "uuid": "43f2c8d0-a2a4-44c7-a903-21137a6463c6", + "name": "A4_sheet70", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.0 + } + }, + { + "id": "A4_sheet69", + "uuid": "2a6c8ac4-4a0c-4d34-872f-f16e8adb092b", + "name": "A4_sheet69", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.1 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 3.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.1 + } + }, + { + "id": "A4_sheet68", + "uuid": "740ccf44-8460-4f9e-910b-51150ed87413", + "name": "A4_sheet68", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 3.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.2 + } + }, + { + "id": "A4_sheet67", + "uuid": "67b5632f-ad21-4105-aec0-d6df7c4f7e9d", + "name": "A4_sheet67", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.3 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 3.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.3 + } + }, + { + "id": "A4_sheet66", + "uuid": "9f1af12f-16c3-475b-8d7d-c6f5d180baae", + "name": "A4_sheet66", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 3.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.4 + } + }, + { + "id": "A4_sheet65", + "uuid": "ba6d80ab-a282-4718-845d-5c9ee17be250", + "name": "A4_sheet65", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.5 + } + }, + { + "id": "A4_sheet64", + "uuid": "4959556b-298f-41cf-b831-75ce0fe56305", + "name": "A4_sheet64", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 3.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.6 + } + }, + { + "id": "A4_sheet63", + "uuid": "407edc49-7d62-41bf-bcfe-24a0877c3a36", + "name": "A4_sheet63", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.7 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 3.7 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.7 + } + }, + { + "id": "A4_sheet62", + "uuid": "33122bfb-c098-464f-b44a-833473ce083c", + "name": "A4_sheet62", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 3.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.8 + } + }, + { + "id": "A4_sheet61", + "uuid": "15c15162-cce6-46fe-94ea-9dff4dba8112", + "name": "A4_sheet61", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.9 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 3.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.9 + } + }, + { + "id": "A4_sheet60", + "uuid": "0610e1db-9e96-4805-8d99-8e982355d93a", + "name": "A4_sheet60", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 4.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.0 + } + }, + { + "id": "A4_sheet59", + "uuid": "8c93c32e-837f-413d-98bf-74fee1213a34", + "name": "A4_sheet59", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.1 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 4.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.1 + } + }, + { + "id": "A4_sheet58", + "uuid": "d8660807-2f03-4979-9ed5-888203956a74", + "name": "A4_sheet58", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 4.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.2 + } + }, + { + "id": "A4_sheet57", + "uuid": "50ba6b53-257d-4e12-9288-073dc16dae24", + "name": "A4_sheet57", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.3 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 4.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.3 + } + }, + { + "id": "A4_sheet56", + "uuid": "8fe69254-24ad-40fa-9f85-87b526bf3cf4", + "name": "A4_sheet56", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 4.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.4 + } + }, + { + "id": "A4_sheet55", + "uuid": "48e15329-7c0a-40b2-b3da-b2a5d6460c3e", + "name": "A4_sheet55", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 4.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.5 + } + }, + { + "id": "A4_sheet54", + "uuid": "392d696e-757d-42bb-9337-4084a6306966", + "name": "A4_sheet54", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 4.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.6 + } + }, + { + "id": "A4_sheet53", + "uuid": "cb25dbe7-9b1b-4499-b567-b9afb2a73701", + "name": "A4_sheet53", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.7 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 4.7 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.7 + } + }, + { + "id": "A4_sheet52", + "uuid": "8c616bfb-9b34-492f-9f23-060bbea728f0", + "name": "A4_sheet52", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 4.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.8 + } + }, + { + "id": "A4_sheet51", + "uuid": "a0e135fa-024e-4b03-9c5a-e0d8ba4d26bf", + "name": "A4_sheet51", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.9 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 4.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.9 + } + }, + { + "id": "A4_sheet50", + "uuid": "070973f8-25d1-43b2-a5a2-5f5a0b80790a", + "name": "A4_sheet50", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + } + }, + { + "id": "A4_sheet49", + "uuid": "5cada731-0d1d-4df2-aee9-ca9665ad4728", + "name": "A4_sheet49", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.1 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 5.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.1 + } + }, + { + "id": "A4_sheet48", + "uuid": "55a5b946-80e1-4bfa-a4a6-d11a28d97d51", + "name": "A4_sheet48", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 5.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.2 + } + }, + { + "id": "A4_sheet47", + "uuid": "c6c9c4ef-52e6-4cb3-adb8-9ed6093f474a", + "name": "A4_sheet47", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.3 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 5.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.3 + } + }, + { + "id": "A4_sheet46", + "uuid": "4ff17350-d2f4-4431-975c-6f58771b0067", + "name": "A4_sheet46", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 5.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.4 + } + }, + { + "id": "A4_sheet45", + "uuid": "10a5bab7-dcac-4fad-94de-270c97491bb1", + "name": "A4_sheet45", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 5.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.5 + } + }, + { + "id": "A4_sheet44", + "uuid": "6cad949e-cbf1-4a69-a620-7a9df1694c1e", + "name": "A4_sheet44", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 5.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.6 + } + }, + { + "id": "A4_sheet43", + "uuid": "48f81635-d905-4a3f-a841-663db414585e", + "name": "A4_sheet43", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.7 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 5.7 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.7 + } + }, + { + "id": "A4_sheet42", + "uuid": "86106714-5fd7-4c4d-8acd-ad6e7e42314b", + "name": "A4_sheet42", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 5.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.8 + } + }, + { + "id": "A4_sheet41", + "uuid": "e4d399e6-fb7e-463c-94a8-bc593f72deb4", + "name": "A4_sheet41", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.9 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 5.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.9 + } + }, + { + "id": "A4_sheet40", + "uuid": "e40cbee4-0e17-4fb5-aaed-7a6e58f85ef0", + "name": "A4_sheet40", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.0 + } + }, + { + "id": "A4_sheet39", + "uuid": "b522e793-85ea-4b0b-a8b4-e520a9a46e1d", + "name": "A4_sheet39", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.1 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 6.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.1 + } + }, + { + "id": "A4_sheet38", + "uuid": "712d1b61-8fff-44ae-8aec-7f35edc7dbd8", + "name": "A4_sheet38", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 6.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.2 + } + }, + { + "id": "A4_sheet37", + "uuid": "d1e83c2b-a911-42de-b28f-9156bbcfe2da", + "name": "A4_sheet37", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.3 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 6.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.3 + } + }, + { + "id": "A4_sheet36", + "uuid": "f3a46865-ebd6-4b41-8a63-51f4233e401a", + "name": "A4_sheet36", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 6.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.4 + } + }, + { + "id": "A4_sheet35", + "uuid": "86c6bfe3-a675-4c65-93e4-651661359e31", + "name": "A4_sheet35", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 6.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.5 + } + }, + { + "id": "A4_sheet34", + "uuid": "2795e9c1-9491-4ea0-bbb4-5668097e83d6", + "name": "A4_sheet34", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 6.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.6 + } + }, + { + "id": "A4_sheet33", + "uuid": "4ae9bf8d-b87b-4d08-931e-0aac433840d2", + "name": "A4_sheet33", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.7 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 6.7 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.7 + } + }, + { + "id": "A4_sheet32", + "uuid": "c82ce61a-7fba-4c8b-8bcb-3a70af864204", + "name": "A4_sheet32", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 6.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.8 + } + }, + { + "id": "A4_sheet31", + "uuid": "32a1a0b5-b35a-4a8a-b125-193c0941f56c", + "name": "A4_sheet31", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.9 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 6.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.9 + } + }, + { + "id": "A4_sheet30", + "uuid": "1b5f2d7e-ce58-4764-a207-4b2d129259c2", + "name": "A4_sheet30", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 7.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.0 + } + }, + { + "id": "A4_sheet29", + "uuid": "09756442-1c73-400e-88c0-66581e7d3937", + "name": "A4_sheet29", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.1 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 7.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.1 + } + }, + { + "id": "A4_sheet28", + "uuid": "8cc03c25-6d99-427c-a20d-92865cce6a95", + "name": "A4_sheet28", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 7.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.2 + } + }, + { + "id": "A4_sheet27", + "uuid": "8a8cd31e-773e-4c1f-8570-4eb99aba8e30", + "name": "A4_sheet27", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.3 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 7.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.3 + } + }, + { + "id": "A4_sheet26", + "uuid": "1d6693bf-7c7d-44a6-871d-6617be33ff9a", + "name": "A4_sheet26", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 7.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.4 + } + }, + { + "id": "A4_sheet25", + "uuid": "167fe43f-9ad5-489f-b0e0-f38a795d844b", + "name": "A4_sheet25", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 7.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.5 + } + }, + { + "id": "A4_sheet24", + "uuid": "3c455630-848f-4de7-afa8-30b031029acf", + "name": "A4_sheet24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 7.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.6 + } + }, + { + "id": "A4_sheet23", + "uuid": "2f06b95d-6f3f-48f7-aadb-96807b7e3d92", + "name": "A4_sheet23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.7 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 7.7 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.7 + } + }, + { + "id": "A4_sheet22", + "uuid": "a4444048-198c-46a9-b078-8daf7f087873", + "name": "A4_sheet22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 7.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.8 + } + }, + { + "id": "A4_sheet21", + "uuid": "166f59a6-4889-423b-b92a-ea498988000d", + "name": "A4_sheet21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.9 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 7.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.9 + } + }, + { + "id": "A4_sheet20", + "uuid": "2deff8c4-bc40-4b9c-a57a-02869844954f", + "name": "A4_sheet20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 8.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.0 + } + }, + { + "id": "A4_sheet19", + "uuid": "b5b926bf-c433-4bc9-9f70-f4e64545b936", + "name": "A4_sheet19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.1 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 8.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.1 + } + }, + { + "id": "A4_sheet18", + "uuid": "57f52cf5-1558-4283-aed8-9dfe574c0438", + "name": "A4_sheet18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 8.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.2 + } + }, + { + "id": "A4_sheet17", + "uuid": "801c044b-9518-44d0-a4e3-f305ede21640", + "name": "A4_sheet17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.3 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 8.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.3 + } + }, + { + "id": "A4_sheet16", + "uuid": "89a6773d-a522-4e85-a47e-19db6269fdcb", + "name": "A4_sheet16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 8.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.4 + } + }, + { + "id": "A4_sheet15", + "uuid": "b54813cb-b55e-42ab-b85a-f9b49d3e5079", + "name": "A4_sheet15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 8.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.5 + } + }, + { + "id": "A4_sheet14", + "uuid": "565d667a-0ca3-4db2-b267-275cc9b68eb6", + "name": "A4_sheet14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 8.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.6 + } + }, + { + "id": "A4_sheet13", + "uuid": "3f2e741a-bf61-4df0-b972-63fc9a70aac1", + "name": "A4_sheet13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.7 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 8.7 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.7 + } + }, + { + "id": "A4_sheet12", + "uuid": "690393db-f11b-4e0e-9ed0-046859e660ca", + "name": "A4_sheet12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 8.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.8 + } + }, + { + "id": "A4_sheet11", + "uuid": "086fb54c-7479-4683-9e7e-8c636a8fb750", + "name": "A4_sheet11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.9 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 8.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.9 + } + }, + { + "id": "A4_sheet10", + "uuid": "83b1615a-7aaa-4f8c-b1fe-258c013134b5", + "name": "A4_sheet10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 9.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.0 + } + }, + { + "id": "A4_sheet9", + "uuid": "47e1d4d1-26a4-4405-b078-0a41b1bde3d1", + "name": "A4_sheet9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.1 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 9.1 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.1 + } + }, + { + "id": "A4_sheet8", + "uuid": "1f091305-94e3-4343-8cff-bb70f88f8ea9", + "name": "A4_sheet8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 9.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.2 + } + }, + { + "id": "A4_sheet7", + "uuid": "e88445e3-03d7-41cb-a34e-345847b4caf0", + "name": "A4_sheet7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.3 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 9.3 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.3 + } + }, + { + "id": "A4_sheet6", + "uuid": "9a6b3608-98c5-4259-bb7a-d778e2591fcf", + "name": "A4_sheet6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 9.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.4 + } + }, + { + "id": "A4_sheet5", + "uuid": "edf78223-c5c1-4170-b7c3-28889afa850d", + "name": "A4_sheet5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 9.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.5 + } + }, + { + "id": "A4_sheet4", + "uuid": "87046ca1-ec06-45b4-be53-1bdee1db7f77", + "name": "A4_sheet4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 9.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.6 + } + }, + { + "id": "A4_sheet3", + "uuid": "fcc1dcf7-76f2-4057-b99e-1ac6ff60cc84", + "name": "A4_sheet3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.7 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 9.7 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.7 + } + }, + { + "id": "A4_sheet2", + "uuid": "44131c69-977a-441e-9874-09ba81242dba", + "name": "A4_sheet2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 9.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.8 + } + }, + { + "id": "A4_sheet1", + "uuid": "1f0df103-12a2-4277-bd38-75e7516fac11", + "name": "A4_sheet1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "95678f8b-a804-496b-ac1c-a6966df8fbe4", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.1, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.9 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 9.9 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.1, + "category": "electrode_sheet", + "model": "PositiveElectrode", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.9 + } + }, + { + "id": "正极壳&平垫片弹夹", + "uuid": "78b1893c-6249-4adb-b058-613d726064cf", + "name": "正极壳&平垫片弹夹", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "24b64c33-ddb4-409e-8b71-aa3721c52a0f", + "type": "magazine_holder", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 80.0, + "height": 80.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 566.0, + "y": 272.0, + "z": 0.0 + }, + "position3d": { + "x": 566.0, + "y": 272.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "MagazineHolder", + "size_x": 80.0, + "size_y": 80.0, + "size_z": 40.0, + "category": "magazine_holder", + "model": "MagazineHolder_6_Cathode", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "正极壳&平垫片弹夹_正极壳&平垫片弹夹-0", + "A2": "正极壳&平垫片弹夹_正极壳&平垫片弹夹-1", + "A3": "正极壳&平垫片弹夹_正极壳&平垫片弹夹-2", + "A4": "正极壳&平垫片弹夹_正极壳&平垫片弹夹-3", + "A5": "正极壳&平垫片弹夹_正极壳&平垫片弹夹-4", + "A6": "正极壳&平垫片弹夹_正极壳&平垫片弹夹-5" + }, + "hole_diameter": 14.0, + "hole_depth": 10.0, + "max_sheets_per_hole": 100 + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 566.0, + "y": 272.0, + "z": 0.0 + } + }, + { + "id": "正极壳&平垫片弹夹_正极壳&平垫片弹夹-0", + "uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "name": "正极壳&平垫片弹夹_正极壳&平垫片弹夹-0", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "78b1893c-6249-4adb-b058-613d726064cf", + "type": "resource_group", + "class": "", + "pose": { + "size": { + "depth": 19.99999999999996, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 53.0, + "y": 33.0, + "z": 30.0 + }, + "position3d": { + "x": 53.0, + "y": 33.0, + "z": 30.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Magazine", + "size_x": 10, + "size_y": 10, + "size_z": 19.99999999999996, + "category": "resource_group", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_sheets": 100 + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 53.0, + "y": 33.0, + "z": 30.0 + } + }, + { + "id": "A1_sheet100", + "uuid": "d249ccbd-ccb9-47f1-bf72-39e6f5ec642f", + "name": "A1_sheet100", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "A1_sheet99", + "uuid": "c29ff631-52d0-4cfd-bb8e-1d490351f443", + "name": "A1_sheet99", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.2 + } + }, + { + "id": "A1_sheet98", + "uuid": "900680b8-47ce-446c-98be-c9a39f585fa3", + "name": "A1_sheet98", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.4 + } + }, + { + "id": "A1_sheet97", + "uuid": "cd82c39f-130f-4d0e-bc4e-66f181864ed1", + "name": "A1_sheet97", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.6 + } + }, + { + "id": "A1_sheet96", + "uuid": "9b0adaa9-6a46-4220-b5fb-0b659f0953e3", + "name": "A1_sheet96", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.8 + } + }, + { + "id": "A1_sheet95", + "uuid": "e526feb0-1705-443a-8fa1-932562ec0dac", + "name": "A1_sheet95", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + }, + { + "id": "A1_sheet94", + "uuid": "b3b4a7f3-0f38-4cab-a2f1-1e4df915ba3e", + "name": "A1_sheet94", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 1.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.2 + } + }, + { + "id": "A1_sheet93", + "uuid": "1c17c60b-bbc3-445c-a11f-00aef800f42f", + "name": "A1_sheet93", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 1.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.4 + } + }, + { + "id": "A1_sheet92", + "uuid": "8f771e9d-814b-4f56-ad06-3a15d19c5d8e", + "name": "A1_sheet92", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 1.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.6 + } + }, + { + "id": "A1_sheet91", + "uuid": "d756defd-5798-410a-8d05-3958559ec50f", + "name": "A1_sheet91", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 1.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.8 + } + }, + { + "id": "A1_sheet90", + "uuid": "7c9e10f3-16f2-42cd-9969-9660ae960e92", + "name": "A1_sheet90", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + } + }, + { + "id": "A1_sheet89", + "uuid": "695e110a-ded8-4271-9bc8-7f98658423c2", + "name": "A1_sheet89", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 2.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.2 + } + }, + { + "id": "A1_sheet88", + "uuid": "c89fb992-09da-4c86-b21a-f63e2298f193", + "name": "A1_sheet88", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 2.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.4 + } + }, + { + "id": "A1_sheet87", + "uuid": "18c75b3c-2dfc-4a54-b879-fd56d9db8ee8", + "name": "A1_sheet87", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 2.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.6 + } + }, + { + "id": "A1_sheet86", + "uuid": "57f19d28-9794-4f84-8740-7de576de4d09", + "name": "A1_sheet86", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.8 + } + }, + { + "id": "A1_sheet85", + "uuid": "eae69d4b-21b9-45bf-8c3b-76644ffc265d", + "name": "A1_sheet85", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.0 + } + }, + { + "id": "A1_sheet84", + "uuid": "e71e1cc3-661a-47f0-b8ba-f1f958c63715", + "name": "A1_sheet84", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 3.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.2 + } + }, + { + "id": "A1_sheet83", + "uuid": "3ab9cb82-3e10-45d2-ae5d-0951e2ba98b2", + "name": "A1_sheet83", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 3.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.4 + } + }, + { + "id": "A1_sheet82", + "uuid": "733909f6-02f5-481a-982e-d019f381e345", + "name": "A1_sheet82", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 3.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.6 + } + }, + { + "id": "A1_sheet81", + "uuid": "d62826c0-ada0-445a-be64-0990039a69b9", + "name": "A1_sheet81", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 3.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.8 + } + }, + { + "id": "A1_sheet80", + "uuid": "80a28e25-93a3-4da3-be55-8b93dfe3d240", + "name": "A1_sheet80", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 4.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.0 + } + }, + { + "id": "A1_sheet79", + "uuid": "47c0f6f9-2fe1-45b5-85bb-c939cbf2ee3f", + "name": "A1_sheet79", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 4.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.2 + } + }, + { + "id": "A1_sheet78", + "uuid": "ddb02fe0-737c-46de-bb54-70c923b5832a", + "name": "A1_sheet78", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 4.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.4 + } + }, + { + "id": "A1_sheet77", + "uuid": "9a99656f-cd9f-4996-bd6d-605ed04bb546", + "name": "A1_sheet77", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 4.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.6 + } + }, + { + "id": "A1_sheet76", + "uuid": "f317aaf1-312a-4972-82c1-1af834b109b8", + "name": "A1_sheet76", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 4.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.8 + } + }, + { + "id": "A1_sheet75", + "uuid": "b7123939-8c7c-4296-97a8-c8913b370b3a", + "name": "A1_sheet75", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + } + }, + { + "id": "A1_sheet74", + "uuid": "04e12ad9-a2bb-49c0-8739-3542685831f6", + "name": "A1_sheet74", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 5.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.2 + } + }, + { + "id": "A1_sheet73", + "uuid": "2ea7e683-d706-4553-9e57-cc98b9aafe4a", + "name": "A1_sheet73", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 5.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.4 + } + }, + { + "id": "A1_sheet72", + "uuid": "3b46feb0-91ce-4aeb-a671-8b429db2192d", + "name": "A1_sheet72", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 5.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.6 + } + }, + { + "id": "A1_sheet71", + "uuid": "8f804432-86ab-4576-b036-10f2c929eb79", + "name": "A1_sheet71", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 5.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.8 + } + }, + { + "id": "A1_sheet70", + "uuid": "b2b75f32-eb47-4196-8465-846d6443acb3", + "name": "A1_sheet70", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.0 + } + }, + { + "id": "A1_sheet69", + "uuid": "98f95555-d55e-41c0-acdf-0d5550133399", + "name": "A1_sheet69", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 6.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.2 + } + }, + { + "id": "A1_sheet68", + "uuid": "bdd6be9e-b4cf-4864-84d7-de96ee23df44", + "name": "A1_sheet68", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 6.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.4 + } + }, + { + "id": "A1_sheet67", + "uuid": "6fa7d116-2ff4-41d3-ae33-6cfdefdab853", + "name": "A1_sheet67", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 6.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.6 + } + }, + { + "id": "A1_sheet66", + "uuid": "87c79e3b-3891-4006-977c-3a80eb38adfc", + "name": "A1_sheet66", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 6.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.8 + } + }, + { + "id": "A1_sheet65", + "uuid": "e2847f12-eaf1-464c-a6c5-3a5d31c3a66e", + "name": "A1_sheet65", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 7.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.0 + } + }, + { + "id": "A1_sheet64", + "uuid": "f88a2792-b6a7-4816-b6ee-d39be5790fc4", + "name": "A1_sheet64", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 7.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.2 + } + }, + { + "id": "A1_sheet63", + "uuid": "26c94643-bd03-4f9d-8ce9-77ae082b489b", + "name": "A1_sheet63", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 7.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.4 + } + }, + { + "id": "A1_sheet62", + "uuid": "4de9327e-aeca-470e-9e53-7c8dce05f23b", + "name": "A1_sheet62", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 7.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.6 + } + }, + { + "id": "A1_sheet61", + "uuid": "5c2a5d50-e233-4bb7-9454-7c68e34ecf2d", + "name": "A1_sheet61", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 7.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.8 + } + }, + { + "id": "A1_sheet60", + "uuid": "7fa87841-d8c3-48bb-be7f-a42c3526987e", + "name": "A1_sheet60", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 8.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.0 + } + }, + { + "id": "A1_sheet59", + "uuid": "9c1db4d7-f2b2-428b-b4f0-0cb76444ddf9", + "name": "A1_sheet59", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 8.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.2 + } + }, + { + "id": "A1_sheet58", + "uuid": "1ba5e9a4-9653-4df0-8090-68df7587ecc3", + "name": "A1_sheet58", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 8.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.4 + } + }, + { + "id": "A1_sheet57", + "uuid": "5670b5c0-2d2e-412e-8867-793e02d256dd", + "name": "A1_sheet57", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 8.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.6 + } + }, + { + "id": "A1_sheet56", + "uuid": "97ad6b7f-3004-40c2-a4b5-295128f8e76e", + "name": "A1_sheet56", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 8.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.8 + } + }, + { + "id": "A1_sheet55", + "uuid": "543954a2-3248-4bfd-a004-5d4bcdd8ba30", + "name": "A1_sheet55", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 9.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.0 + } + }, + { + "id": "A1_sheet54", + "uuid": "a827f1d3-a6d9-47d3-9220-339a8ffdec19", + "name": "A1_sheet54", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 9.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.2 + } + }, + { + "id": "A1_sheet53", + "uuid": "0f5a0af9-d0c0-499b-a891-fab9f15bc765", + "name": "A1_sheet53", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 9.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.4 + } + }, + { + "id": "A1_sheet52", + "uuid": "40d98d45-99e2-4416-abb7-3305bd6cf272", + "name": "A1_sheet52", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 9.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.6 + } + }, + { + "id": "A1_sheet51", + "uuid": "a74e92b4-f06f-4a48-80eb-50fdade95834", + "name": "A1_sheet51", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 9.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.8 + } + }, + { + "id": "A1_sheet50", + "uuid": "6b2d6391-928b-46a2-9b97-db527241fb99", + "name": "A1_sheet50", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 10.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 10.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 10.0 + } + }, + { + "id": "A1_sheet49", + "uuid": "fa946e7b-19b2-4db5-964d-9137a0df6b18", + "name": "A1_sheet49", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 10.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 10.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 10.2 + } + }, + { + "id": "A1_sheet48", + "uuid": "4e7615e4-bc92-4552-b9cf-d8a08f1e223c", + "name": "A1_sheet48", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 10.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 10.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 10.4 + } + }, + { + "id": "A1_sheet47", + "uuid": "c2839f2b-1db3-47c3-968b-0aba8aa80c30", + "name": "A1_sheet47", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 10.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 10.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 10.6 + } + }, + { + "id": "A1_sheet46", + "uuid": "30d187cf-8e83-4416-b42f-a4c6188fe794", + "name": "A1_sheet46", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 10.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 10.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 10.8 + } + }, + { + "id": "A1_sheet45", + "uuid": "de12a778-125f-4ca0-854b-a58aa97b10fe", + "name": "A1_sheet45", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 11.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 11.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 11.0 + } + }, + { + "id": "A1_sheet44", + "uuid": "83c868b7-22c5-41a3-b446-a6ed4e8c88e9", + "name": "A1_sheet44", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 11.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 11.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 11.2 + } + }, + { + "id": "A1_sheet43", + "uuid": "0defac73-388a-4dcc-8307-696856ff97e5", + "name": "A1_sheet43", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 11.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 11.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 11.4 + } + }, + { + "id": "A1_sheet42", + "uuid": "d1570e2c-6819-490a-81c4-11dd77a48415", + "name": "A1_sheet42", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 11.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 11.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 11.6 + } + }, + { + "id": "A1_sheet41", + "uuid": "7cd70267-df79-4c7e-8ba6-a3dfbcf49477", + "name": "A1_sheet41", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 11.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 11.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 11.8 + } + }, + { + "id": "A1_sheet40", + "uuid": "23715695-f69b-47d9-8a92-da25a4c69fd6", + "name": "A1_sheet40", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 12.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 12.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 12.0 + } + }, + { + "id": "A1_sheet39", + "uuid": "3da30552-56a5-4f3b-9823-ba0853750b68", + "name": "A1_sheet39", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 12.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 12.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 12.2 + } + }, + { + "id": "A1_sheet38", + "uuid": "a29bc464-00c8-484e-b708-187f82da1124", + "name": "A1_sheet38", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 12.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 12.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 12.4 + } + }, + { + "id": "A1_sheet37", + "uuid": "f798dff4-f83e-4304-8b24-b35e7ad23d34", + "name": "A1_sheet37", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 12.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 12.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 12.6 + } + }, + { + "id": "A1_sheet36", + "uuid": "c79f21d5-7534-4419-b34d-c05848d66973", + "name": "A1_sheet36", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 12.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 12.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 12.8 + } + }, + { + "id": "A1_sheet35", + "uuid": "b75bd348-4f18-4db7-be98-cf2f7192e828", + "name": "A1_sheet35", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 13.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 13.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 13.0 + } + }, + { + "id": "A1_sheet34", + "uuid": "0162dfaf-5e33-4bd3-b549-6860aff91ec6", + "name": "A1_sheet34", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 13.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 13.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 13.2 + } + }, + { + "id": "A1_sheet33", + "uuid": "c80a8747-8bca-4964-8cae-bca23ffeb186", + "name": "A1_sheet33", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 13.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 13.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 13.4 + } + }, + { + "id": "A1_sheet32", + "uuid": "b43bdae3-d420-4eee-8cd5-daf4cdd3190d", + "name": "A1_sheet32", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 13.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 13.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 13.6 + } + }, + { + "id": "A1_sheet31", + "uuid": "53e1ad4c-a7d3-49ed-b801-20db0d1d8b31", + "name": "A1_sheet31", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 13.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 13.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 13.8 + } + }, + { + "id": "A1_sheet30", + "uuid": "42f57957-bab2-409b-a4cf-00fbf41ce5e3", + "name": "A1_sheet30", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 14.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 14.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 14.0 + } + }, + { + "id": "A1_sheet29", + "uuid": "f00b00ac-8b10-4a9f-aa94-2c2cc3da1a5c", + "name": "A1_sheet29", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 14.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 14.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 14.2 + } + }, + { + "id": "A1_sheet28", + "uuid": "a63bc779-d427-4e02-8523-5b87e2693afa", + "name": "A1_sheet28", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 14.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 14.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 14.4 + } + }, + { + "id": "A1_sheet27", + "uuid": "64bf7728-e34b-41ac-8891-77120cb278b0", + "name": "A1_sheet27", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 14.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 14.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 14.6 + } + }, + { + "id": "A1_sheet26", + "uuid": "03dbb692-0aab-45f6-9a19-db890396a172", + "name": "A1_sheet26", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 14.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 14.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 14.8 + } + }, + { + "id": "A1_sheet25", + "uuid": "c2d5c7ed-57b9-42f9-b380-c21a9ea2b6d2", + "name": "A1_sheet25", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 15.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 15.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 15.0 + } + }, + { + "id": "A1_sheet24", + "uuid": "5d99dfa8-3b83-488b-81ae-627ffd39dab2", + "name": "A1_sheet24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 15.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 15.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 15.2 + } + }, + { + "id": "A1_sheet23", + "uuid": "372cf32c-196c-46ec-9441-fa4204d6c030", + "name": "A1_sheet23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 15.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 15.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 15.4 + } + }, + { + "id": "A1_sheet22", + "uuid": "535c6b17-61f7-42e0-83fd-facee5e65897", + "name": "A1_sheet22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 15.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 15.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 15.6 + } + }, + { + "id": "A1_sheet21", + "uuid": "d2399242-b6dd-4951-ab98-550bfc229e19", + "name": "A1_sheet21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 15.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 15.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 15.8 + } + }, + { + "id": "A1_sheet20", + "uuid": "77ad7e72-6a8a-4d72-91ca-91ad29cf7bd5", + "name": "A1_sheet20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 16.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 16.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 16.0 + } + }, + { + "id": "A1_sheet19", + "uuid": "6ac68ec7-b2c5-4a6c-b27a-f253a2ff9ed2", + "name": "A1_sheet19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 16.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 16.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 16.2 + } + }, + { + "id": "A1_sheet18", + "uuid": "35ccff4d-6925-42a8-ae4f-10d2812f2757", + "name": "A1_sheet18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 16.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 16.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 16.4 + } + }, + { + "id": "A1_sheet17", + "uuid": "f14003fc-0cf8-4005-8e56-3241f1cbf635", + "name": "A1_sheet17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 16.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 16.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 16.6 + } + }, + { + "id": "A1_sheet16", + "uuid": "b97dec3b-65c5-4e73-ba66-8c425c661788", + "name": "A1_sheet16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 16.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 16.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 16.8 + } + }, + { + "id": "A1_sheet15", + "uuid": "8b9180b8-a6fe-4680-8044-2299ef190b7e", + "name": "A1_sheet15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 17.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 17.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 17.0 + } + }, + { + "id": "A1_sheet14", + "uuid": "87274d15-111a-419c-bf41-184644b943fa", + "name": "A1_sheet14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 17.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 17.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 17.2 + } + }, + { + "id": "A1_sheet13", + "uuid": "f44b99f5-48bb-41b3-beb2-0562d9c64f4a", + "name": "A1_sheet13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 17.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 17.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 17.4 + } + }, + { + "id": "A1_sheet12", + "uuid": "13d5eadd-94ae-441f-ad03-8e80048a8ed2", + "name": "A1_sheet12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 17.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 17.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 17.6 + } + }, + { + "id": "A1_sheet11", + "uuid": "81a551e6-1c67-4ddc-94e5-7ac75f84a09e", + "name": "A1_sheet11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 17.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 17.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 17.8 + } + }, + { + "id": "A1_sheet10", + "uuid": "1c9d4636-27d7-4e72-acbc-0f50847fe1be", + "name": "A1_sheet10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 18.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 18.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 18.0 + } + }, + { + "id": "A1_sheet9", + "uuid": "0e2f3dd0-5aed-428b-9daf-80c8858c801f", + "name": "A1_sheet9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 18.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 18.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 18.2 + } + }, + { + "id": "A1_sheet8", + "uuid": "e3a38508-18ac-4600-a4f3-7d9f1b81bc5c", + "name": "A1_sheet8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 18.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 18.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 18.4 + } + }, + { + "id": "A1_sheet7", + "uuid": "c10d547c-9707-45ec-a7f7-35cf187942eb", + "name": "A1_sheet7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 18.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 18.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 18.6 + } + }, + { + "id": "A1_sheet6", + "uuid": "fce94509-b78d-44a7-879d-046a86817c62", + "name": "A1_sheet6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 18.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 18.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 18.8 + } + }, + { + "id": "A1_sheet5", + "uuid": "acb56dac-abf0-4716-b0ca-210fccd8307a", + "name": "A1_sheet5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 19.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 19.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 19.0 + } + }, + { + "id": "A1_sheet4", + "uuid": "68de52f0-135a-4720-8692-dc1e8d27d181", + "name": "A1_sheet4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 19.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 19.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 19.2 + } + }, + { + "id": "A1_sheet3", + "uuid": "11b66317-9622-4492-8c05-9eb49dc863d5", + "name": "A1_sheet3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 19.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 19.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 19.4 + } + }, + { + "id": "A1_sheet2", + "uuid": "3e43730a-1697-43da-80d5-c9b3a5c98e34", + "name": "A1_sheet2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 19.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 19.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 19.6 + } + }, + { + "id": "A1_sheet1", + "uuid": "57503910-2cbb-4fad-a9f3-f291e4b99b66", + "name": "A1_sheet1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "75bfd515-9420-48a0-a76c-37eeb02e9d5c", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 19.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 19.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 19.8 + } + }, + { + "id": "正极壳&平垫片弹夹_正极壳&平垫片弹夹-1", + "uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "name": "正极壳&平垫片弹夹_正极壳&平垫片弹夹-1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "78b1893c-6249-4adb-b058-613d726064cf", + "type": "resource_group", + "class": "", + "pose": { + "size": { + "depth": 300.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 43.0, + "y": 50.3205, + "z": 30.0 + }, + "position3d": { + "x": 43.0, + "y": 50.3205, + "z": 30.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Magazine", + "size_x": 12, + "size_y": 12, + "size_z": 300.0, + "category": "resource_group", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_sheets": 100 + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 43.0, + "y": 50.3205, + "z": 30.0 + } + }, + { + "id": "A2_sheet100", + "uuid": "69523943-87c6-4b64-9200-950588614788", + "name": "A2_sheet100", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "A2_sheet99", + "uuid": "e47bcaae-b0d4-4652-9b85-686f95f1134f", + "name": "A2_sheet99", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.0 + } + }, + { + "id": "A2_sheet98", + "uuid": "29bdf39d-b616-427f-bd30-ed36c8a497d0", + "name": "A2_sheet98", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.0 + } + }, + { + "id": "A2_sheet97", + "uuid": "9280a417-f14b-4f7b-a0fd-53b8daa2cdde", + "name": "A2_sheet97", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 9.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.0 + } + }, + { + "id": "A2_sheet96", + "uuid": "966cca0c-39ad-4b0e-bd57-563fdf0c60d2", + "name": "A2_sheet96", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 12.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 12.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 12.0 + } + }, + { + "id": "A2_sheet95", + "uuid": "87e751f2-9dd9-46e4-b585-2aab90fa0ab3", + "name": "A2_sheet95", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 15.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 15.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 15.0 + } + }, + { + "id": "A2_sheet94", + "uuid": "aca274af-d000-456a-aca0-6172ce8f33df", + "name": "A2_sheet94", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 18.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 18.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 18.0 + } + }, + { + "id": "A2_sheet93", + "uuid": "a2351788-3b45-43a8-b262-2b5c97fdebc3", + "name": "A2_sheet93", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 21.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 21.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 21.0 + } + }, + { + "id": "A2_sheet92", + "uuid": "f0999049-7e39-4a92-8862-43a3cc06f39c", + "name": "A2_sheet92", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 24.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 24.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 24.0 + } + }, + { + "id": "A2_sheet91", + "uuid": "311e3447-d96b-4a8c-ab86-ca427e0bfd88", + "name": "A2_sheet91", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 27.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 27.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 27.0 + } + }, + { + "id": "A2_sheet90", + "uuid": "ada4ee19-2273-4abc-bf77-8a73343798a5", + "name": "A2_sheet90", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 30.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 30.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 30.0 + } + }, + { + "id": "A2_sheet89", + "uuid": "e7428fe3-be76-420f-abf6-2c5efc874bee", + "name": "A2_sheet89", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 33.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 33.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 33.0 + } + }, + { + "id": "A2_sheet88", + "uuid": "7488cb7f-0a63-4f71-bdd5-5b9c22c8cc98", + "name": "A2_sheet88", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 36.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 36.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 36.0 + } + }, + { + "id": "A2_sheet87", + "uuid": "78e092ad-acbf-4a11-80f3-f880da0bc3a1", + "name": "A2_sheet87", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 39.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 39.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 39.0 + } + }, + { + "id": "A2_sheet86", + "uuid": "85ece153-405d-4fea-8d52-c0291a1330db", + "name": "A2_sheet86", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 42.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 42.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 42.0 + } + }, + { + "id": "A2_sheet85", + "uuid": "fa11a29d-5897-473e-adfa-810f6cc72a9c", + "name": "A2_sheet85", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 45.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 45.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 45.0 + } + }, + { + "id": "A2_sheet84", + "uuid": "f1c8a572-c12d-4387-aa42-0d93b0cb9f27", + "name": "A2_sheet84", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 48.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 48.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 48.0 + } + }, + { + "id": "A2_sheet83", + "uuid": "aaa5377a-1287-4429-bc94-529a6700548b", + "name": "A2_sheet83", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 51.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 51.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 51.0 + } + }, + { + "id": "A2_sheet82", + "uuid": "49f74172-8209-46cf-96a2-69064e07eff1", + "name": "A2_sheet82", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 54.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 54.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 54.0 + } + }, + { + "id": "A2_sheet81", + "uuid": "34eef05b-4b3e-497c-a6af-836846eec3a8", + "name": "A2_sheet81", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 57.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 57.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 57.0 + } + }, + { + "id": "A2_sheet80", + "uuid": "a84fbf99-d439-44c1-ad22-11256a4c9b64", + "name": "A2_sheet80", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 60.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 60.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 60.0 + } + }, + { + "id": "A2_sheet79", + "uuid": "2374c992-4623-4981-a78c-b5b520b5bc27", + "name": "A2_sheet79", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 63.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 63.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 63.0 + } + }, + { + "id": "A2_sheet78", + "uuid": "d0a8af5c-c894-47d8-a290-cf751671d4a3", + "name": "A2_sheet78", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 66.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 66.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 66.0 + } + }, + { + "id": "A2_sheet77", + "uuid": "1177869b-be28-4ed8-b41c-2ed6b09fc062", + "name": "A2_sheet77", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 69.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 69.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 69.0 + } + }, + { + "id": "A2_sheet76", + "uuid": "ae9f3195-5d4d-4f3c-a777-b8f057698b1d", + "name": "A2_sheet76", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 72.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 72.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 72.0 + } + }, + { + "id": "A2_sheet75", + "uuid": "16a696d9-f90b-4fcb-b91a-b88a58686f43", + "name": "A2_sheet75", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 75.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 75.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 75.0 + } + }, + { + "id": "A2_sheet74", + "uuid": "5869a4e6-c6f9-4c6b-a3f6-bf3141a9be71", + "name": "A2_sheet74", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 78.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 78.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 78.0 + } + }, + { + "id": "A2_sheet73", + "uuid": "a4d13315-cdb8-4bac-aa5c-0a0c45def568", + "name": "A2_sheet73", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 81.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 81.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 81.0 + } + }, + { + "id": "A2_sheet72", + "uuid": "9a3d4744-437e-4bca-88d2-006e3ca6b13b", + "name": "A2_sheet72", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 84.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 84.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 84.0 + } + }, + { + "id": "A2_sheet71", + "uuid": "107967c1-c39e-40ee-9a3d-92d57720fbd3", + "name": "A2_sheet71", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 87.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 87.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 87.0 + } + }, + { + "id": "A2_sheet70", + "uuid": "eb9aaf9f-4260-458b-853f-1bc860451526", + "name": "A2_sheet70", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 90.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 90.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 90.0 + } + }, + { + "id": "A2_sheet69", + "uuid": "f2593c15-3d53-479b-bf3f-f9dd3c55b677", + "name": "A2_sheet69", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 93.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 93.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 93.0 + } + }, + { + "id": "A2_sheet68", + "uuid": "992546d3-c54b-44de-8428-e5fb1b32c33c", + "name": "A2_sheet68", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 96.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 96.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 96.0 + } + }, + { + "id": "A2_sheet67", + "uuid": "d3468f87-ecc4-46c1-92c2-c6d68762cda7", + "name": "A2_sheet67", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 99.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 99.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 99.0 + } + }, + { + "id": "A2_sheet66", + "uuid": "78fbfce0-177f-40bd-a001-42e0e8a56f7e", + "name": "A2_sheet66", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 102.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 102.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 102.0 + } + }, + { + "id": "A2_sheet65", + "uuid": "41d015d3-dbc5-4fb6-b9ab-e01b146c0de6", + "name": "A2_sheet65", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 105.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 105.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 105.0 + } + }, + { + "id": "A2_sheet64", + "uuid": "1c5df4d2-23ab-432e-9254-c1bf218f7ea3", + "name": "A2_sheet64", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 108.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 108.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 108.0 + } + }, + { + "id": "A2_sheet63", + "uuid": "039dec12-f8c4-4ff3-9f8a-738f4171be20", + "name": "A2_sheet63", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 111.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 111.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 111.0 + } + }, + { + "id": "A2_sheet62", + "uuid": "b90efed9-6ffe-4bc5-9bb6-7b5a8ff2ef3d", + "name": "A2_sheet62", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 114.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 114.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 114.0 + } + }, + { + "id": "A2_sheet61", + "uuid": "b8e11e93-2bb3-4d5e-af5a-2b39580b75a4", + "name": "A2_sheet61", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 117.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 117.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 117.0 + } + }, + { + "id": "A2_sheet60", + "uuid": "9fbf1eee-b5fc-4b28-b355-1d2e97a1aef7", + "name": "A2_sheet60", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 120.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 120.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 120.0 + } + }, + { + "id": "A2_sheet59", + "uuid": "290963b3-8f8b-44c6-852b-1739ce825e6f", + "name": "A2_sheet59", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 123.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 123.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 123.0 + } + }, + { + "id": "A2_sheet58", + "uuid": "fc7391b1-feb2-44cf-bcf4-a6a632245ec4", + "name": "A2_sheet58", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 126.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 126.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 126.0 + } + }, + { + "id": "A2_sheet57", + "uuid": "e691e8ba-2cb6-4f57-940e-f0b01f4e2be7", + "name": "A2_sheet57", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 129.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 129.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 129.0 + } + }, + { + "id": "A2_sheet56", + "uuid": "339ac5bb-5de3-4016-be27-0d4868259279", + "name": "A2_sheet56", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 132.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 132.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 132.0 + } + }, + { + "id": "A2_sheet55", + "uuid": "b087c932-49bb-4de6-9ce9-e206f670b350", + "name": "A2_sheet55", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 135.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 135.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 135.0 + } + }, + { + "id": "A2_sheet54", + "uuid": "809e4722-7be5-46b0-9045-ee9325a52351", + "name": "A2_sheet54", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 138.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 138.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 138.0 + } + }, + { + "id": "A2_sheet53", + "uuid": "d9c82cf4-9636-4dbf-a372-bbfa54245d41", + "name": "A2_sheet53", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 141.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 141.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 141.0 + } + }, + { + "id": "A2_sheet52", + "uuid": "55b6f20e-f604-4d24-8936-c0b27c876e9e", + "name": "A2_sheet52", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 144.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 144.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 144.0 + } + }, + { + "id": "A2_sheet51", + "uuid": "771ff1c9-52e7-43bd-b1e9-8bb6d08002fb", + "name": "A2_sheet51", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 147.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 147.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 147.0 + } + }, + { + "id": "A2_sheet50", + "uuid": "309d3549-e75c-4e9b-8936-7c6d599f2e92", + "name": "A2_sheet50", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 150.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 150.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 150.0 + } + }, + { + "id": "A2_sheet49", + "uuid": "38a35cdb-f300-43ba-8b6f-c55c57d76417", + "name": "A2_sheet49", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 153.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 153.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 153.0 + } + }, + { + "id": "A2_sheet48", + "uuid": "05c81371-646f-4a9a-8bc1-be4fddb28315", + "name": "A2_sheet48", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 156.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 156.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 156.0 + } + }, + { + "id": "A2_sheet47", + "uuid": "73fa94d8-a778-4b19-90ac-d612a768b131", + "name": "A2_sheet47", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 159.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 159.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 159.0 + } + }, + { + "id": "A2_sheet46", + "uuid": "d10dc447-e976-4b99-994e-50763b5bbe2d", + "name": "A2_sheet46", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 162.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 162.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 162.0 + } + }, + { + "id": "A2_sheet45", + "uuid": "ea7675c3-a38a-4f24-8fd7-027056036119", + "name": "A2_sheet45", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 165.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 165.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 165.0 + } + }, + { + "id": "A2_sheet44", + "uuid": "46809ae6-25a1-494d-95a2-e662d96cece6", + "name": "A2_sheet44", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 168.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 168.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 168.0 + } + }, + { + "id": "A2_sheet43", + "uuid": "6f3a3b98-dd82-4fed-8018-dac17346e425", + "name": "A2_sheet43", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 171.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 171.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 171.0 + } + }, + { + "id": "A2_sheet42", + "uuid": "f12511d0-4ced-4220-b0d1-23ecc9e1444e", + "name": "A2_sheet42", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 174.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 174.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 174.0 + } + }, + { + "id": "A2_sheet41", + "uuid": "f8f071e9-f937-4624-9aa1-b3640d061b03", + "name": "A2_sheet41", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 177.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 177.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 177.0 + } + }, + { + "id": "A2_sheet40", + "uuid": "bdd67190-76d7-4d61-8d9c-8069f359452b", + "name": "A2_sheet40", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 180.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 180.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 180.0 + } + }, + { + "id": "A2_sheet39", + "uuid": "ff633b82-9409-4629-946d-8c9a752840b6", + "name": "A2_sheet39", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 183.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 183.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 183.0 + } + }, + { + "id": "A2_sheet38", + "uuid": "998d1f49-5bee-49f4-9739-a3a74c0c6bef", + "name": "A2_sheet38", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 186.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 186.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 186.0 + } + }, + { + "id": "A2_sheet37", + "uuid": "5854eccd-13ca-4cec-adb3-445ead2e1b2d", + "name": "A2_sheet37", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 189.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 189.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 189.0 + } + }, + { + "id": "A2_sheet36", + "uuid": "218a503f-feb4-4a67-ba6d-605b57589aac", + "name": "A2_sheet36", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 192.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 192.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 192.0 + } + }, + { + "id": "A2_sheet35", + "uuid": "41d836ae-bc1c-424f-8cdd-15a06a231e1b", + "name": "A2_sheet35", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 195.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 195.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 195.0 + } + }, + { + "id": "A2_sheet34", + "uuid": "f4cf4535-2718-4893-9b11-d7c9113da4f1", + "name": "A2_sheet34", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 198.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 198.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 198.0 + } + }, + { + "id": "A2_sheet33", + "uuid": "41e5a57d-7de8-4621-8cc9-8e8a3bc1eae7", + "name": "A2_sheet33", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 201.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 201.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 201.0 + } + }, + { + "id": "A2_sheet32", + "uuid": "237a180f-de9c-4576-a990-f2fad2ab8f5d", + "name": "A2_sheet32", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 204.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 204.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 204.0 + } + }, + { + "id": "A2_sheet31", + "uuid": "91fe45dd-1d13-4e71-8b03-0774e92e9854", + "name": "A2_sheet31", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 207.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 207.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 207.0 + } + }, + { + "id": "A2_sheet30", + "uuid": "c3366d4d-a5ff-4d57-ae88-2e3e35c0664a", + "name": "A2_sheet30", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 210.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 210.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 210.0 + } + }, + { + "id": "A2_sheet29", + "uuid": "1c83f88b-54ea-41b2-bf0d-947d8d5cf597", + "name": "A2_sheet29", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 213.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 213.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 213.0 + } + }, + { + "id": "A2_sheet28", + "uuid": "624dbdb5-0ad8-4a8e-8262-a737bbfaba3f", + "name": "A2_sheet28", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 216.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 216.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 216.0 + } + }, + { + "id": "A2_sheet27", + "uuid": "233286c4-04b3-4546-9014-c1ce221d8fe6", + "name": "A2_sheet27", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 219.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 219.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 219.0 + } + }, + { + "id": "A2_sheet26", + "uuid": "fff622c4-951e-4aca-90a9-c7323aae3615", + "name": "A2_sheet26", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 222.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 222.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 222.0 + } + }, + { + "id": "A2_sheet25", + "uuid": "1ae6719c-f0a9-48e9-9659-3723facd3301", + "name": "A2_sheet25", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 225.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 225.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 225.0 + } + }, + { + "id": "A2_sheet24", + "uuid": "c6dc48dc-6e68-4fa6-b496-79a03fbc8f7c", + "name": "A2_sheet24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 228.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 228.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 228.0 + } + }, + { + "id": "A2_sheet23", + "uuid": "7331736d-89b5-4a58-9498-48bfc4bff5fc", + "name": "A2_sheet23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 231.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 231.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 231.0 + } + }, + { + "id": "A2_sheet22", + "uuid": "3cfa47ba-3323-4595-b22b-7474cb927b33", + "name": "A2_sheet22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 234.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 234.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 234.0 + } + }, + { + "id": "A2_sheet21", + "uuid": "ce827132-391e-4341-8cde-805f24ef2673", + "name": "A2_sheet21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 237.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 237.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 237.0 + } + }, + { + "id": "A2_sheet20", + "uuid": "7ccaa9cb-b4c6-4bdc-b1af-0e16c2dadd46", + "name": "A2_sheet20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 240.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 240.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 240.0 + } + }, + { + "id": "A2_sheet19", + "uuid": "ab1ee5f4-a1f2-4fec-ba06-d78fb27bf9dc", + "name": "A2_sheet19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 243.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 243.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 243.0 + } + }, + { + "id": "A2_sheet18", + "uuid": "906406f2-1154-4c11-aa9f-bb08605d62ab", + "name": "A2_sheet18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 246.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 246.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 246.0 + } + }, + { + "id": "A2_sheet17", + "uuid": "362e9ba9-c8ab-4506-ad46-17111b238977", + "name": "A2_sheet17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 249.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 249.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 249.0 + } + }, + { + "id": "A2_sheet16", + "uuid": "71e427b4-eac5-4778-a6d1-41c60418587f", + "name": "A2_sheet16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 252.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 252.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 252.0 + } + }, + { + "id": "A2_sheet15", + "uuid": "294f2821-f8ec-47e6-ae51-6be5eb31d41c", + "name": "A2_sheet15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 255.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 255.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 255.0 + } + }, + { + "id": "A2_sheet14", + "uuid": "c6677256-04cc-4a83-9370-193e9cb12685", + "name": "A2_sheet14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 258.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 258.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 258.0 + } + }, + { + "id": "A2_sheet13", + "uuid": "83bd8cc2-7fa0-4b8a-ac80-216ecdb1a219", + "name": "A2_sheet13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 261.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 261.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 261.0 + } + }, + { + "id": "A2_sheet12", + "uuid": "13aac879-ba66-4315-82db-4fd3e2791f0a", + "name": "A2_sheet12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 264.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 264.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 264.0 + } + }, + { + "id": "A2_sheet11", + "uuid": "46bbc9e3-d111-409a-b89c-e42a07cb8930", + "name": "A2_sheet11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 267.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 267.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 267.0 + } + }, + { + "id": "A2_sheet10", + "uuid": "c3d5b6cc-96de-424d-b15e-8e6ca781babd", + "name": "A2_sheet10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 270.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 270.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 270.0 + } + }, + { + "id": "A2_sheet9", + "uuid": "43a4d335-f8ac-444c-ba25-22c5dfd03fb3", + "name": "A2_sheet9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 273.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 273.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 273.0 + } + }, + { + "id": "A2_sheet8", + "uuid": "c971c598-034a-4748-aec6-2f94ed249d5c", + "name": "A2_sheet8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 276.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 276.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 276.0 + } + }, + { + "id": "A2_sheet7", + "uuid": "89015b02-2b70-46a5-b2ae-7e491654952b", + "name": "A2_sheet7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 279.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 279.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 279.0 + } + }, + { + "id": "A2_sheet6", + "uuid": "68b00b37-652d-4964-b0c3-102011ab500d", + "name": "A2_sheet6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 282.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 282.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 282.0 + } + }, + { + "id": "A2_sheet5", + "uuid": "70e3694c-9707-46ea-81a0-27ec1bebb867", + "name": "A2_sheet5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 285.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 285.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 285.0 + } + }, + { + "id": "A2_sheet4", + "uuid": "df123950-b769-4d14-a08c-41dbb943db67", + "name": "A2_sheet4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 288.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 288.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 288.0 + } + }, + { + "id": "A2_sheet3", + "uuid": "967ba48e-09f4-4694-96ba-56741426ade8", + "name": "A2_sheet3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 291.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 291.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 291.0 + } + }, + { + "id": "A2_sheet2", + "uuid": "73926537-0039-4e50-80cc-4f25030ec76d", + "name": "A2_sheet2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 294.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 294.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 294.0 + } + }, + { + "id": "A2_sheet1", + "uuid": "f83f136d-1a18-4c48-abce-f6d2d7b06237", + "name": "A2_sheet1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e4e1ef20-be10-4906-a870-f9a50c830eff", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 297.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 297.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 297.0 + } + }, + { + "id": "正极壳&平垫片弹夹_正极壳&平垫片弹夹-2", + "uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "name": "正极壳&平垫片弹夹_正极壳&平垫片弹夹-2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "78b1893c-6249-4adb-b058-613d726064cf", + "type": "resource_group", + "class": "", + "pose": { + "size": { + "depth": 300.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 23.0, + "y": 50.3205, + "z": 30.0 + }, + "position3d": { + "x": 23.0, + "y": 50.3205, + "z": 30.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Magazine", + "size_x": 12, + "size_y": 12, + "size_z": 300.0, + "category": "resource_group", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_sheets": 100 + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 23.0, + "y": 50.3205, + "z": 30.0 + } + }, + { + "id": "A3_sheet100", + "uuid": "5b6526d8-7697-4aac-b299-1648961f0968", + "name": "A3_sheet100", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "A3_sheet99", + "uuid": "1e5aa86e-cae4-44ab-9dd7-805addf02cd3", + "name": "A3_sheet99", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.0 + } + }, + { + "id": "A3_sheet98", + "uuid": "04a36e71-7eae-45cd-8f22-b0409e91965e", + "name": "A3_sheet98", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.0 + } + }, + { + "id": "A3_sheet97", + "uuid": "12586cc3-1ae1-4afb-9639-f75822145041", + "name": "A3_sheet97", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 9.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.0 + } + }, + { + "id": "A3_sheet96", + "uuid": "db647b35-3784-44a2-a67e-a3e9109d3d3d", + "name": "A3_sheet96", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 12.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 12.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 12.0 + } + }, + { + "id": "A3_sheet95", + "uuid": "3cd931bc-bb3e-40c4-b293-336a06ec990c", + "name": "A3_sheet95", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 15.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 15.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 15.0 + } + }, + { + "id": "A3_sheet94", + "uuid": "05c2f4fc-6037-4542-88e1-d9ec41cb23ec", + "name": "A3_sheet94", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 18.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 18.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 18.0 + } + }, + { + "id": "A3_sheet93", + "uuid": "b850c985-8ac9-47f9-9fe1-80e41167e449", + "name": "A3_sheet93", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 21.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 21.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 21.0 + } + }, + { + "id": "A3_sheet92", + "uuid": "bd232ae0-42c7-4bc1-a714-f08e74c0fd6c", + "name": "A3_sheet92", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 24.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 24.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 24.0 + } + }, + { + "id": "A3_sheet91", + "uuid": "17a78704-0cc3-42af-bd15-a00bd3fcbe07", + "name": "A3_sheet91", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 27.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 27.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 27.0 + } + }, + { + "id": "A3_sheet90", + "uuid": "4c3aee55-100d-4316-a000-27316a918c09", + "name": "A3_sheet90", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 30.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 30.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 30.0 + } + }, + { + "id": "A3_sheet89", + "uuid": "8b3837f3-d3d8-49e1-b38e-589841bc217e", + "name": "A3_sheet89", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 33.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 33.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 33.0 + } + }, + { + "id": "A3_sheet88", + "uuid": "838036c3-e6b0-46ba-9388-6d182c10d3a1", + "name": "A3_sheet88", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 36.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 36.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 36.0 + } + }, + { + "id": "A3_sheet87", + "uuid": "ddfb8b40-accd-48fb-87e5-f3232023045e", + "name": "A3_sheet87", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 39.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 39.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 39.0 + } + }, + { + "id": "A3_sheet86", + "uuid": "30a13db1-f70b-4329-9d35-f826c61079b9", + "name": "A3_sheet86", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 42.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 42.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 42.0 + } + }, + { + "id": "A3_sheet85", + "uuid": "1b69233a-576f-487b-9e10-466800e619e1", + "name": "A3_sheet85", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 45.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 45.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 45.0 + } + }, + { + "id": "A3_sheet84", + "uuid": "f43cd665-1447-4e2c-a9fe-81e958116d33", + "name": "A3_sheet84", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 48.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 48.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 48.0 + } + }, + { + "id": "A3_sheet83", + "uuid": "2ac40017-3987-435e-8ecc-3f6ff651f377", + "name": "A3_sheet83", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 51.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 51.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 51.0 + } + }, + { + "id": "A3_sheet82", + "uuid": "89fc7f24-9d3d-4241-b3a1-aaba57bb190d", + "name": "A3_sheet82", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 54.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 54.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 54.0 + } + }, + { + "id": "A3_sheet81", + "uuid": "68ed4c0e-895b-4923-ab6a-72de4a38a059", + "name": "A3_sheet81", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 57.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 57.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 57.0 + } + }, + { + "id": "A3_sheet80", + "uuid": "c97841e1-bfbd-4b20-b259-57ae00f86528", + "name": "A3_sheet80", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 60.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 60.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 60.0 + } + }, + { + "id": "A3_sheet79", + "uuid": "ee2e89c5-7715-4fd8-90b5-fd27990abe04", + "name": "A3_sheet79", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 63.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 63.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 63.0 + } + }, + { + "id": "A3_sheet78", + "uuid": "9934d6fb-29ae-42f7-961e-2109ec4b3625", + "name": "A3_sheet78", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 66.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 66.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 66.0 + } + }, + { + "id": "A3_sheet77", + "uuid": "8fb643a1-7193-466f-b3f5-f4164205f6d4", + "name": "A3_sheet77", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 69.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 69.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 69.0 + } + }, + { + "id": "A3_sheet76", + "uuid": "85e0b05e-ae8f-4436-a359-8ad46ee9a6bf", + "name": "A3_sheet76", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 72.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 72.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 72.0 + } + }, + { + "id": "A3_sheet75", + "uuid": "02a82f62-d19c-49ea-9b58-40e3b0873bcf", + "name": "A3_sheet75", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 75.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 75.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 75.0 + } + }, + { + "id": "A3_sheet74", + "uuid": "93533d67-6992-41b3-8a09-ffa4866dec27", + "name": "A3_sheet74", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 78.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 78.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 78.0 + } + }, + { + "id": "A3_sheet73", + "uuid": "4348b58d-e6d6-4eb7-ac8e-c3a92b354960", + "name": "A3_sheet73", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 81.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 81.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 81.0 + } + }, + { + "id": "A3_sheet72", + "uuid": "b5ae46f4-8179-4511-8b06-fd4e2fc29f2c", + "name": "A3_sheet72", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 84.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 84.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 84.0 + } + }, + { + "id": "A3_sheet71", + "uuid": "d9d51b14-87be-4e0d-82cf-c020d51d1134", + "name": "A3_sheet71", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 87.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 87.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 87.0 + } + }, + { + "id": "A3_sheet70", + "uuid": "9bea5cdc-042c-4100-84d2-05e06d0ca653", + "name": "A3_sheet70", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 90.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 90.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 90.0 + } + }, + { + "id": "A3_sheet69", + "uuid": "0c13b6d8-66e6-47bf-9950-0acd4300773c", + "name": "A3_sheet69", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 93.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 93.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 93.0 + } + }, + { + "id": "A3_sheet68", + "uuid": "8109b297-0d84-4f35-967f-b700b441762c", + "name": "A3_sheet68", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 96.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 96.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 96.0 + } + }, + { + "id": "A3_sheet67", + "uuid": "071fe4d6-2255-4ef4-91c0-0318f2e90ded", + "name": "A3_sheet67", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 99.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 99.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 99.0 + } + }, + { + "id": "A3_sheet66", + "uuid": "7a11c1fb-4ed3-4fa5-bb48-4e2e52efe993", + "name": "A3_sheet66", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 102.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 102.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 102.0 + } + }, + { + "id": "A3_sheet65", + "uuid": "accb1498-907a-4d34-8d10-74ace1a92ab7", + "name": "A3_sheet65", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 105.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 105.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 105.0 + } + }, + { + "id": "A3_sheet64", + "uuid": "f468944c-e3d0-4f44-8923-ff6d2b95943b", + "name": "A3_sheet64", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 108.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 108.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 108.0 + } + }, + { + "id": "A3_sheet63", + "uuid": "a05b6653-6c2c-40f2-b72c-04d0b4a26499", + "name": "A3_sheet63", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 111.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 111.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 111.0 + } + }, + { + "id": "A3_sheet62", + "uuid": "f5501d1f-aac3-40af-aebd-1901436d6b8c", + "name": "A3_sheet62", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 114.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 114.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 114.0 + } + }, + { + "id": "A3_sheet61", + "uuid": "5e3d9fab-1071-4a11-98f8-20b2cd331bcb", + "name": "A3_sheet61", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 117.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 117.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 117.0 + } + }, + { + "id": "A3_sheet60", + "uuid": "0a59fd49-6b55-43f5-90b3-c55c989bfeaa", + "name": "A3_sheet60", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 120.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 120.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 120.0 + } + }, + { + "id": "A3_sheet59", + "uuid": "4a92827c-c6bd-4abe-87ef-ccb3b5d2184c", + "name": "A3_sheet59", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 123.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 123.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 123.0 + } + }, + { + "id": "A3_sheet58", + "uuid": "43ee4f14-2ccd-4713-9824-01a25e4d753d", + "name": "A3_sheet58", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 126.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 126.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 126.0 + } + }, + { + "id": "A3_sheet57", + "uuid": "27a45e97-e437-480d-8986-3aa20d91427c", + "name": "A3_sheet57", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 129.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 129.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 129.0 + } + }, + { + "id": "A3_sheet56", + "uuid": "f2eadb69-bc28-41a2-aff2-98fc9a2002fe", + "name": "A3_sheet56", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 132.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 132.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 132.0 + } + }, + { + "id": "A3_sheet55", + "uuid": "e1718a3d-97be-48ed-9ebb-3dd19c56dbcc", + "name": "A3_sheet55", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 135.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 135.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 135.0 + } + }, + { + "id": "A3_sheet54", + "uuid": "530896af-9bb3-4395-87eb-2ad62274c834", + "name": "A3_sheet54", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 138.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 138.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 138.0 + } + }, + { + "id": "A3_sheet53", + "uuid": "513aae02-cc92-4f65-b57a-13f59007fc1a", + "name": "A3_sheet53", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 141.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 141.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 141.0 + } + }, + { + "id": "A3_sheet52", + "uuid": "7d5d71b4-4be4-48b9-a01c-e16608ae6f56", + "name": "A3_sheet52", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 144.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 144.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 144.0 + } + }, + { + "id": "A3_sheet51", + "uuid": "42f3cf3a-9c11-4641-97c6-212660b57198", + "name": "A3_sheet51", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 147.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 147.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 147.0 + } + }, + { + "id": "A3_sheet50", + "uuid": "5bcb4fb9-bba6-495c-864a-804d6d52194e", + "name": "A3_sheet50", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 150.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 150.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 150.0 + } + }, + { + "id": "A3_sheet49", + "uuid": "5c0ae83e-2aba-418e-82b9-3599eff555c9", + "name": "A3_sheet49", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 153.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 153.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 153.0 + } + }, + { + "id": "A3_sheet48", + "uuid": "f3bae2c0-ae92-4c1d-8e9b-4ab0a94b743b", + "name": "A3_sheet48", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 156.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 156.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 156.0 + } + }, + { + "id": "A3_sheet47", + "uuid": "5fadc7e7-1756-4499-b70e-69170f5f564c", + "name": "A3_sheet47", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 159.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 159.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 159.0 + } + }, + { + "id": "A3_sheet46", + "uuid": "7d453cc2-1c76-4189-bd8a-94ae599e3513", + "name": "A3_sheet46", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 162.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 162.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 162.0 + } + }, + { + "id": "A3_sheet45", + "uuid": "264c8871-37e8-4c23-8263-d4e2631af572", + "name": "A3_sheet45", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 165.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 165.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 165.0 + } + }, + { + "id": "A3_sheet44", + "uuid": "23476000-c2db-45a1-8634-94c71318f86f", + "name": "A3_sheet44", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 168.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 168.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 168.0 + } + }, + { + "id": "A3_sheet43", + "uuid": "fa9098f1-beed-4e6b-ad8a-0e8976838f8c", + "name": "A3_sheet43", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 171.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 171.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 171.0 + } + }, + { + "id": "A3_sheet42", + "uuid": "5e4c634b-ba28-4f96-a4a6-83bb0260fe66", + "name": "A3_sheet42", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 174.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 174.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 174.0 + } + }, + { + "id": "A3_sheet41", + "uuid": "dd9786e0-942f-4da6-aa00-28a4dbd0db78", + "name": "A3_sheet41", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 177.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 177.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 177.0 + } + }, + { + "id": "A3_sheet40", + "uuid": "a8417f59-eae4-4ad8-b03e-15b34f52ecce", + "name": "A3_sheet40", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 180.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 180.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 180.0 + } + }, + { + "id": "A3_sheet39", + "uuid": "382a8123-c35c-4d21-ae2e-0f5db5b1819d", + "name": "A3_sheet39", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 183.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 183.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 183.0 + } + }, + { + "id": "A3_sheet38", + "uuid": "67672a77-0be4-4392-bf2a-724973faf350", + "name": "A3_sheet38", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 186.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 186.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 186.0 + } + }, + { + "id": "A3_sheet37", + "uuid": "77252fe0-4c7d-44c9-b9ce-0778ba519a6c", + "name": "A3_sheet37", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 189.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 189.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 189.0 + } + }, + { + "id": "A3_sheet36", + "uuid": "07e2019b-51f8-4379-882e-a5337f3f6bab", + "name": "A3_sheet36", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 192.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 192.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 192.0 + } + }, + { + "id": "A3_sheet35", + "uuid": "e5c9fd77-bdd2-4fcf-9dfa-a3b3866935b6", + "name": "A3_sheet35", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 195.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 195.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 195.0 + } + }, + { + "id": "A3_sheet34", + "uuid": "2f04ed55-a3df-4914-9616-aa8fcf5d5eac", + "name": "A3_sheet34", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 198.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 198.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 198.0 + } + }, + { + "id": "A3_sheet33", + "uuid": "c4d8014f-ff5f-4a19-9261-00093db91a9f", + "name": "A3_sheet33", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 201.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 201.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 201.0 + } + }, + { + "id": "A3_sheet32", + "uuid": "03c9d2e0-dcdb-4b98-9948-9e0cd9d62d64", + "name": "A3_sheet32", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 204.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 204.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 204.0 + } + }, + { + "id": "A3_sheet31", + "uuid": "ab8cd1e2-c325-4085-b3ee-c93deab6c4ed", + "name": "A3_sheet31", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 207.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 207.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 207.0 + } + }, + { + "id": "A3_sheet30", + "uuid": "4a2c4495-69d7-4115-9675-04f4793cf26c", + "name": "A3_sheet30", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 210.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 210.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 210.0 + } + }, + { + "id": "A3_sheet29", + "uuid": "36418d78-0ed2-41c0-92b0-0d901785ba1c", + "name": "A3_sheet29", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 213.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 213.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 213.0 + } + }, + { + "id": "A3_sheet28", + "uuid": "ee92ef9f-5bce-4e0e-b9af-451cca8e47a5", + "name": "A3_sheet28", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 216.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 216.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 216.0 + } + }, + { + "id": "A3_sheet27", + "uuid": "09a18a76-1f06-43c7-aa1e-b2bc482e830a", + "name": "A3_sheet27", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 219.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 219.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 219.0 + } + }, + { + "id": "A3_sheet26", + "uuid": "42f799f5-2e01-4183-9701-8a27e245fb95", + "name": "A3_sheet26", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 222.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 222.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 222.0 + } + }, + { + "id": "A3_sheet25", + "uuid": "1cbab626-a93c-4766-af9e-42db428fb41a", + "name": "A3_sheet25", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 225.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 225.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 225.0 + } + }, + { + "id": "A3_sheet24", + "uuid": "d8ed6a86-e447-4534-9b0a-c61588aac509", + "name": "A3_sheet24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 228.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 228.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 228.0 + } + }, + { + "id": "A3_sheet23", + "uuid": "c58332d2-d08e-479a-b4d8-d89b4281c73d", + "name": "A3_sheet23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 231.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 231.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 231.0 + } + }, + { + "id": "A3_sheet22", + "uuid": "84ab49b1-6a0e-4ed9-a1d0-ccd59160a901", + "name": "A3_sheet22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 234.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 234.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 234.0 + } + }, + { + "id": "A3_sheet21", + "uuid": "30a183ad-69e8-4438-b0f0-950e99172a54", + "name": "A3_sheet21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 237.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 237.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 237.0 + } + }, + { + "id": "A3_sheet20", + "uuid": "da021b60-6230-4927-bf84-78fd8f91ada6", + "name": "A3_sheet20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 240.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 240.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 240.0 + } + }, + { + "id": "A3_sheet19", + "uuid": "c1e2b03c-6478-4815-a484-f70462aaffaf", + "name": "A3_sheet19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 243.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 243.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 243.0 + } + }, + { + "id": "A3_sheet18", + "uuid": "dc4cd4b6-ef4a-4c0c-98bc-257634810a78", + "name": "A3_sheet18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 246.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 246.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 246.0 + } + }, + { + "id": "A3_sheet17", + "uuid": "bcd4080f-740f-451f-9150-2362747b6002", + "name": "A3_sheet17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 249.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 249.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 249.0 + } + }, + { + "id": "A3_sheet16", + "uuid": "4666227e-cd96-4fe1-b91d-ad7594caebde", + "name": "A3_sheet16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 252.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 252.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 252.0 + } + }, + { + "id": "A3_sheet15", + "uuid": "20f8d8f7-8039-4d21-9fca-6757161aeeb8", + "name": "A3_sheet15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 255.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 255.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 255.0 + } + }, + { + "id": "A3_sheet14", + "uuid": "a4742cf5-f100-4f71-b6f7-c10b813a7931", + "name": "A3_sheet14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 258.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 258.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 258.0 + } + }, + { + "id": "A3_sheet13", + "uuid": "d01c67f4-521d-486e-a0b8-e0949c8cbb3c", + "name": "A3_sheet13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 261.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 261.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 261.0 + } + }, + { + "id": "A3_sheet12", + "uuid": "a7765350-d057-4e47-9ac1-940c8507523e", + "name": "A3_sheet12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 264.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 264.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 264.0 + } + }, + { + "id": "A3_sheet11", + "uuid": "4a299804-f645-49d5-8974-1bcdea69fb52", + "name": "A3_sheet11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 267.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 267.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 267.0 + } + }, + { + "id": "A3_sheet10", + "uuid": "53b75f29-9d62-4cf1-ae41-fa49d1728b85", + "name": "A3_sheet10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 270.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 270.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 270.0 + } + }, + { + "id": "A3_sheet9", + "uuid": "b1c20334-9f49-42b7-ab02-c85110f50fa3", + "name": "A3_sheet9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 273.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 273.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 273.0 + } + }, + { + "id": "A3_sheet8", + "uuid": "b7a173f8-563e-4fac-9bc6-cdc7dbf1de47", + "name": "A3_sheet8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 276.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 276.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 276.0 + } + }, + { + "id": "A3_sheet7", + "uuid": "c393ec5c-d255-4723-aa26-e74f045f4a7a", + "name": "A3_sheet7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 279.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 279.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 279.0 + } + }, + { + "id": "A3_sheet6", + "uuid": "4ce87bc8-a593-4e70-8222-a38ae71eb747", + "name": "A3_sheet6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 282.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 282.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 282.0 + } + }, + { + "id": "A3_sheet5", + "uuid": "764cb3e1-9d56-42dd-854a-078256a82d52", + "name": "A3_sheet5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 285.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 285.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 285.0 + } + }, + { + "id": "A3_sheet4", + "uuid": "14959a36-099f-4cd5-adb0-95150b7afb93", + "name": "A3_sheet4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 288.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 288.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 288.0 + } + }, + { + "id": "A3_sheet3", + "uuid": "240c5a27-fc43-42bd-ba9b-74b18d75726f", + "name": "A3_sheet3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 291.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 291.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 291.0 + } + }, + { + "id": "A3_sheet2", + "uuid": "a9b61369-d51f-4184-ab42-349db2deed42", + "name": "A3_sheet2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 294.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 294.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 294.0 + } + }, + { + "id": "A3_sheet1", + "uuid": "525ae376-e8e6-45e6-9912-4adf6c35de92", + "name": "A3_sheet1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "39ddc123-cd1d-4763-a08a-5010635a406e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 297.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 297.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 297.0 + } + }, + { + "id": "正极壳&平垫片弹夹_正极壳&平垫片弹夹-3", + "uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "name": "正极壳&平垫片弹夹_正极壳&平垫片弹夹-3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "78b1893c-6249-4adb-b058-613d726064cf", + "type": "resource_group", + "class": "", + "pose": { + "size": { + "depth": 19.99999999999996, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 13.0, + "y": 33.0, + "z": 30.0 + }, + "position3d": { + "x": 13.0, + "y": 33.0, + "z": 30.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Magazine", + "size_x": 10, + "size_y": 10, + "size_z": 19.99999999999996, + "category": "resource_group", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_sheets": 100 + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 13.0, + "y": 33.0, + "z": 30.0 + } + }, + { + "id": "A4_sheet100", + "uuid": "985b1dbe-f7ea-4682-bb4b-4ece927fc3fd", + "name": "A4_sheet100", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "A4_sheet99", + "uuid": "a7802001-a7a2-4783-94ae-aa7ae4ad8f3a", + "name": "A4_sheet99", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.2 + } + }, + { + "id": "A4_sheet98", + "uuid": "223f848c-e9c4-4979-9f67-d3ea0ccf435e", + "name": "A4_sheet98", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.4 + } + }, + { + "id": "A4_sheet97", + "uuid": "b2f7242e-e386-444d-8248-86219de008c5", + "name": "A4_sheet97", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.6 + } + }, + { + "id": "A4_sheet96", + "uuid": "bcedc0ba-b5e4-4517-8819-37472274a4f3", + "name": "A4_sheet96", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.8 + } + }, + { + "id": "A4_sheet95", + "uuid": "f83dc60f-d2e5-4e6b-bcb8-8ba92dc4b789", + "name": "A4_sheet95", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + }, + { + "id": "A4_sheet94", + "uuid": "b3aff949-34c1-4ad0-9eeb-42449ab5a0c1", + "name": "A4_sheet94", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 1.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.2 + } + }, + { + "id": "A4_sheet93", + "uuid": "13172283-7407-4765-980a-173624eb1bd5", + "name": "A4_sheet93", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 1.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.4 + } + }, + { + "id": "A4_sheet92", + "uuid": "511a4770-0ea8-41c8-877e-ddfe8322419a", + "name": "A4_sheet92", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 1.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.6 + } + }, + { + "id": "A4_sheet91", + "uuid": "574d103b-d691-4cbf-bc3b-667389ee3dd1", + "name": "A4_sheet91", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 1.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.8 + } + }, + { + "id": "A4_sheet90", + "uuid": "d1c64cf2-f8b0-473b-907f-e4ef89bcdfb3", + "name": "A4_sheet90", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + } + }, + { + "id": "A4_sheet89", + "uuid": "81332513-0d49-4dbd-8353-d80531b30e63", + "name": "A4_sheet89", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 2.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.2 + } + }, + { + "id": "A4_sheet88", + "uuid": "4247a78f-ace3-4451-9d2f-0fbba65506b4", + "name": "A4_sheet88", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 2.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.4 + } + }, + { + "id": "A4_sheet87", + "uuid": "ffac00b4-e9a3-41da-96e3-09bacb2d04a1", + "name": "A4_sheet87", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 2.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.6 + } + }, + { + "id": "A4_sheet86", + "uuid": "303fd1cf-9481-423f-9875-61c23d48596a", + "name": "A4_sheet86", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 2.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.8 + } + }, + { + "id": "A4_sheet85", + "uuid": "7e7a031c-4dd1-4ee0-b295-4d7ec06896cc", + "name": "A4_sheet85", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.0 + } + }, + { + "id": "A4_sheet84", + "uuid": "489490dc-1b3f-46d7-83e4-90668e2a54e5", + "name": "A4_sheet84", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 3.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.2 + } + }, + { + "id": "A4_sheet83", + "uuid": "a2fe5fda-e250-4dc4-8a33-e6d423a597c1", + "name": "A4_sheet83", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 3.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.4 + } + }, + { + "id": "A4_sheet82", + "uuid": "e2883c38-397a-4a45-b2c8-90ce38177e1e", + "name": "A4_sheet82", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 3.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.6 + } + }, + { + "id": "A4_sheet81", + "uuid": "01cd3d8a-b9a3-4d23-bd63-ca2d059af5ce", + "name": "A4_sheet81", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 3.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.8 + } + }, + { + "id": "A4_sheet80", + "uuid": "9f777ecd-159d-467d-af2f-f04675cb016a", + "name": "A4_sheet80", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 4.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.0 + } + }, + { + "id": "A4_sheet79", + "uuid": "4cd417bb-9942-4c87-a718-4bbeb94361e8", + "name": "A4_sheet79", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 4.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.2 + } + }, + { + "id": "A4_sheet78", + "uuid": "6f313611-8e37-4658-bc8c-65442e9d1dc2", + "name": "A4_sheet78", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 4.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.4 + } + }, + { + "id": "A4_sheet77", + "uuid": "8f994205-92de-496b-aa04-907bcc9e3265", + "name": "A4_sheet77", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 4.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.6 + } + }, + { + "id": "A4_sheet76", + "uuid": "0d121d23-fb75-4c07-8e27-f3b3448c9a7e", + "name": "A4_sheet76", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 4.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.8 + } + }, + { + "id": "A4_sheet75", + "uuid": "f8d49553-2ca4-49bb-994f-1a87e22b2389", + "name": "A4_sheet75", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + } + }, + { + "id": "A4_sheet74", + "uuid": "afe75d6b-e00f-4a28-ba3d-ded349944ef9", + "name": "A4_sheet74", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 5.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.2 + } + }, + { + "id": "A4_sheet73", + "uuid": "4d9f1481-fffb-4446-89c9-8b537f171133", + "name": "A4_sheet73", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 5.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.4 + } + }, + { + "id": "A4_sheet72", + "uuid": "1297b6cf-2792-441f-8dd2-185ba9a50244", + "name": "A4_sheet72", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 5.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.6 + } + }, + { + "id": "A4_sheet71", + "uuid": "4de0e757-57a6-45a1-ad19-9cd5860d36ba", + "name": "A4_sheet71", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 5.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.8 + } + }, + { + "id": "A4_sheet70", + "uuid": "824ec044-1b0d-4da5-87f7-3d1bb1ad6907", + "name": "A4_sheet70", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.0 + } + }, + { + "id": "A4_sheet69", + "uuid": "c4c24176-49a1-4491-bbf4-d87e3754f5a7", + "name": "A4_sheet69", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 6.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.2 + } + }, + { + "id": "A4_sheet68", + "uuid": "0647650c-19af-4e56-acdd-2d93e0a73153", + "name": "A4_sheet68", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 6.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.4 + } + }, + { + "id": "A4_sheet67", + "uuid": "6093ddf8-e6cd-4026-aa5d-8f945610121b", + "name": "A4_sheet67", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 6.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.6 + } + }, + { + "id": "A4_sheet66", + "uuid": "98e933e4-0dbd-40e7-8fcd-62af71f9e6b8", + "name": "A4_sheet66", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 6.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.8 + } + }, + { + "id": "A4_sheet65", + "uuid": "485a038c-2bee-4ae4-a5d8-a4671626eb1b", + "name": "A4_sheet65", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 7.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.0 + } + }, + { + "id": "A4_sheet64", + "uuid": "29dcc30c-bc56-4251-804d-2f07933efa9b", + "name": "A4_sheet64", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 7.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.2 + } + }, + { + "id": "A4_sheet63", + "uuid": "869144f6-541b-41a6-b702-33b794d2bd32", + "name": "A4_sheet63", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 7.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.4 + } + }, + { + "id": "A4_sheet62", + "uuid": "e484671e-1c78-427a-a64e-d5611ad71cc5", + "name": "A4_sheet62", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 7.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.6 + } + }, + { + "id": "A4_sheet61", + "uuid": "dcf435a6-28ce-423a-bc93-e7947364e5f2", + "name": "A4_sheet61", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 7.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.8 + } + }, + { + "id": "A4_sheet60", + "uuid": "9c91b046-0726-43fb-a9db-d3d9a8f0a3a4", + "name": "A4_sheet60", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 8.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.0 + } + }, + { + "id": "A4_sheet59", + "uuid": "b6878045-741d-4cf5-a96e-6382e49366f6", + "name": "A4_sheet59", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 8.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.2 + } + }, + { + "id": "A4_sheet58", + "uuid": "76fdb8d1-4aeb-430c-a66b-9dd6d6abc054", + "name": "A4_sheet58", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 8.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.4 + } + }, + { + "id": "A4_sheet57", + "uuid": "4abcdce2-bca9-435e-b974-b11456ca9083", + "name": "A4_sheet57", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 8.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.6 + } + }, + { + "id": "A4_sheet56", + "uuid": "b3db9319-7f91-47e4-88f5-12c89a7ef33a", + "name": "A4_sheet56", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 8.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.8 + } + }, + { + "id": "A4_sheet55", + "uuid": "fcb9bfb6-c01e-427c-8e13-acc965eb9fa9", + "name": "A4_sheet55", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 9.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.0 + } + }, + { + "id": "A4_sheet54", + "uuid": "1d430d1d-8d88-440a-b08d-04855c062822", + "name": "A4_sheet54", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 9.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.2 + } + }, + { + "id": "A4_sheet53", + "uuid": "01822776-25e0-4632-b3e2-2c472358d0df", + "name": "A4_sheet53", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 9.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.4 + } + }, + { + "id": "A4_sheet52", + "uuid": "73602201-7d14-4101-98ba-aa8feb20dd73", + "name": "A4_sheet52", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 9.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.6 + } + }, + { + "id": "A4_sheet51", + "uuid": "c4a4a1fe-b224-4770-8266-1f28f343576b", + "name": "A4_sheet51", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 9.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.8 + } + }, + { + "id": "A4_sheet50", + "uuid": "1371089f-f386-4884-8f93-72419ad8b9d4", + "name": "A4_sheet50", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 10.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 10.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 10.0 + } + }, + { + "id": "A4_sheet49", + "uuid": "05b98c9e-bf2e-4911-82dd-195d2bb41613", + "name": "A4_sheet49", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 10.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 10.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 10.2 + } + }, + { + "id": "A4_sheet48", + "uuid": "da546093-ab13-426a-9cc0-ac65d83607f3", + "name": "A4_sheet48", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 10.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 10.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 10.4 + } + }, + { + "id": "A4_sheet47", + "uuid": "c2ab3379-9e8b-4b15-9869-d5bfb211ba73", + "name": "A4_sheet47", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 10.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 10.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 10.6 + } + }, + { + "id": "A4_sheet46", + "uuid": "4ce79136-5f06-4dfb-860e-b5877aae5d0f", + "name": "A4_sheet46", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 10.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 10.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 10.8 + } + }, + { + "id": "A4_sheet45", + "uuid": "6c81e1c8-75ab-4d5e-a617-49ecd0c9de84", + "name": "A4_sheet45", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 11.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 11.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 11.0 + } + }, + { + "id": "A4_sheet44", + "uuid": "e76ea5b6-8e14-49d8-a9f5-1a0ad579a2ac", + "name": "A4_sheet44", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 11.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 11.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 11.2 + } + }, + { + "id": "A4_sheet43", + "uuid": "d617b622-aae8-454c-9a37-dbeda73f6af6", + "name": "A4_sheet43", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 11.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 11.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 11.4 + } + }, + { + "id": "A4_sheet42", + "uuid": "bd960f8c-1bc7-49d6-8446-290922f8cefc", + "name": "A4_sheet42", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 11.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 11.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 11.6 + } + }, + { + "id": "A4_sheet41", + "uuid": "0e237039-2d91-4505-a724-de1faa776e86", + "name": "A4_sheet41", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 11.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 11.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 11.8 + } + }, + { + "id": "A4_sheet40", + "uuid": "116e4e6c-e398-4b91-b713-7284876642ab", + "name": "A4_sheet40", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 12.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 12.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 12.0 + } + }, + { + "id": "A4_sheet39", + "uuid": "080c04ce-9b6f-4cca-818e-e4ddc4a9b3a8", + "name": "A4_sheet39", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 12.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 12.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 12.2 + } + }, + { + "id": "A4_sheet38", + "uuid": "27212b4b-cf9e-4ce3-b841-604ff564841e", + "name": "A4_sheet38", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 12.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 12.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 12.4 + } + }, + { + "id": "A4_sheet37", + "uuid": "53f48ea1-abbe-47d0-9a70-c6754e1cbf2d", + "name": "A4_sheet37", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 12.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 12.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 12.6 + } + }, + { + "id": "A4_sheet36", + "uuid": "9c8e2136-41bd-4c18-a9df-5e628aa52806", + "name": "A4_sheet36", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 12.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 12.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 12.8 + } + }, + { + "id": "A4_sheet35", + "uuid": "d53485c1-b9cf-49a8-a672-5c7ca6b321fa", + "name": "A4_sheet35", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 13.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 13.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 13.0 + } + }, + { + "id": "A4_sheet34", + "uuid": "be75e108-804f-4f7a-b93f-2f81676b19f8", + "name": "A4_sheet34", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 13.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 13.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 13.2 + } + }, + { + "id": "A4_sheet33", + "uuid": "1da35087-8354-4d0e-a82b-a9f1eb24f308", + "name": "A4_sheet33", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 13.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 13.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 13.4 + } + }, + { + "id": "A4_sheet32", + "uuid": "0ce144c1-912f-46db-95af-9e4d2402bd01", + "name": "A4_sheet32", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 13.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 13.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 13.6 + } + }, + { + "id": "A4_sheet31", + "uuid": "93e18713-20ae-42c0-b25f-71d91a33e354", + "name": "A4_sheet31", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 13.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 13.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 13.8 + } + }, + { + "id": "A4_sheet30", + "uuid": "9ab57d70-d79a-4722-96d1-8723d073cfee", + "name": "A4_sheet30", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 14.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 14.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 14.0 + } + }, + { + "id": "A4_sheet29", + "uuid": "eb6970e5-02ed-483a-bf2f-042248f19905", + "name": "A4_sheet29", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 14.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 14.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 14.2 + } + }, + { + "id": "A4_sheet28", + "uuid": "b55a522c-2ea9-46b1-9cb5-03b9a99dbdb1", + "name": "A4_sheet28", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 14.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 14.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 14.4 + } + }, + { + "id": "A4_sheet27", + "uuid": "7fcee856-06a7-4f76-9086-2ed4de5d22d0", + "name": "A4_sheet27", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 14.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 14.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 14.6 + } + }, + { + "id": "A4_sheet26", + "uuid": "aef13f2d-14da-4a69-9f21-7c801cc8ddff", + "name": "A4_sheet26", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 14.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 14.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 14.8 + } + }, + { + "id": "A4_sheet25", + "uuid": "dde909bf-4f8a-4dc7-b73f-4299a7411d17", + "name": "A4_sheet25", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 15.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 15.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 15.0 + } + }, + { + "id": "A4_sheet24", + "uuid": "b478d437-68fa-4ec1-9279-3c7b68e189b2", + "name": "A4_sheet24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 15.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 15.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 15.2 + } + }, + { + "id": "A4_sheet23", + "uuid": "f0bb1c4f-a575-4844-98ad-05f82747d94f", + "name": "A4_sheet23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 15.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 15.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 15.4 + } + }, + { + "id": "A4_sheet22", + "uuid": "bba1f908-03d0-4170-a47c-f0069e8b275e", + "name": "A4_sheet22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 15.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 15.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 15.6 + } + }, + { + "id": "A4_sheet21", + "uuid": "5d27043d-b103-436f-a7c9-b89a53dec959", + "name": "A4_sheet21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 15.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 15.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 15.8 + } + }, + { + "id": "A4_sheet20", + "uuid": "a300917d-a5ba-41dc-8ae9-6327e32be18f", + "name": "A4_sheet20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 16.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 16.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 16.0 + } + }, + { + "id": "A4_sheet19", + "uuid": "902354e4-5bfa-4240-9460-7c156598653e", + "name": "A4_sheet19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 16.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 16.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 16.2 + } + }, + { + "id": "A4_sheet18", + "uuid": "e1fbb349-69af-4269-86b2-aea6f39099d6", + "name": "A4_sheet18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 16.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 16.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 16.4 + } + }, + { + "id": "A4_sheet17", + "uuid": "817d6ce2-cb8f-412f-9a84-417a245ef5e5", + "name": "A4_sheet17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 16.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 16.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 16.6 + } + }, + { + "id": "A4_sheet16", + "uuid": "27525a89-d807-413d-bc1f-7de1f3f730df", + "name": "A4_sheet16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 16.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 16.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 16.8 + } + }, + { + "id": "A4_sheet15", + "uuid": "b47adc2a-10eb-4cff-bdd5-903f51654a91", + "name": "A4_sheet15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 17.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 17.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 17.0 + } + }, + { + "id": "A4_sheet14", + "uuid": "4134ee2d-5947-481a-b7ab-877a5ecc05fb", + "name": "A4_sheet14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 17.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 17.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 17.2 + } + }, + { + "id": "A4_sheet13", + "uuid": "bc2448c0-2ac7-448d-bcbc-5f863316c9be", + "name": "A4_sheet13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 17.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 17.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 17.4 + } + }, + { + "id": "A4_sheet12", + "uuid": "105cf889-5751-4711-8361-0a0f6ee4e56d", + "name": "A4_sheet12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 17.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 17.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 17.6 + } + }, + { + "id": "A4_sheet11", + "uuid": "18eb0ace-54e5-404d-ad3d-086e37c364b9", + "name": "A4_sheet11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 17.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 17.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 17.8 + } + }, + { + "id": "A4_sheet10", + "uuid": "5f6f19fd-465a-4d66-a160-252743168245", + "name": "A4_sheet10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 18.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 18.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 18.0 + } + }, + { + "id": "A4_sheet9", + "uuid": "dd37c358-d4f9-4b0f-a4ab-ca537b3d90bb", + "name": "A4_sheet9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 18.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 18.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 18.2 + } + }, + { + "id": "A4_sheet8", + "uuid": "6e39d280-4cb9-4382-bff0-be9b9896fba5", + "name": "A4_sheet8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 18.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 18.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 18.4 + } + }, + { + "id": "A4_sheet7", + "uuid": "e072f1ef-df6d-40f2-b779-fe63f4e2a996", + "name": "A4_sheet7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 18.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 18.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 18.6 + } + }, + { + "id": "A4_sheet6", + "uuid": "9b2737d7-084d-4e7b-b03c-851e4a4b2f7b", + "name": "A4_sheet6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 18.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 18.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 18.8 + } + }, + { + "id": "A4_sheet5", + "uuid": "561246ca-e6ee-4dc9-9fb2-2e4c5de1d5d8", + "name": "A4_sheet5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 19.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 19.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 19.0 + } + }, + { + "id": "A4_sheet4", + "uuid": "42d430ac-780f-46d4-a333-f49b754092b9", + "name": "A4_sheet4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 19.2 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 19.2 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 19.2 + } + }, + { + "id": "A4_sheet3", + "uuid": "3271bf19-9711-4bae-afc6-df898128b3d1", + "name": "A4_sheet3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 19.4 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 19.4 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 19.4 + } + }, + { + "id": "A4_sheet2", + "uuid": "410a54af-c4d7-4f14-a1ea-15140ce4b9a5", + "name": "A4_sheet2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 19.6 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 19.6 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 19.6 + } + }, + { + "id": "A4_sheet1", + "uuid": "141fc48a-6138-4879-a56a-1fff1ea95629", + "name": "A4_sheet1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cf68a20f-1e74-4645-82a0-e40855c1dacd", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.2, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 19.8 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 19.8 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.2, + "category": "electrode_sheet", + "model": "FlatWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 19.8 + } + }, + { + "id": "正极壳&平垫片弹夹_正极壳&平垫片弹夹-4", + "uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "name": "正极壳&平垫片弹夹_正极壳&平垫片弹夹-4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "78b1893c-6249-4adb-b058-613d726064cf", + "type": "resource_group", + "class": "", + "pose": { + "size": { + "depth": 300.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 23.0, + "y": 15.6795, + "z": 30.0 + }, + "position3d": { + "x": 23.0, + "y": 15.6795, + "z": 30.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Magazine", + "size_x": 12, + "size_y": 12, + "size_z": 300.0, + "category": "resource_group", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_sheets": 100 + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 23.0, + "y": 15.6795, + "z": 30.0 + } + }, + { + "id": "A5_sheet100", + "uuid": "84add248-bb7e-4e18-ab9b-b7f7b73661d0", + "name": "A5_sheet100", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "A5_sheet99", + "uuid": "41255795-38c8-4056-bafa-7a2c88aa0cb8", + "name": "A5_sheet99", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.0 + } + }, + { + "id": "A5_sheet98", + "uuid": "306fc868-96bc-4746-8e21-6a6d6f04df34", + "name": "A5_sheet98", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.0 + } + }, + { + "id": "A5_sheet97", + "uuid": "3cc0e18e-5b93-4702-b82b-7d9930c50710", + "name": "A5_sheet97", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 9.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.0 + } + }, + { + "id": "A5_sheet96", + "uuid": "1a5edfa1-4a75-461b-b37c-85c3f8c3cb0a", + "name": "A5_sheet96", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 12.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 12.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 12.0 + } + }, + { + "id": "A5_sheet95", + "uuid": "1458d56a-54bd-4b86-b602-e3ffe88831d8", + "name": "A5_sheet95", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 15.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 15.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 15.0 + } + }, + { + "id": "A5_sheet94", + "uuid": "0a1e5d67-018f-4e42-9ecc-144bb3c7f202", + "name": "A5_sheet94", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 18.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 18.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 18.0 + } + }, + { + "id": "A5_sheet93", + "uuid": "bc3f57f7-1e93-4e4e-9940-bbe756dec4d3", + "name": "A5_sheet93", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 21.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 21.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 21.0 + } + }, + { + "id": "A5_sheet92", + "uuid": "9afbd961-2071-4218-aaca-42bc3f159ebe", + "name": "A5_sheet92", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 24.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 24.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 24.0 + } + }, + { + "id": "A5_sheet91", + "uuid": "8e4ec350-2120-4955-b356-117be06f5ddd", + "name": "A5_sheet91", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 27.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 27.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 27.0 + } + }, + { + "id": "A5_sheet90", + "uuid": "4228f6dd-4904-4c15-aa59-8c69199a25e3", + "name": "A5_sheet90", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 30.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 30.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 30.0 + } + }, + { + "id": "A5_sheet89", + "uuid": "2371a1c3-c856-4b73-b3f5-439244d22a60", + "name": "A5_sheet89", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 33.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 33.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 33.0 + } + }, + { + "id": "A5_sheet88", + "uuid": "ac572cd5-93e0-4d3a-a5ad-94fc3dae1b10", + "name": "A5_sheet88", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 36.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 36.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 36.0 + } + }, + { + "id": "A5_sheet87", + "uuid": "76c2f9cc-cfe5-4bd9-87e5-3b2224ad6bc4", + "name": "A5_sheet87", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 39.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 39.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 39.0 + } + }, + { + "id": "A5_sheet86", + "uuid": "784f0d5a-cfc3-4bf4-96b9-1be763629db1", + "name": "A5_sheet86", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 42.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 42.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 42.0 + } + }, + { + "id": "A5_sheet85", + "uuid": "2652b36e-89ea-4961-97a2-37ad9135023f", + "name": "A5_sheet85", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 45.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 45.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 45.0 + } + }, + { + "id": "A5_sheet84", + "uuid": "7e8d1b3a-3c91-4f97-8352-16d8ba54d05f", + "name": "A5_sheet84", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 48.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 48.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 48.0 + } + }, + { + "id": "A5_sheet83", + "uuid": "eba0c9ca-7ec7-4eae-aa2d-5b5f30ebd489", + "name": "A5_sheet83", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 51.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 51.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 51.0 + } + }, + { + "id": "A5_sheet82", + "uuid": "48b3ff65-1e59-4d29-8444-2132ff0c2c60", + "name": "A5_sheet82", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 54.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 54.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 54.0 + } + }, + { + "id": "A5_sheet81", + "uuid": "8bd19a89-5202-428e-91a6-1987340457cd", + "name": "A5_sheet81", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 57.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 57.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 57.0 + } + }, + { + "id": "A5_sheet80", + "uuid": "b26ac24b-0bee-4daf-a61a-478226d58a48", + "name": "A5_sheet80", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 60.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 60.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 60.0 + } + }, + { + "id": "A5_sheet79", + "uuid": "00b91b45-919f-4132-9210-59ddfb0aaec3", + "name": "A5_sheet79", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 63.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 63.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 63.0 + } + }, + { + "id": "A5_sheet78", + "uuid": "6e10955c-e27c-4509-b053-c4a4152d03df", + "name": "A5_sheet78", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 66.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 66.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 66.0 + } + }, + { + "id": "A5_sheet77", + "uuid": "cbbbeecd-8a9a-41f0-a75b-01258b17c42f", + "name": "A5_sheet77", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 69.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 69.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 69.0 + } + }, + { + "id": "A5_sheet76", + "uuid": "d7c0d9f7-540b-42cc-a606-12609ae24c72", + "name": "A5_sheet76", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 72.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 72.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 72.0 + } + }, + { + "id": "A5_sheet75", + "uuid": "f8ff580e-1f5c-4a59-b5c5-4158abc483c9", + "name": "A5_sheet75", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 75.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 75.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 75.0 + } + }, + { + "id": "A5_sheet74", + "uuid": "990c8f28-a2b1-400e-a08d-b9e27e1e34cd", + "name": "A5_sheet74", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 78.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 78.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 78.0 + } + }, + { + "id": "A5_sheet73", + "uuid": "57a8b606-992e-47f2-bdaf-1710400b97b7", + "name": "A5_sheet73", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 81.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 81.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 81.0 + } + }, + { + "id": "A5_sheet72", + "uuid": "bb3a19e3-edf3-43a6-b18f-b055db973722", + "name": "A5_sheet72", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 84.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 84.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 84.0 + } + }, + { + "id": "A5_sheet71", + "uuid": "c31cb444-9a2b-4fe3-8538-1a161bed355f", + "name": "A5_sheet71", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 87.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 87.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 87.0 + } + }, + { + "id": "A5_sheet70", + "uuid": "7f4dee82-2006-45df-8f46-3c03d1e9dbeb", + "name": "A5_sheet70", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 90.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 90.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 90.0 + } + }, + { + "id": "A5_sheet69", + "uuid": "e393090d-f3bd-4d4b-9039-454acc0de2c2", + "name": "A5_sheet69", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 93.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 93.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 93.0 + } + }, + { + "id": "A5_sheet68", + "uuid": "8edee010-845e-4a41-862c-fa8dc1ac4a8c", + "name": "A5_sheet68", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 96.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 96.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 96.0 + } + }, + { + "id": "A5_sheet67", + "uuid": "9012713f-33b2-4809-a4f8-493cd4147c2f", + "name": "A5_sheet67", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 99.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 99.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 99.0 + } + }, + { + "id": "A5_sheet66", + "uuid": "de6b3d63-b617-4454-9ce4-41a012e2567c", + "name": "A5_sheet66", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 102.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 102.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 102.0 + } + }, + { + "id": "A5_sheet65", + "uuid": "3a15d1b2-1566-44cc-a3c7-09d6e23a0be2", + "name": "A5_sheet65", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 105.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 105.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 105.0 + } + }, + { + "id": "A5_sheet64", + "uuid": "78a43f2d-7844-4995-a29e-3984dbdd2f81", + "name": "A5_sheet64", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 108.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 108.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 108.0 + } + }, + { + "id": "A5_sheet63", + "uuid": "b2645d63-506d-4d67-8663-a1bee73c2819", + "name": "A5_sheet63", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 111.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 111.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 111.0 + } + }, + { + "id": "A5_sheet62", + "uuid": "9db300ed-076c-45d7-8099-35f6d3aec694", + "name": "A5_sheet62", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 114.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 114.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 114.0 + } + }, + { + "id": "A5_sheet61", + "uuid": "7e55d24e-d1e7-42f4-b7b2-67a92e26bd87", + "name": "A5_sheet61", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 117.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 117.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 117.0 + } + }, + { + "id": "A5_sheet60", + "uuid": "862d689e-f69c-4951-9a13-4fb3b4de8b1b", + "name": "A5_sheet60", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 120.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 120.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 120.0 + } + }, + { + "id": "A5_sheet59", + "uuid": "b131ddeb-a0bc-45ca-a96c-0b0d7fc0f923", + "name": "A5_sheet59", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 123.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 123.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 123.0 + } + }, + { + "id": "A5_sheet58", + "uuid": "e345c2ca-3355-4cf5-b2fc-c07321c281fd", + "name": "A5_sheet58", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 126.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 126.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 126.0 + } + }, + { + "id": "A5_sheet57", + "uuid": "fcf16666-b41b-4596-8a66-dce101c99c88", + "name": "A5_sheet57", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 129.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 129.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 129.0 + } + }, + { + "id": "A5_sheet56", + "uuid": "532032d0-96d7-4d16-b726-f8c647b529d4", + "name": "A5_sheet56", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 132.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 132.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 132.0 + } + }, + { + "id": "A5_sheet55", + "uuid": "71334b78-68fc-4156-aad9-0c0f12adc553", + "name": "A5_sheet55", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 135.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 135.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 135.0 + } + }, + { + "id": "A5_sheet54", + "uuid": "538b5c24-b453-4c08-9d30-c8f66038f731", + "name": "A5_sheet54", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 138.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 138.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 138.0 + } + }, + { + "id": "A5_sheet53", + "uuid": "d700669a-0866-409e-96fc-2cc71ab8eee8", + "name": "A5_sheet53", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 141.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 141.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 141.0 + } + }, + { + "id": "A5_sheet52", + "uuid": "4c4e3adb-23c2-41bf-9306-cf0734248ade", + "name": "A5_sheet52", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 144.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 144.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 144.0 + } + }, + { + "id": "A5_sheet51", + "uuid": "c1d0e27e-aee1-4350-ba28-f14ea77a70d8", + "name": "A5_sheet51", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 147.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 147.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 147.0 + } + }, + { + "id": "A5_sheet50", + "uuid": "02347c57-532a-4f19-96f2-b4b89d09f9bb", + "name": "A5_sheet50", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 150.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 150.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 150.0 + } + }, + { + "id": "A5_sheet49", + "uuid": "166b7b39-889a-4397-823f-a7568c313441", + "name": "A5_sheet49", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 153.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 153.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 153.0 + } + }, + { + "id": "A5_sheet48", + "uuid": "6e139fb9-5e6f-40ca-84cb-6e315a902f58", + "name": "A5_sheet48", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 156.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 156.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 156.0 + } + }, + { + "id": "A5_sheet47", + "uuid": "1016e4ea-2d35-474c-aba1-374fe1219cfc", + "name": "A5_sheet47", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 159.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 159.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 159.0 + } + }, + { + "id": "A5_sheet46", + "uuid": "0b8dd97b-0530-48e1-ba01-58a539cddc7b", + "name": "A5_sheet46", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 162.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 162.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 162.0 + } + }, + { + "id": "A5_sheet45", + "uuid": "0a4d7c4c-be27-4d90-aa2e-639f05f69479", + "name": "A5_sheet45", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 165.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 165.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 165.0 + } + }, + { + "id": "A5_sheet44", + "uuid": "284ef9fa-734f-43c6-b7f6-f39ba795da5b", + "name": "A5_sheet44", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 168.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 168.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 168.0 + } + }, + { + "id": "A5_sheet43", + "uuid": "dcaf7720-ab43-46a8-ac15-652e33a8e952", + "name": "A5_sheet43", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 171.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 171.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 171.0 + } + }, + { + "id": "A5_sheet42", + "uuid": "f2d74e7c-e5d3-4089-a578-71e0558c9cf5", + "name": "A5_sheet42", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 174.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 174.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 174.0 + } + }, + { + "id": "A5_sheet41", + "uuid": "c8b30ba5-dd5c-4bb8-bca9-f2e205dc21ea", + "name": "A5_sheet41", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 177.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 177.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 177.0 + } + }, + { + "id": "A5_sheet40", + "uuid": "a79b6718-ed8e-4c5b-af9d-74e46b828baf", + "name": "A5_sheet40", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 180.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 180.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 180.0 + } + }, + { + "id": "A5_sheet39", + "uuid": "ec245367-da4b-43b1-b06a-68e55db6242b", + "name": "A5_sheet39", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 183.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 183.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 183.0 + } + }, + { + "id": "A5_sheet38", + "uuid": "6b5521ba-9cc1-42b9-9d08-935d73dd2582", + "name": "A5_sheet38", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 186.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 186.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 186.0 + } + }, + { + "id": "A5_sheet37", + "uuid": "71803cb6-b34f-430c-ab7b-d50efb3e5db2", + "name": "A5_sheet37", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 189.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 189.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 189.0 + } + }, + { + "id": "A5_sheet36", + "uuid": "d874532b-99ba-4603-b68b-b42d787ac330", + "name": "A5_sheet36", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 192.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 192.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 192.0 + } + }, + { + "id": "A5_sheet35", + "uuid": "0cffdadf-7677-4b41-8008-a4e9bda6daa4", + "name": "A5_sheet35", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 195.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 195.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 195.0 + } + }, + { + "id": "A5_sheet34", + "uuid": "e558e2d5-9522-4822-b54b-72da6db7debc", + "name": "A5_sheet34", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 198.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 198.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 198.0 + } + }, + { + "id": "A5_sheet33", + "uuid": "306f8532-01e7-4f94-92e0-2aff2b8970b1", + "name": "A5_sheet33", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 201.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 201.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 201.0 + } + }, + { + "id": "A5_sheet32", + "uuid": "a442ca01-a8b5-4fcf-b4b6-c5ee8943b967", + "name": "A5_sheet32", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 204.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 204.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 204.0 + } + }, + { + "id": "A5_sheet31", + "uuid": "60148f57-4e3b-44d9-b858-495f8fbcb69d", + "name": "A5_sheet31", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 207.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 207.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 207.0 + } + }, + { + "id": "A5_sheet30", + "uuid": "14dd2038-ef3e-4c44-9acc-61ea05cdfe68", + "name": "A5_sheet30", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 210.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 210.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 210.0 + } + }, + { + "id": "A5_sheet29", + "uuid": "91c225a6-4777-4294-8da6-b54e0a75e3a8", + "name": "A5_sheet29", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 213.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 213.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 213.0 + } + }, + { + "id": "A5_sheet28", + "uuid": "243eb3d4-dc87-4183-a181-0c0b61a8bffc", + "name": "A5_sheet28", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 216.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 216.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 216.0 + } + }, + { + "id": "A5_sheet27", + "uuid": "57b28c9b-f144-431f-b3b6-2a8c344cd455", + "name": "A5_sheet27", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 219.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 219.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 219.0 + } + }, + { + "id": "A5_sheet26", + "uuid": "7695bad1-c7c1-4edf-8e0a-b65d5e84d824", + "name": "A5_sheet26", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 222.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 222.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 222.0 + } + }, + { + "id": "A5_sheet25", + "uuid": "d913719d-c4ae-4f3a-a6b2-7ff720b1ee41", + "name": "A5_sheet25", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 225.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 225.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 225.0 + } + }, + { + "id": "A5_sheet24", + "uuid": "fb9351c5-52d7-4bbd-896f-95693a07c510", + "name": "A5_sheet24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 228.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 228.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 228.0 + } + }, + { + "id": "A5_sheet23", + "uuid": "9513d7ae-31d6-4e60-a4fd-ecdc0e26ea94", + "name": "A5_sheet23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 231.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 231.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 231.0 + } + }, + { + "id": "A5_sheet22", + "uuid": "6589c6d4-15a9-414f-8866-59df9338cb44", + "name": "A5_sheet22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 234.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 234.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 234.0 + } + }, + { + "id": "A5_sheet21", + "uuid": "43cc34e4-cb13-4677-a836-4453af4603c3", + "name": "A5_sheet21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 237.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 237.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 237.0 + } + }, + { + "id": "A5_sheet20", + "uuid": "927854c0-9cd5-4881-962a-4f738a7170b4", + "name": "A5_sheet20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 240.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 240.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 240.0 + } + }, + { + "id": "A5_sheet19", + "uuid": "8121a424-4d33-4307-9568-006f81b422e2", + "name": "A5_sheet19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 243.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 243.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 243.0 + } + }, + { + "id": "A5_sheet18", + "uuid": "c02f1add-bddf-4021-a35e-759b9608c068", + "name": "A5_sheet18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 246.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 246.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 246.0 + } + }, + { + "id": "A5_sheet17", + "uuid": "e024abb2-d031-478b-bc8b-4181b131a3d0", + "name": "A5_sheet17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 249.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 249.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 249.0 + } + }, + { + "id": "A5_sheet16", + "uuid": "5d9cafb5-6517-472e-97c7-0aa3fa371c47", + "name": "A5_sheet16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 252.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 252.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 252.0 + } + }, + { + "id": "A5_sheet15", + "uuid": "4f785093-ec1a-4b7b-9f9f-931d817fa328", + "name": "A5_sheet15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 255.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 255.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 255.0 + } + }, + { + "id": "A5_sheet14", + "uuid": "6990e70d-1500-4583-85f6-abe8de65468d", + "name": "A5_sheet14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 258.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 258.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 258.0 + } + }, + { + "id": "A5_sheet13", + "uuid": "747772d1-2201-44c7-80ad-23ebab83689f", + "name": "A5_sheet13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 261.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 261.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 261.0 + } + }, + { + "id": "A5_sheet12", + "uuid": "93529ce6-4400-47e5-b551-2dc5e370ddde", + "name": "A5_sheet12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 264.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 264.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 264.0 + } + }, + { + "id": "A5_sheet11", + "uuid": "9bbcf241-d23b-47c8-95de-bbcbc1bcf088", + "name": "A5_sheet11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 267.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 267.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 267.0 + } + }, + { + "id": "A5_sheet10", + "uuid": "c14f4369-68ff-4e77-95dc-889a97e15ebf", + "name": "A5_sheet10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 270.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 270.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 270.0 + } + }, + { + "id": "A5_sheet9", + "uuid": "84911fb0-4b1a-45bc-9ba3-f0d2c71d386c", + "name": "A5_sheet9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 273.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 273.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 273.0 + } + }, + { + "id": "A5_sheet8", + "uuid": "173c8269-967b-4a09-a5fe-fc9c07b47d72", + "name": "A5_sheet8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 276.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 276.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 276.0 + } + }, + { + "id": "A5_sheet7", + "uuid": "0d387e28-64f7-49ac-bdcb-b7517a9802dd", + "name": "A5_sheet7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 279.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 279.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 279.0 + } + }, + { + "id": "A5_sheet6", + "uuid": "6aab1a6a-5c2e-4fbc-afd9-1cc19b8af7fc", + "name": "A5_sheet6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 282.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 282.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 282.0 + } + }, + { + "id": "A5_sheet5", + "uuid": "fc7d03d2-d3d5-499c-8c25-dbad476910f3", + "name": "A5_sheet5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 285.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 285.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 285.0 + } + }, + { + "id": "A5_sheet4", + "uuid": "ebb71573-654a-4c92-9ccc-3214867150ef", + "name": "A5_sheet4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 288.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 288.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 288.0 + } + }, + { + "id": "A5_sheet3", + "uuid": "17d7f283-cc3a-4d62-92f9-64e419ffb2f9", + "name": "A5_sheet3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 291.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 291.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 291.0 + } + }, + { + "id": "A5_sheet2", + "uuid": "b12b7abd-f851-4354-ac3a-ef3e3e48ae0a", + "name": "A5_sheet2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 294.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 294.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 294.0 + } + }, + { + "id": "A5_sheet1", + "uuid": "4d12e417-b080-4d59-9b13-ad104da7ee94", + "name": "A5_sheet1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "01b36763-8774-4f8b-871e-7ad9b30b2682", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 297.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 297.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 297.0 + } + }, + { + "id": "正极壳&平垫片弹夹_正极壳&平垫片弹夹-5", + "uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "name": "正极壳&平垫片弹夹_正极壳&平垫片弹夹-5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "78b1893c-6249-4adb-b058-613d726064cf", + "type": "resource_group", + "class": "", + "pose": { + "size": { + "depth": 300.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 43.0, + "y": 15.6795, + "z": 30.0 + }, + "position3d": { + "x": 43.0, + "y": 15.6795, + "z": 30.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Magazine", + "size_x": 12, + "size_y": 12, + "size_z": 300.0, + "category": "resource_group", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_sheets": 100 + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 43.0, + "y": 15.6795, + "z": 30.0 + } + }, + { + "id": "A6_sheet100", + "uuid": "0d6415bd-6a33-430c-ad16-0adb5381fd1a", + "name": "A6_sheet100", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "A6_sheet99", + "uuid": "ea2c331e-b902-40ae-8eab-2f0bf85626ec", + "name": "A6_sheet99", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.0 + } + }, + { + "id": "A6_sheet98", + "uuid": "310588cd-4694-48d7-b5d8-fe9ea403bb62", + "name": "A6_sheet98", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.0 + } + }, + { + "id": "A6_sheet97", + "uuid": "b46ca624-db56-451b-a9b7-57f11847c012", + "name": "A6_sheet97", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 9.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.0 + } + }, + { + "id": "A6_sheet96", + "uuid": "bb9e6821-fbdd-4c2b-bbd7-f136559dbbe5", + "name": "A6_sheet96", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 12.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 12.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 12.0 + } + }, + { + "id": "A6_sheet95", + "uuid": "e6ad222f-6b86-4b55-ae0f-e75d673f29f4", + "name": "A6_sheet95", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 15.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 15.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 15.0 + } + }, + { + "id": "A6_sheet94", + "uuid": "cdd9c2dd-b314-4614-9528-8fea3f67e3ff", + "name": "A6_sheet94", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 18.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 18.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 18.0 + } + }, + { + "id": "A6_sheet93", + "uuid": "f0e11f38-fe71-4af1-ab43-20d2503d9b26", + "name": "A6_sheet93", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 21.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 21.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 21.0 + } + }, + { + "id": "A6_sheet92", + "uuid": "c5b7ebe5-ce49-4e1f-bca4-b0d500c4e995", + "name": "A6_sheet92", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 24.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 24.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 24.0 + } + }, + { + "id": "A6_sheet91", + "uuid": "d7e21111-63db-4ac2-a083-e0db97835ea2", + "name": "A6_sheet91", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 27.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 27.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 27.0 + } + }, + { + "id": "A6_sheet90", + "uuid": "25a1a507-2a1a-4af1-8328-11497d458b89", + "name": "A6_sheet90", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 30.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 30.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 30.0 + } + }, + { + "id": "A6_sheet89", + "uuid": "47292bce-2930-433f-a810-d8fa0587909f", + "name": "A6_sheet89", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 33.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 33.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 33.0 + } + }, + { + "id": "A6_sheet88", + "uuid": "7f46fd5e-5a9e-47cd-9b70-dd5aec55c02e", + "name": "A6_sheet88", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 36.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 36.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 36.0 + } + }, + { + "id": "A6_sheet87", + "uuid": "04206e2e-b632-45d8-be6b-a4f26fbb6a6d", + "name": "A6_sheet87", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 39.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 39.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 39.0 + } + }, + { + "id": "A6_sheet86", + "uuid": "b7106874-6586-4d5c-82d2-8190e9ff3156", + "name": "A6_sheet86", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 42.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 42.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 42.0 + } + }, + { + "id": "A6_sheet85", + "uuid": "addd8925-a556-4bac-8c18-fc64449cc7ec", + "name": "A6_sheet85", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 45.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 45.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 45.0 + } + }, + { + "id": "A6_sheet84", + "uuid": "74ea954f-e12b-4454-80aa-d6d16a9e2349", + "name": "A6_sheet84", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 48.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 48.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 48.0 + } + }, + { + "id": "A6_sheet83", + "uuid": "babcdf8a-8b18-4f04-aa5e-959f86ffc5ee", + "name": "A6_sheet83", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 51.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 51.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 51.0 + } + }, + { + "id": "A6_sheet82", + "uuid": "6e715111-9c2f-4978-a843-798bee9a0baa", + "name": "A6_sheet82", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 54.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 54.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 54.0 + } + }, + { + "id": "A6_sheet81", + "uuid": "918db2a3-b223-48b5-9ba4-b168058e8f52", + "name": "A6_sheet81", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 57.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 57.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 57.0 + } + }, + { + "id": "A6_sheet80", + "uuid": "421f8b2d-081a-4692-ac24-2b569f2852ad", + "name": "A6_sheet80", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 60.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 60.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 60.0 + } + }, + { + "id": "A6_sheet79", + "uuid": "709ceaba-ea3e-4a0f-a517-a72736a03a2e", + "name": "A6_sheet79", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 63.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 63.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 63.0 + } + }, + { + "id": "A6_sheet78", + "uuid": "e2b4d8c8-671a-442e-b53d-34dbff83a3e8", + "name": "A6_sheet78", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 66.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 66.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 66.0 + } + }, + { + "id": "A6_sheet77", + "uuid": "f5a4a6f3-8bdc-4df0-a3df-fe6203e94885", + "name": "A6_sheet77", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 69.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 69.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 69.0 + } + }, + { + "id": "A6_sheet76", + "uuid": "fef38cc9-581f-4792-8d24-a769f8367c4b", + "name": "A6_sheet76", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 72.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 72.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 72.0 + } + }, + { + "id": "A6_sheet75", + "uuid": "fb48a3b5-517d-45a7-9b6e-dce19ae395ac", + "name": "A6_sheet75", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 75.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 75.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 75.0 + } + }, + { + "id": "A6_sheet74", + "uuid": "60cd35c0-fc0a-4875-8839-4592df521df0", + "name": "A6_sheet74", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 78.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 78.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 78.0 + } + }, + { + "id": "A6_sheet73", + "uuid": "e345d2ab-d341-4726-baf4-06a10e9ae17a", + "name": "A6_sheet73", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 81.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 81.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 81.0 + } + }, + { + "id": "A6_sheet72", + "uuid": "e2762952-e10f-4f42-bfa3-357237054fed", + "name": "A6_sheet72", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 84.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 84.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 84.0 + } + }, + { + "id": "A6_sheet71", + "uuid": "cfb7e904-8cf7-41cf-92b8-cd6570ddd8d4", + "name": "A6_sheet71", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 87.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 87.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 87.0 + } + }, + { + "id": "A6_sheet70", + "uuid": "9791eaf8-91c5-4423-8182-ecbb6da966ba", + "name": "A6_sheet70", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 90.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 90.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 90.0 + } + }, + { + "id": "A6_sheet69", + "uuid": "843f3581-31a3-4665-aca2-2d25d412f4af", + "name": "A6_sheet69", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 93.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 93.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 93.0 + } + }, + { + "id": "A6_sheet68", + "uuid": "2b720cf5-8f5e-4d14-b573-b0a222750dcd", + "name": "A6_sheet68", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 96.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 96.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 96.0 + } + }, + { + "id": "A6_sheet67", + "uuid": "a2fc36f1-861e-41cc-826b-07056de65ace", + "name": "A6_sheet67", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 99.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 99.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 99.0 + } + }, + { + "id": "A6_sheet66", + "uuid": "75a45bfa-8c16-46f4-af73-5f12c8f3273c", + "name": "A6_sheet66", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 102.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 102.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 102.0 + } + }, + { + "id": "A6_sheet65", + "uuid": "cd9c5885-7db2-4eeb-b0b2-0ca87f055f7e", + "name": "A6_sheet65", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 105.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 105.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 105.0 + } + }, + { + "id": "A6_sheet64", + "uuid": "aa592de6-917d-4b5f-8eda-4b1395bbd44b", + "name": "A6_sheet64", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 108.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 108.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 108.0 + } + }, + { + "id": "A6_sheet63", + "uuid": "14a7c0ce-bc74-40e2-b205-8ed8dc32bd8d", + "name": "A6_sheet63", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 111.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 111.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 111.0 + } + }, + { + "id": "A6_sheet62", + "uuid": "80b9ea60-21b7-4bf6-a1d3-cfe4ce0339d2", + "name": "A6_sheet62", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 114.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 114.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 114.0 + } + }, + { + "id": "A6_sheet61", + "uuid": "1139baed-a085-4541-96c6-e81c2b0b5d56", + "name": "A6_sheet61", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 117.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 117.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 117.0 + } + }, + { + "id": "A6_sheet60", + "uuid": "2f70c16e-0b92-4557-8142-0a44ddf8e964", + "name": "A6_sheet60", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 120.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 120.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 120.0 + } + }, + { + "id": "A6_sheet59", + "uuid": "affa0a65-ffb5-458b-a72f-cb960d147a4e", + "name": "A6_sheet59", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 123.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 123.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 123.0 + } + }, + { + "id": "A6_sheet58", + "uuid": "0a8e09c5-436b-47f3-81ad-6fe3e25922e2", + "name": "A6_sheet58", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 126.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 126.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 126.0 + } + }, + { + "id": "A6_sheet57", + "uuid": "f5c104f4-612f-410c-ac55-c231412576fb", + "name": "A6_sheet57", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 129.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 129.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 129.0 + } + }, + { + "id": "A6_sheet56", + "uuid": "44cc1c00-31c8-4f00-8a33-c48a771d2dad", + "name": "A6_sheet56", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 132.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 132.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 132.0 + } + }, + { + "id": "A6_sheet55", + "uuid": "8f68a204-0d2b-4bde-acb6-1cfacae11915", + "name": "A6_sheet55", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 135.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 135.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 135.0 + } + }, + { + "id": "A6_sheet54", + "uuid": "942cad55-e4e4-48b7-9c4a-f6818d508f84", + "name": "A6_sheet54", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 138.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 138.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 138.0 + } + }, + { + "id": "A6_sheet53", + "uuid": "df728606-68ae-4a2e-93c0-ff353c041d11", + "name": "A6_sheet53", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 141.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 141.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 141.0 + } + }, + { + "id": "A6_sheet52", + "uuid": "ce8538fd-6a88-4f88-9bfc-1c980a785b67", + "name": "A6_sheet52", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 144.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 144.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 144.0 + } + }, + { + "id": "A6_sheet51", + "uuid": "0073e0e2-7e13-4fc0-8cf7-05437c1ee13b", + "name": "A6_sheet51", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 147.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 147.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 147.0 + } + }, + { + "id": "A6_sheet50", + "uuid": "303b473e-0994-4ab2-926c-f2cb825ec314", + "name": "A6_sheet50", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 150.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 150.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 150.0 + } + }, + { + "id": "A6_sheet49", + "uuid": "5b62590e-3760-4dd2-8d81-bdb3efe93c29", + "name": "A6_sheet49", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 153.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 153.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 153.0 + } + }, + { + "id": "A6_sheet48", + "uuid": "60ad0363-193b-4696-be48-0368c051be30", + "name": "A6_sheet48", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 156.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 156.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 156.0 + } + }, + { + "id": "A6_sheet47", + "uuid": "0b588b22-0c51-4426-a786-8f2e22d365df", + "name": "A6_sheet47", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 159.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 159.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 159.0 + } + }, + { + "id": "A6_sheet46", + "uuid": "ac4c7c2a-2065-4a70-9e25-202f7bcc8672", + "name": "A6_sheet46", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 162.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 162.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 162.0 + } + }, + { + "id": "A6_sheet45", + "uuid": "f7c0b13a-3371-4a91-b3d9-929561258fe0", + "name": "A6_sheet45", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 165.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 165.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 165.0 + } + }, + { + "id": "A6_sheet44", + "uuid": "ee9a0f4b-705c-4c72-8ce6-60bcda110960", + "name": "A6_sheet44", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 168.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 168.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 168.0 + } + }, + { + "id": "A6_sheet43", + "uuid": "dee84a97-ed03-4a0b-b347-47be1dbdc598", + "name": "A6_sheet43", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 171.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 171.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 171.0 + } + }, + { + "id": "A6_sheet42", + "uuid": "971d87ee-ad77-407b-aaa0-e4cc892f9bc1", + "name": "A6_sheet42", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 174.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 174.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 174.0 + } + }, + { + "id": "A6_sheet41", + "uuid": "a8a899bc-c27d-4b2e-8c98-cd0e1d79633d", + "name": "A6_sheet41", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 177.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 177.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 177.0 + } + }, + { + "id": "A6_sheet40", + "uuid": "e0f566a4-ceb9-43e9-89fc-7e7354d86d62", + "name": "A6_sheet40", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 180.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 180.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 180.0 + } + }, + { + "id": "A6_sheet39", + "uuid": "543b29ee-8f15-4dee-b938-3d2fee6a71ac", + "name": "A6_sheet39", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 183.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 183.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 183.0 + } + }, + { + "id": "A6_sheet38", + "uuid": "f3f29777-261b-4729-af03-0c72eb0bb49f", + "name": "A6_sheet38", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 186.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 186.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 186.0 + } + }, + { + "id": "A6_sheet37", + "uuid": "2614bcad-b2a4-4de0-b8db-5f93159850c1", + "name": "A6_sheet37", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 189.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 189.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 189.0 + } + }, + { + "id": "A6_sheet36", + "uuid": "c1b281b6-b2ec-4a1c-99aa-cda3c7fc8f48", + "name": "A6_sheet36", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 192.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 192.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 192.0 + } + }, + { + "id": "A6_sheet35", + "uuid": "941f1aee-4774-4cee-951e-88fcd980ca02", + "name": "A6_sheet35", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 195.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 195.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 195.0 + } + }, + { + "id": "A6_sheet34", + "uuid": "48b0b766-331a-4a83-8479-6e02b4781575", + "name": "A6_sheet34", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 198.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 198.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 198.0 + } + }, + { + "id": "A6_sheet33", + "uuid": "9b791b5b-d9ae-4a44-ab26-dd24194b902d", + "name": "A6_sheet33", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 201.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 201.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 201.0 + } + }, + { + "id": "A6_sheet32", + "uuid": "d7b21f09-8eb8-483e-83e4-45141ffba965", + "name": "A6_sheet32", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 204.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 204.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 204.0 + } + }, + { + "id": "A6_sheet31", + "uuid": "196b562c-f68e-4014-9763-15665abb9d43", + "name": "A6_sheet31", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 207.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 207.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 207.0 + } + }, + { + "id": "A6_sheet30", + "uuid": "e0233de6-a7e6-49ba-9028-3f8ad149d7fa", + "name": "A6_sheet30", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 210.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 210.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 210.0 + } + }, + { + "id": "A6_sheet29", + "uuid": "a5bf9cea-1ec0-4d95-b6c9-668bf1810785", + "name": "A6_sheet29", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 213.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 213.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 213.0 + } + }, + { + "id": "A6_sheet28", + "uuid": "59e1019f-ecdc-4bc3-8975-86d94e1e7bca", + "name": "A6_sheet28", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 216.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 216.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 216.0 + } + }, + { + "id": "A6_sheet27", + "uuid": "96f7066d-3e4d-4359-8dfb-638aae01ad05", + "name": "A6_sheet27", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 219.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 219.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 219.0 + } + }, + { + "id": "A6_sheet26", + "uuid": "73bd5641-ad94-42b2-b439-192aa2ebd654", + "name": "A6_sheet26", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 222.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 222.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 222.0 + } + }, + { + "id": "A6_sheet25", + "uuid": "5c194c5f-12e1-47e6-9563-9bf2ac6ba165", + "name": "A6_sheet25", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 225.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 225.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 225.0 + } + }, + { + "id": "A6_sheet24", + "uuid": "317cca8a-e548-49b5-8a63-f41fab145099", + "name": "A6_sheet24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 228.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 228.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 228.0 + } + }, + { + "id": "A6_sheet23", + "uuid": "aa89f430-e862-490b-b380-f4ec94ac8065", + "name": "A6_sheet23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 231.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 231.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 231.0 + } + }, + { + "id": "A6_sheet22", + "uuid": "42c33382-dbe9-4ee0-aa34-62850ad20277", + "name": "A6_sheet22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 234.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 234.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 234.0 + } + }, + { + "id": "A6_sheet21", + "uuid": "f257a466-071f-481c-b47b-6ffdd12bda34", + "name": "A6_sheet21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 237.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 237.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 237.0 + } + }, + { + "id": "A6_sheet20", + "uuid": "252c8f47-85a8-4dac-8ff0-c4c0ed3ec7c9", + "name": "A6_sheet20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 240.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 240.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 240.0 + } + }, + { + "id": "A6_sheet19", + "uuid": "453dab53-0d79-4ba0-8975-d7b9957a0e2e", + "name": "A6_sheet19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 243.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 243.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 243.0 + } + }, + { + "id": "A6_sheet18", + "uuid": "2e8638c2-50bc-4de4-a8e4-bb328569169b", + "name": "A6_sheet18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 246.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 246.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 246.0 + } + }, + { + "id": "A6_sheet17", + "uuid": "81b62ce8-594a-4557-9f66-99e15b80d4b0", + "name": "A6_sheet17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 249.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 249.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 249.0 + } + }, + { + "id": "A6_sheet16", + "uuid": "32f40683-731d-4f24-8956-cf2f90151f52", + "name": "A6_sheet16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 252.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 252.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 252.0 + } + }, + { + "id": "A6_sheet15", + "uuid": "42a2e480-abc9-4424-a555-eddd300b612f", + "name": "A6_sheet15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 255.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 255.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 255.0 + } + }, + { + "id": "A6_sheet14", + "uuid": "147542f7-cab2-4011-8d3b-89af65c2595f", + "name": "A6_sheet14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 258.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 258.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 258.0 + } + }, + { + "id": "A6_sheet13", + "uuid": "d2a3a256-2d25-4297-a597-37b9f76b081e", + "name": "A6_sheet13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 261.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 261.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 261.0 + } + }, + { + "id": "A6_sheet12", + "uuid": "ce399fab-2612-4d3a-b327-a993f306a251", + "name": "A6_sheet12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 264.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 264.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 264.0 + } + }, + { + "id": "A6_sheet11", + "uuid": "1560c940-0a30-47f0-bb0e-82ea2026fca9", + "name": "A6_sheet11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 267.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 267.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 267.0 + } + }, + { + "id": "A6_sheet10", + "uuid": "e774f869-4d36-43d6-bb65-2b2ccd6b2f4d", + "name": "A6_sheet10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 270.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 270.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 270.0 + } + }, + { + "id": "A6_sheet9", + "uuid": "cf672035-2293-4fc2-8726-6bcb90bedff1", + "name": "A6_sheet9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 273.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 273.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 273.0 + } + }, + { + "id": "A6_sheet8", + "uuid": "5f66c41f-0365-40c6-896c-21c830f31e10", + "name": "A6_sheet8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 276.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 276.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 276.0 + } + }, + { + "id": "A6_sheet7", + "uuid": "3cb60225-648c-4381-a75b-393663aa802a", + "name": "A6_sheet7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 279.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 279.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 279.0 + } + }, + { + "id": "A6_sheet6", + "uuid": "1ed2b6a4-67d4-446d-9e1a-55550f7f5ad1", + "name": "A6_sheet6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 282.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 282.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 282.0 + } + }, + { + "id": "A6_sheet5", + "uuid": "cee392a9-8685-4bd8-9188-5fc46ee95ac2", + "name": "A6_sheet5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 285.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 285.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 285.0 + } + }, + { + "id": "A6_sheet4", + "uuid": "dcb1ebca-dad5-4d17-a872-47a4cc1ae87c", + "name": "A6_sheet4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 288.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 288.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 288.0 + } + }, + { + "id": "A6_sheet3", + "uuid": "bcd9f171-5ef6-4853-ba1b-861793b192a3", + "name": "A6_sheet3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 291.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 291.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 291.0 + } + }, + { + "id": "A6_sheet2", + "uuid": "95d8a666-eac0-4ded-a99e-c0b6d8f1a543", + "name": "A6_sheet2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 294.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 294.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 294.0 + } + }, + { + "id": "A6_sheet1", + "uuid": "b686cdca-aa34-4fb8-883b-731eb581552a", + "name": "A6_sheet1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "ee66dd5c-61e6-4577-923c-77d55416f76e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 3.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 297.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 297.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 3.0, + "category": "electrode_sheet", + "model": "PositiveCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 297.0 + } + }, + { + "id": "负极壳&弹垫片弹夹", + "uuid": "7aa60ad0-ad6a-45c5-a58e-3ed5ae37152e", + "name": "负极壳&弹垫片弹夹", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "24b64c33-ddb4-409e-8b71-aa3721c52a0f", + "type": "magazine_holder", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 80.0, + "height": 80.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 474.0, + "y": 276.0, + "z": 0.0 + }, + "position3d": { + "x": 474.0, + "y": 276.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "MagazineHolder", + "size_x": 80.0, + "size_y": 80.0, + "size_z": 40.0, + "category": "magazine_holder", + "model": "MagazineHolder_6_Anode", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "负极壳&弹垫片弹夹_负极壳&弹垫片弹夹-0", + "A2": "负极壳&弹垫片弹夹_负极壳&弹垫片弹夹-1", + "A3": "负极壳&弹垫片弹夹_负极壳&弹垫片弹夹-2", + "A4": "负极壳&弹垫片弹夹_负极壳&弹垫片弹夹-3", + "A5": "负极壳&弹垫片弹夹_负极壳&弹垫片弹夹-4", + "A6": "负极壳&弹垫片弹夹_负极壳&弹垫片弹夹-5" + }, + "hole_diameter": 14.0, + "hole_depth": 10.0, + "max_sheets_per_hole": 100 + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 474.0, + "y": 276.0, + "z": 0.0 + } + }, + { + "id": "负极壳&弹垫片弹夹_负极壳&弹垫片弹夹-0", + "uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "name": "负极壳&弹垫片弹夹_负极壳&弹垫片弹夹-0", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "7aa60ad0-ad6a-45c5-a58e-3ed5ae37152e", + "type": "resource_group", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 53.0, + "y": 33.0, + "z": 30.0 + }, + "position3d": { + "x": 53.0, + "y": 33.0, + "z": 30.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Magazine", + "size_x": 10, + "size_y": 10, + "size_z": 50.0, + "category": "resource_group", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_sheets": 100 + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 53.0, + "y": 33.0, + "z": 30.0 + } + }, + { + "id": "A1_sheet100", + "uuid": "2d6f0e16-5c45-4500-a234-4945f0bcbe9d", + "name": "A1_sheet100", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "A1_sheet99", + "uuid": "0a2a41c7-224b-48ec-9e4b-311b1a60015a", + "name": "A1_sheet99", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.5 + } + }, + { + "id": "A1_sheet98", + "uuid": "53a4aa64-dab3-42b3-862a-7c7f03fb9868", + "name": "A1_sheet98", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + }, + { + "id": "A1_sheet97", + "uuid": "d4bf580c-558e-4d33-8fed-1ad74cab56bb", + "name": "A1_sheet97", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 1.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.5 + } + }, + { + "id": "A1_sheet96", + "uuid": "90c5eb08-3cc3-40d9-916f-02f5caab7af7", + "name": "A1_sheet96", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + } + }, + { + "id": "A1_sheet95", + "uuid": "bb5623d9-b1cc-4135-827d-eae9b61532ac", + "name": "A1_sheet95", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.5 + } + }, + { + "id": "A1_sheet94", + "uuid": "4379da7d-0d4c-40a9-ab28-1ee41ba048fc", + "name": "A1_sheet94", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.0 + } + }, + { + "id": "A1_sheet93", + "uuid": "ba6086dd-8987-4c3d-92a5-72c0ba5166e9", + "name": "A1_sheet93", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.5 + } + }, + { + "id": "A1_sheet92", + "uuid": "58830602-8ac6-418a-8131-e953bbdaa48c", + "name": "A1_sheet92", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 4.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.0 + } + }, + { + "id": "A1_sheet91", + "uuid": "020e87f0-eb1d-4ca8-b0e2-a8a618723a09", + "name": "A1_sheet91", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 4.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.5 + } + }, + { + "id": "A1_sheet90", + "uuid": "d69f525d-a7cb-41ab-a715-fa2192b30dc5", + "name": "A1_sheet90", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + } + }, + { + "id": "A1_sheet89", + "uuid": "9fdf696f-3179-492f-bf9f-f62a603f1070", + "name": "A1_sheet89", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 5.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.5 + } + }, + { + "id": "A1_sheet88", + "uuid": "1859a3ec-09fa-4b92-a033-82673075003f", + "name": "A1_sheet88", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.0 + } + }, + { + "id": "A1_sheet87", + "uuid": "b6ea389d-84df-42b3-ae5f-6ac24b601ad5", + "name": "A1_sheet87", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 6.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.5 + } + }, + { + "id": "A1_sheet86", + "uuid": "da6227f3-8609-43e7-be40-2ce510c73ee2", + "name": "A1_sheet86", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 7.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.0 + } + }, + { + "id": "A1_sheet85", + "uuid": "156bc033-0a7d-4be1-a304-3a377c5b5c3f", + "name": "A1_sheet85", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 7.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.5 + } + }, + { + "id": "A1_sheet84", + "uuid": "6e09d760-1b2c-4608-8f3c-3085dfa01463", + "name": "A1_sheet84", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 8.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.0 + } + }, + { + "id": "A1_sheet83", + "uuid": "315537a8-19b9-4638-8045-1df1540f2abb", + "name": "A1_sheet83", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 8.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.5 + } + }, + { + "id": "A1_sheet82", + "uuid": "1ad93913-a384-4d2e-a872-12b0212f4323", + "name": "A1_sheet82", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 9.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.0 + } + }, + { + "id": "A1_sheet81", + "uuid": "4bebf61f-1257-4b38-9b68-5a4a9c99eb01", + "name": "A1_sheet81", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 9.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.5 + } + }, + { + "id": "A1_sheet80", + "uuid": "721ba883-3eec-47e6-b51f-5f071e596358", + "name": "A1_sheet80", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 10.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 10.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 10.0 + } + }, + { + "id": "A1_sheet79", + "uuid": "eab2dd49-daf0-4f96-923d-f656f3c0b77d", + "name": "A1_sheet79", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 10.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 10.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 10.5 + } + }, + { + "id": "A1_sheet78", + "uuid": "5f4ea17c-9a99-46b1-828d-f77095f4ff8d", + "name": "A1_sheet78", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 11.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 11.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 11.0 + } + }, + { + "id": "A1_sheet77", + "uuid": "1cbf0981-bfeb-40bc-8b01-52e9bc106ecc", + "name": "A1_sheet77", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 11.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 11.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 11.5 + } + }, + { + "id": "A1_sheet76", + "uuid": "c0d8ba9e-3001-4dab-825a-84cb69c4df17", + "name": "A1_sheet76", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 12.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 12.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 12.0 + } + }, + { + "id": "A1_sheet75", + "uuid": "2a8d6e3b-090e-4012-90e3-02cf3d5cbbc4", + "name": "A1_sheet75", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 12.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 12.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 12.5 + } + }, + { + "id": "A1_sheet74", + "uuid": "d7031a30-adad-41c6-b2ff-40e7b1c524c3", + "name": "A1_sheet74", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 13.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 13.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 13.0 + } + }, + { + "id": "A1_sheet73", + "uuid": "d554c93c-3c59-4717-8294-4655a7c288a1", + "name": "A1_sheet73", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 13.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 13.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 13.5 + } + }, + { + "id": "A1_sheet72", + "uuid": "1fe075ec-41fd-4ca5-a78b-e08bb3441672", + "name": "A1_sheet72", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 14.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 14.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 14.0 + } + }, + { + "id": "A1_sheet71", + "uuid": "5997eeaf-0d46-4ddc-91e2-f15c316a699a", + "name": "A1_sheet71", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 14.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 14.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 14.5 + } + }, + { + "id": "A1_sheet70", + "uuid": "fd70aeed-c969-4e80-91dc-85c8c5d8d76b", + "name": "A1_sheet70", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 15.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 15.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 15.0 + } + }, + { + "id": "A1_sheet69", + "uuid": "aa71f82d-a77c-4469-b75e-d5dcd1f03684", + "name": "A1_sheet69", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 15.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 15.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 15.5 + } + }, + { + "id": "A1_sheet68", + "uuid": "0bacf27a-4791-4cb5-a0c7-94dd11a92f9d", + "name": "A1_sheet68", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 16.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 16.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 16.0 + } + }, + { + "id": "A1_sheet67", + "uuid": "f9ee213d-5879-4907-8772-388198267d1b", + "name": "A1_sheet67", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 16.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 16.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 16.5 + } + }, + { + "id": "A1_sheet66", + "uuid": "3ac25f13-7bc5-41af-aa1e-6f1f755cfd7d", + "name": "A1_sheet66", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 17.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 17.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 17.0 + } + }, + { + "id": "A1_sheet65", + "uuid": "c76560e4-d1a8-4354-b16b-cae767c1705f", + "name": "A1_sheet65", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 17.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 17.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 17.5 + } + }, + { + "id": "A1_sheet64", + "uuid": "4279c812-3ae1-48e1-9cdb-31b63f32fc6c", + "name": "A1_sheet64", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 18.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 18.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 18.0 + } + }, + { + "id": "A1_sheet63", + "uuid": "a218012f-d0d9-46bf-b61b-09e8b7c194bc", + "name": "A1_sheet63", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 18.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 18.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 18.5 + } + }, + { + "id": "A1_sheet62", + "uuid": "4db44d62-5416-4a20-9bca-aebfff388b43", + "name": "A1_sheet62", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 19.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 19.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 19.0 + } + }, + { + "id": "A1_sheet61", + "uuid": "a4dd014a-2517-4151-b2ab-eeec915170f1", + "name": "A1_sheet61", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 19.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 19.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 19.5 + } + }, + { + "id": "A1_sheet60", + "uuid": "75d546f8-1eeb-4a98-99ea-95ef7047e631", + "name": "A1_sheet60", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 20.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 20.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 20.0 + } + }, + { + "id": "A1_sheet59", + "uuid": "ca378edb-e28d-4bcd-8121-4ec9c5f4e230", + "name": "A1_sheet59", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 20.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 20.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 20.5 + } + }, + { + "id": "A1_sheet58", + "uuid": "3457328f-32a9-4faa-96cf-fff6a2bf716a", + "name": "A1_sheet58", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 21.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 21.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 21.0 + } + }, + { + "id": "A1_sheet57", + "uuid": "14f3cb3f-b6f0-49fd-839b-9ebeaf383293", + "name": "A1_sheet57", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 21.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 21.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 21.5 + } + }, + { + "id": "A1_sheet56", + "uuid": "7b8f9d92-2361-42fa-938c-61b01358d0c8", + "name": "A1_sheet56", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 22.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 22.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 22.0 + } + }, + { + "id": "A1_sheet55", + "uuid": "9c2334e4-6fb7-46d8-8d40-aa6ddfb3b187", + "name": "A1_sheet55", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 22.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 22.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 22.5 + } + }, + { + "id": "A1_sheet54", + "uuid": "6bd2025e-f1f1-4c03-8d53-06b997ae364f", + "name": "A1_sheet54", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 23.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 23.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 23.0 + } + }, + { + "id": "A1_sheet53", + "uuid": "a60ed341-3305-4870-be1a-a3823a259447", + "name": "A1_sheet53", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 23.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 23.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 23.5 + } + }, + { + "id": "A1_sheet52", + "uuid": "3f7fc0eb-36b9-4444-af77-f2888e9a4583", + "name": "A1_sheet52", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 24.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 24.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 24.0 + } + }, + { + "id": "A1_sheet51", + "uuid": "4e85ab52-da8a-455f-87bf-55559145da1e", + "name": "A1_sheet51", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 24.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 24.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 24.5 + } + }, + { + "id": "A1_sheet50", + "uuid": "7ba32f9f-38dd-452b-ae78-29d14b8a05bd", + "name": "A1_sheet50", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 25.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 25.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 25.0 + } + }, + { + "id": "A1_sheet49", + "uuid": "cf26c8af-5664-45bc-94ec-8e7cb990b37d", + "name": "A1_sheet49", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 25.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 25.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 25.5 + } + }, + { + "id": "A1_sheet48", + "uuid": "d7db545d-fc89-41e8-be01-544df59a4801", + "name": "A1_sheet48", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 26.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 26.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 26.0 + } + }, + { + "id": "A1_sheet47", + "uuid": "0c7cdc1e-b024-4198-8de8-64e56228ad34", + "name": "A1_sheet47", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 26.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 26.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 26.5 + } + }, + { + "id": "A1_sheet46", + "uuid": "24872de1-0859-49fa-b75e-e81bdb97741a", + "name": "A1_sheet46", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 27.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 27.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 27.0 + } + }, + { + "id": "A1_sheet45", + "uuid": "d309af93-b19b-44d8-afe3-e947f4d214fd", + "name": "A1_sheet45", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 27.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 27.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 27.5 + } + }, + { + "id": "A1_sheet44", + "uuid": "3168170f-be76-40c9-a995-94a71a24337f", + "name": "A1_sheet44", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 28.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 28.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 28.0 + } + }, + { + "id": "A1_sheet43", + "uuid": "39cee7bd-317e-4e39-bdd1-64a8e5766853", + "name": "A1_sheet43", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 28.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 28.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 28.5 + } + }, + { + "id": "A1_sheet42", + "uuid": "2671b0ff-5a8d-4154-80aa-0231e976dac7", + "name": "A1_sheet42", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 29.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 29.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 29.0 + } + }, + { + "id": "A1_sheet41", + "uuid": "b6aa53ab-6448-41ff-8c88-61f56cb8b74d", + "name": "A1_sheet41", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 29.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 29.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 29.5 + } + }, + { + "id": "A1_sheet40", + "uuid": "22478edd-4ffb-434a-ae94-b90ef57ca30e", + "name": "A1_sheet40", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 30.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 30.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 30.0 + } + }, + { + "id": "A1_sheet39", + "uuid": "037f169e-47f3-4acb-b400-117ba7f10220", + "name": "A1_sheet39", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 30.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 30.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 30.5 + } + }, + { + "id": "A1_sheet38", + "uuid": "e68a09f4-d495-486b-979f-219263f0cada", + "name": "A1_sheet38", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 31.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 31.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 31.0 + } + }, + { + "id": "A1_sheet37", + "uuid": "48f2225e-d451-45b4-a522-73175274d3a5", + "name": "A1_sheet37", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 31.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 31.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 31.5 + } + }, + { + "id": "A1_sheet36", + "uuid": "991fbd2e-6b5f-4381-a9ac-ba40c7db4bd4", + "name": "A1_sheet36", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 32.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 32.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 32.0 + } + }, + { + "id": "A1_sheet35", + "uuid": "e217c54f-fdfd-40f4-8413-5a11c16c6bd2", + "name": "A1_sheet35", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 32.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 32.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 32.5 + } + }, + { + "id": "A1_sheet34", + "uuid": "dc1ee5fb-6e16-4593-8534-3de847a4897f", + "name": "A1_sheet34", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 33.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 33.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 33.0 + } + }, + { + "id": "A1_sheet33", + "uuid": "5373012b-d828-4524-939e-fccdfae7ab23", + "name": "A1_sheet33", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 33.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 33.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 33.5 + } + }, + { + "id": "A1_sheet32", + "uuid": "e573320f-1b11-4020-998a-73bbd7cd72be", + "name": "A1_sheet32", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 34.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 34.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 34.0 + } + }, + { + "id": "A1_sheet31", + "uuid": "3194f0f0-25b7-4f23-bb6f-099790ee1023", + "name": "A1_sheet31", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 34.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 34.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 34.5 + } + }, + { + "id": "A1_sheet30", + "uuid": "6694f1d0-389b-4291-b9d8-763ed434a154", + "name": "A1_sheet30", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 35.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 35.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 35.0 + } + }, + { + "id": "A1_sheet29", + "uuid": "7fa91396-3a86-4dc3-85a2-c8b18b8b1724", + "name": "A1_sheet29", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 35.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 35.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 35.5 + } + }, + { + "id": "A1_sheet28", + "uuid": "0f200095-091b-4e48-822c-7e4e9629b792", + "name": "A1_sheet28", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 36.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 36.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 36.0 + } + }, + { + "id": "A1_sheet27", + "uuid": "2fda6023-b04a-4b16-a059-21474f1a68e9", + "name": "A1_sheet27", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 36.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 36.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 36.5 + } + }, + { + "id": "A1_sheet26", + "uuid": "ca4b8ead-d0a2-455f-855e-8467ab7fa160", + "name": "A1_sheet26", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 37.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 37.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 37.0 + } + }, + { + "id": "A1_sheet25", + "uuid": "257be7e6-40bf-4e16-b2f7-8fcadf6652ef", + "name": "A1_sheet25", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 37.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 37.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 37.5 + } + }, + { + "id": "A1_sheet24", + "uuid": "a01954e5-28cb-499a-a4f2-5d3fa9bbc154", + "name": "A1_sheet24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 38.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 38.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 38.0 + } + }, + { + "id": "A1_sheet23", + "uuid": "dc5f2280-f7f2-431d-9fd8-a9452f0f3691", + "name": "A1_sheet23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 38.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 38.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 38.5 + } + }, + { + "id": "A1_sheet22", + "uuid": "1a3b9d9f-9ec2-4cb1-b1bd-355e596f7e9a", + "name": "A1_sheet22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 39.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 39.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 39.0 + } + }, + { + "id": "A1_sheet21", + "uuid": "056d9a66-7b14-4af6-8218-98266e29dd78", + "name": "A1_sheet21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 39.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 39.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 39.5 + } + }, + { + "id": "A1_sheet20", + "uuid": "8ad90993-50a8-4c9e-906f-2452fe357729", + "name": "A1_sheet20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 40.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 40.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 40.0 + } + }, + { + "id": "A1_sheet19", + "uuid": "cb24cf5b-0ed9-4ffd-8c96-3cf29607cee6", + "name": "A1_sheet19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 40.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 40.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 40.5 + } + }, + { + "id": "A1_sheet18", + "uuid": "f48a747b-54d8-42da-92f3-9a178f737771", + "name": "A1_sheet18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 41.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 41.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 41.0 + } + }, + { + "id": "A1_sheet17", + "uuid": "81e43153-5211-43b3-8fd9-3a8e8de26ced", + "name": "A1_sheet17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 41.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 41.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 41.5 + } + }, + { + "id": "A1_sheet16", + "uuid": "f17e5d91-aee5-4261-8650-4bf9b8ce2599", + "name": "A1_sheet16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 42.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 42.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 42.0 + } + }, + { + "id": "A1_sheet15", + "uuid": "30ae3b63-ea8a-4853-9a11-d40a4f0b73bf", + "name": "A1_sheet15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 42.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 42.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 42.5 + } + }, + { + "id": "A1_sheet14", + "uuid": "d28fb3e7-659b-4410-9902-d154a5c8644f", + "name": "A1_sheet14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 43.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 43.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 43.0 + } + }, + { + "id": "A1_sheet13", + "uuid": "e19009ed-bd32-468b-9091-4f5cf601d6e3", + "name": "A1_sheet13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 43.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 43.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 43.5 + } + }, + { + "id": "A1_sheet12", + "uuid": "e224c00f-cd9b-467a-a02e-eab2c9513350", + "name": "A1_sheet12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 44.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 44.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 44.0 + } + }, + { + "id": "A1_sheet11", + "uuid": "3aa84026-ece4-434b-b0d9-0ebb7262cd14", + "name": "A1_sheet11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 44.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 44.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 44.5 + } + }, + { + "id": "A1_sheet10", + "uuid": "7dc02d33-a111-4a91-a8b0-6d8604c38930", + "name": "A1_sheet10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 45.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 45.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 45.0 + } + }, + { + "id": "A1_sheet9", + "uuid": "6dff90d8-af51-42bc-90ad-19089addd3a5", + "name": "A1_sheet9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 45.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 45.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 45.5 + } + }, + { + "id": "A1_sheet8", + "uuid": "2afc788c-c4be-499b-9f47-da3b24dda6bf", + "name": "A1_sheet8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 46.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 46.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 46.0 + } + }, + { + "id": "A1_sheet7", + "uuid": "1e30243b-2866-4a63-a745-2e1f647af227", + "name": "A1_sheet7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 46.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 46.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 46.5 + } + }, + { + "id": "A1_sheet6", + "uuid": "97bc8758-cb80-4d13-8e65-ae5630d65795", + "name": "A1_sheet6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 47.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 47.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 47.0 + } + }, + { + "id": "A1_sheet5", + "uuid": "8892dac8-dac5-4031-87d7-3d8303cec216", + "name": "A1_sheet5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 47.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 47.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 47.5 + } + }, + { + "id": "A1_sheet4", + "uuid": "b1f23783-bbab-4e9b-8981-388a130700d8", + "name": "A1_sheet4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 48.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 48.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 48.0 + } + }, + { + "id": "A1_sheet3", + "uuid": "b26d1445-83e0-48ed-8d22-f5118a6b754f", + "name": "A1_sheet3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 48.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 48.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 48.5 + } + }, + { + "id": "A1_sheet2", + "uuid": "4c37cb7f-9957-4bbc-8b49-22793d16af13", + "name": "A1_sheet2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 49.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 49.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 49.0 + } + }, + { + "id": "A1_sheet1", + "uuid": "409c9c59-2703-45a2-a73c-6ba50296d9f1", + "name": "A1_sheet1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "0ffc6552-0a6a-4b74-b549-6d6f0f10c18d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 49.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 49.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 49.5 + } + }, + { + "id": "负极壳&弹垫片弹夹_负极壳&弹垫片弹夹-1", + "uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "name": "负极壳&弹垫片弹夹_负极壳&弹垫片弹夹-1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "7aa60ad0-ad6a-45c5-a58e-3ed5ae37152e", + "type": "resource_group", + "class": "", + "pose": { + "size": { + "depth": 200.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 43.0, + "y": 50.3205, + "z": 30.0 + }, + "position3d": { + "x": 43.0, + "y": 50.3205, + "z": 30.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Magazine", + "size_x": 12, + "size_y": 12, + "size_z": 200.0, + "category": "resource_group", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_sheets": 100 + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 43.0, + "y": 50.3205, + "z": 30.0 + } + }, + { + "id": "A2_sheet100", + "uuid": "9cca73a4-2bb1-43da-b564-f8eba7a2391f", + "name": "A2_sheet100", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "A2_sheet99", + "uuid": "c91a3475-a4fc-4037-a7b4-5d2d7cd1e0df", + "name": "A2_sheet99", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + } + }, + { + "id": "A2_sheet98", + "uuid": "b4da4ee9-f95d-4e40-807b-4c38f4674d73", + "name": "A2_sheet98", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 4.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.0 + } + }, + { + "id": "A2_sheet97", + "uuid": "7aced203-34f1-4132-a0c4-b4dc852ee326", + "name": "A2_sheet97", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.0 + } + }, + { + "id": "A2_sheet96", + "uuid": "602944c8-2b1e-4cca-a126-7e97dd496ffd", + "name": "A2_sheet96", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 8.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.0 + } + }, + { + "id": "A2_sheet95", + "uuid": "d3b96d72-8f50-413d-80c4-7b759c1801c1", + "name": "A2_sheet95", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 10.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 10.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 10.0 + } + }, + { + "id": "A2_sheet94", + "uuid": "9054a037-f4b4-443b-990d-7cd4c29599f2", + "name": "A2_sheet94", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 12.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 12.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 12.0 + } + }, + { + "id": "A2_sheet93", + "uuid": "81290095-775f-4487-8672-bb89a93310bd", + "name": "A2_sheet93", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 14.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 14.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 14.0 + } + }, + { + "id": "A2_sheet92", + "uuid": "fe697b72-eeac-423c-9d20-6f8794b00792", + "name": "A2_sheet92", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 16.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 16.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 16.0 + } + }, + { + "id": "A2_sheet91", + "uuid": "9deb8322-2370-4c38-8da6-b8d9222d260a", + "name": "A2_sheet91", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 18.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 18.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 18.0 + } + }, + { + "id": "A2_sheet90", + "uuid": "37513ff7-5855-4545-a6b4-3a0fdc0e61e3", + "name": "A2_sheet90", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 20.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 20.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 20.0 + } + }, + { + "id": "A2_sheet89", + "uuid": "1d5966fd-747f-4d3f-87e4-fa3350519e8e", + "name": "A2_sheet89", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 22.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 22.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 22.0 + } + }, + { + "id": "A2_sheet88", + "uuid": "25ebb17a-80db-477d-86f3-6765bd14694d", + "name": "A2_sheet88", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 24.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 24.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 24.0 + } + }, + { + "id": "A2_sheet87", + "uuid": "e2e2b4eb-4e0f-4b34-9d43-546b6da5058b", + "name": "A2_sheet87", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 26.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 26.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 26.0 + } + }, + { + "id": "A2_sheet86", + "uuid": "d0e97b92-50e2-45e9-a84a-7f3187d51ad4", + "name": "A2_sheet86", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 28.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 28.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 28.0 + } + }, + { + "id": "A2_sheet85", + "uuid": "cd33c03b-154f-49d4-b800-7b5de67af72a", + "name": "A2_sheet85", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 30.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 30.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 30.0 + } + }, + { + "id": "A2_sheet84", + "uuid": "85e0b0e7-f02b-4c87-b6ed-5ae9590091bd", + "name": "A2_sheet84", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 32.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 32.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 32.0 + } + }, + { + "id": "A2_sheet83", + "uuid": "70b23b61-40c7-45d0-ba73-eebb48c34e85", + "name": "A2_sheet83", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 34.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 34.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 34.0 + } + }, + { + "id": "A2_sheet82", + "uuid": "7a4eb5ce-acf2-4ced-a10a-ecc2173bd654", + "name": "A2_sheet82", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 36.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 36.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 36.0 + } + }, + { + "id": "A2_sheet81", + "uuid": "e064fad9-a00c-4ac4-9fac-3234e9e0a250", + "name": "A2_sheet81", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 38.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 38.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 38.0 + } + }, + { + "id": "A2_sheet80", + "uuid": "7df4b9b8-b2ed-43b1-b384-25d1ce1256d9", + "name": "A2_sheet80", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 40.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 40.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 40.0 + } + }, + { + "id": "A2_sheet79", + "uuid": "7c4b7531-be1b-48a0-a474-934b5562cbb6", + "name": "A2_sheet79", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 42.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 42.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 42.0 + } + }, + { + "id": "A2_sheet78", + "uuid": "81c7db36-58be-4927-88d9-3feb0ff63c88", + "name": "A2_sheet78", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 44.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 44.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 44.0 + } + }, + { + "id": "A2_sheet77", + "uuid": "fb89a621-5923-42d0-b3f0-6a658809e8e7", + "name": "A2_sheet77", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 46.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 46.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 46.0 + } + }, + { + "id": "A2_sheet76", + "uuid": "98d87cfc-3f73-4dad-85e6-22d363abfb4b", + "name": "A2_sheet76", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 48.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 48.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 48.0 + } + }, + { + "id": "A2_sheet75", + "uuid": "2f92d71d-92d1-4512-904d-e86891b0bb9e", + "name": "A2_sheet75", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 50.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 50.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 50.0 + } + }, + { + "id": "A2_sheet74", + "uuid": "8b18ad66-a8d5-4f4f-9234-1d5730d8f21c", + "name": "A2_sheet74", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 52.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 52.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 52.0 + } + }, + { + "id": "A2_sheet73", + "uuid": "659a05eb-edb1-4f79-b70e-7679545b633c", + "name": "A2_sheet73", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 54.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 54.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 54.0 + } + }, + { + "id": "A2_sheet72", + "uuid": "4b5ebe1b-11db-4117-bc41-a4aabd6468cc", + "name": "A2_sheet72", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 56.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 56.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 56.0 + } + }, + { + "id": "A2_sheet71", + "uuid": "0f7afdbf-0f8f-4587-9322-19cf67e2ef0e", + "name": "A2_sheet71", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 58.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 58.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 58.0 + } + }, + { + "id": "A2_sheet70", + "uuid": "59beb531-10b6-44b7-9887-ebd43397ae91", + "name": "A2_sheet70", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 60.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 60.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 60.0 + } + }, + { + "id": "A2_sheet69", + "uuid": "de5536e0-d812-4a4d-a609-5a9b3dca0052", + "name": "A2_sheet69", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 62.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 62.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 62.0 + } + }, + { + "id": "A2_sheet68", + "uuid": "886f28a2-96e1-410f-8b57-7c23ba81ac58", + "name": "A2_sheet68", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 64.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 64.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 64.0 + } + }, + { + "id": "A2_sheet67", + "uuid": "1fb3761b-321c-47fb-88cb-70442935e668", + "name": "A2_sheet67", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 66.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 66.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 66.0 + } + }, + { + "id": "A2_sheet66", + "uuid": "f625b06a-17f2-49d4-92ea-41e2fc033e5c", + "name": "A2_sheet66", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 68.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 68.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 68.0 + } + }, + { + "id": "A2_sheet65", + "uuid": "eecada77-0d86-4fdf-a05f-02612c6eab96", + "name": "A2_sheet65", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 70.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 70.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 70.0 + } + }, + { + "id": "A2_sheet64", + "uuid": "b4667c46-cd45-4c39-9a34-bd6d2c2e13b0", + "name": "A2_sheet64", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 72.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 72.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 72.0 + } + }, + { + "id": "A2_sheet63", + "uuid": "99a9ca98-e577-461d-b2d3-9ba3a4546ae7", + "name": "A2_sheet63", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 74.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 74.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 74.0 + } + }, + { + "id": "A2_sheet62", + "uuid": "0b0a8371-5443-4e03-8c60-2e055be89cfd", + "name": "A2_sheet62", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 76.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 76.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 76.0 + } + }, + { + "id": "A2_sheet61", + "uuid": "7bcf1c80-6772-4394-a149-0046360520a5", + "name": "A2_sheet61", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 78.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 78.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 78.0 + } + }, + { + "id": "A2_sheet60", + "uuid": "90dcabc0-a7d4-4afc-b11e-84648a29b800", + "name": "A2_sheet60", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 80.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 80.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 80.0 + } + }, + { + "id": "A2_sheet59", + "uuid": "4ef3abdc-1522-4e72-a415-8799a4f7cfdf", + "name": "A2_sheet59", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 82.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 82.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 82.0 + } + }, + { + "id": "A2_sheet58", + "uuid": "a0be6b57-0785-4b55-abfa-dbf8666dd324", + "name": "A2_sheet58", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 84.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 84.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 84.0 + } + }, + { + "id": "A2_sheet57", + "uuid": "5e343091-c36b-4dc9-8c9a-c3bccd1b3c05", + "name": "A2_sheet57", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 86.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 86.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 86.0 + } + }, + { + "id": "A2_sheet56", + "uuid": "4f0ac378-c486-48ba-89d2-76ff6d6360f5", + "name": "A2_sheet56", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 88.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 88.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 88.0 + } + }, + { + "id": "A2_sheet55", + "uuid": "23da1a5d-6c2e-4876-87b2-8809700f8b88", + "name": "A2_sheet55", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 90.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 90.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 90.0 + } + }, + { + "id": "A2_sheet54", + "uuid": "e6cb6d6e-ec42-498a-a490-0d8b28398f21", + "name": "A2_sheet54", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 92.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 92.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 92.0 + } + }, + { + "id": "A2_sheet53", + "uuid": "a88ac000-1a8b-4c1f-8c4a-13ea014c20b9", + "name": "A2_sheet53", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 94.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 94.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 94.0 + } + }, + { + "id": "A2_sheet52", + "uuid": "07752955-f395-4461-b91a-7b228612bc89", + "name": "A2_sheet52", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 96.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 96.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 96.0 + } + }, + { + "id": "A2_sheet51", + "uuid": "2a59f714-0331-4376-88ae-3fd75b331362", + "name": "A2_sheet51", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 98.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 98.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 98.0 + } + }, + { + "id": "A2_sheet50", + "uuid": "f1bf7e95-1720-4de0-bf14-eb1f9ad55f45", + "name": "A2_sheet50", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 100.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 100.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 100.0 + } + }, + { + "id": "A2_sheet49", + "uuid": "e441b39b-875b-4c1b-927f-a33cebd66499", + "name": "A2_sheet49", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 102.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 102.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 102.0 + } + }, + { + "id": "A2_sheet48", + "uuid": "aa11918e-c63b-48f0-9143-905526c38519", + "name": "A2_sheet48", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 104.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 104.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 104.0 + } + }, + { + "id": "A2_sheet47", + "uuid": "3097a549-e300-4d79-b81c-de8dead47705", + "name": "A2_sheet47", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 106.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 106.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 106.0 + } + }, + { + "id": "A2_sheet46", + "uuid": "f1eba616-15f4-42c4-a26b-94bed695e4e0", + "name": "A2_sheet46", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 108.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 108.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 108.0 + } + }, + { + "id": "A2_sheet45", + "uuid": "fce39da9-8c06-4e03-b989-6fb39b64c576", + "name": "A2_sheet45", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 110.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 110.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 110.0 + } + }, + { + "id": "A2_sheet44", + "uuid": "4be67e3e-b7c6-4ddc-bf6c-ac6adab241f9", + "name": "A2_sheet44", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 112.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 112.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 112.0 + } + }, + { + "id": "A2_sheet43", + "uuid": "ebd64d60-c1e1-487d-b9b9-4546f2a1cd76", + "name": "A2_sheet43", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 114.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 114.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 114.0 + } + }, + { + "id": "A2_sheet42", + "uuid": "baeae38b-db0b-4c45-aad7-0c20f843dd86", + "name": "A2_sheet42", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 116.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 116.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 116.0 + } + }, + { + "id": "A2_sheet41", + "uuid": "2f249a97-86f1-417e-b043-0e39ebc637f5", + "name": "A2_sheet41", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 118.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 118.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 118.0 + } + }, + { + "id": "A2_sheet40", + "uuid": "b1cdcbe8-4705-4014-a78d-6af7338117e3", + "name": "A2_sheet40", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 120.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 120.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 120.0 + } + }, + { + "id": "A2_sheet39", + "uuid": "910d3a7c-c236-4177-9deb-54857903600b", + "name": "A2_sheet39", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 122.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 122.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 122.0 + } + }, + { + "id": "A2_sheet38", + "uuid": "ad17c68a-4550-4bab-a369-aac7a10a3ebf", + "name": "A2_sheet38", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 124.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 124.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 124.0 + } + }, + { + "id": "A2_sheet37", + "uuid": "629841ad-f48c-41cc-a5b6-3a27137a165d", + "name": "A2_sheet37", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 126.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 126.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 126.0 + } + }, + { + "id": "A2_sheet36", + "uuid": "aadb606a-9d5c-401d-9df0-e415e3840e56", + "name": "A2_sheet36", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 128.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 128.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 128.0 + } + }, + { + "id": "A2_sheet35", + "uuid": "3661a08e-12b2-4bfc-bf32-d1902b45fd75", + "name": "A2_sheet35", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 130.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 130.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 130.0 + } + }, + { + "id": "A2_sheet34", + "uuid": "56d49202-940c-4104-b8c3-45ead8b13e60", + "name": "A2_sheet34", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 132.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 132.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 132.0 + } + }, + { + "id": "A2_sheet33", + "uuid": "c68dd23a-31f8-4cf1-9b35-b16d5e8adce7", + "name": "A2_sheet33", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 134.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 134.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 134.0 + } + }, + { + "id": "A2_sheet32", + "uuid": "88c53c63-5463-4535-8bcf-4f5541b524ab", + "name": "A2_sheet32", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 136.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 136.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 136.0 + } + }, + { + "id": "A2_sheet31", + "uuid": "b221472d-56e3-40a1-933c-72dde7191776", + "name": "A2_sheet31", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 138.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 138.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 138.0 + } + }, + { + "id": "A2_sheet30", + "uuid": "02107ce9-edc5-4e11-86d4-7784c994ccf2", + "name": "A2_sheet30", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 140.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 140.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 140.0 + } + }, + { + "id": "A2_sheet29", + "uuid": "6d870fc1-81ac-41fb-bd13-72b08090dd8c", + "name": "A2_sheet29", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 142.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 142.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 142.0 + } + }, + { + "id": "A2_sheet28", + "uuid": "d16b1c95-1e93-4b2e-8444-b6ea8f9d5fcf", + "name": "A2_sheet28", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 144.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 144.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 144.0 + } + }, + { + "id": "A2_sheet27", + "uuid": "15d3b515-7e9a-4e0f-a4f3-3c7180d0f2b6", + "name": "A2_sheet27", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 146.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 146.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 146.0 + } + }, + { + "id": "A2_sheet26", + "uuid": "e0d5723d-4735-47a6-a646-0de2f9afad12", + "name": "A2_sheet26", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 148.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 148.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 148.0 + } + }, + { + "id": "A2_sheet25", + "uuid": "10bd70cd-3d46-42b9-ad61-c77050e606eb", + "name": "A2_sheet25", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 150.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 150.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 150.0 + } + }, + { + "id": "A2_sheet24", + "uuid": "546f9f9d-c29f-47c1-bdec-0b26242adc4a", + "name": "A2_sheet24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 152.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 152.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 152.0 + } + }, + { + "id": "A2_sheet23", + "uuid": "88cfe93b-34d4-4e5e-8839-74f636fc5890", + "name": "A2_sheet23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 154.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 154.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 154.0 + } + }, + { + "id": "A2_sheet22", + "uuid": "e22f217b-5d57-405e-820c-6dcf12604a33", + "name": "A2_sheet22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 156.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 156.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 156.0 + } + }, + { + "id": "A2_sheet21", + "uuid": "9ab6a21c-1964-44c1-b9c1-d1aac855c0fc", + "name": "A2_sheet21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 158.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 158.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 158.0 + } + }, + { + "id": "A2_sheet20", + "uuid": "075e0447-3e23-44fb-b400-4354a678b890", + "name": "A2_sheet20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 160.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 160.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 160.0 + } + }, + { + "id": "A2_sheet19", + "uuid": "18238996-4301-4514-9614-d06dffc02b97", + "name": "A2_sheet19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 162.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 162.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 162.0 + } + }, + { + "id": "A2_sheet18", + "uuid": "8cf64195-d97e-4f1a-b49a-1fb80314632a", + "name": "A2_sheet18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 164.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 164.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 164.0 + } + }, + { + "id": "A2_sheet17", + "uuid": "67d62e87-c716-433c-b1e1-26c8a4e6bfc3", + "name": "A2_sheet17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 166.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 166.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 166.0 + } + }, + { + "id": "A2_sheet16", + "uuid": "3c00fa75-d3d2-4da9-9d75-72dbca02a35d", + "name": "A2_sheet16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 168.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 168.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 168.0 + } + }, + { + "id": "A2_sheet15", + "uuid": "6b42af3f-5858-4ee9-8a23-4f90bcc16414", + "name": "A2_sheet15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 170.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 170.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 170.0 + } + }, + { + "id": "A2_sheet14", + "uuid": "b37cbeed-f4b7-42c1-9722-1fe18ee0b7ca", + "name": "A2_sheet14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 172.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 172.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 172.0 + } + }, + { + "id": "A2_sheet13", + "uuid": "db883f6f-546e-4f41-977c-1f57a88720f3", + "name": "A2_sheet13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 174.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 174.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 174.0 + } + }, + { + "id": "A2_sheet12", + "uuid": "cf1a23fb-3104-4329-92a6-2b2df242cf9c", + "name": "A2_sheet12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 176.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 176.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 176.0 + } + }, + { + "id": "A2_sheet11", + "uuid": "96185ed7-b3fb-40e3-82c8-9cf2e3e7afd5", + "name": "A2_sheet11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 178.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 178.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 178.0 + } + }, + { + "id": "A2_sheet10", + "uuid": "6b7a11e8-899b-4356-b5c7-2233f23eda55", + "name": "A2_sheet10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 180.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 180.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 180.0 + } + }, + { + "id": "A2_sheet9", + "uuid": "90eae4a4-c20d-4431-bf63-c47c64e303e4", + "name": "A2_sheet9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 182.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 182.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 182.0 + } + }, + { + "id": "A2_sheet8", + "uuid": "7a1192b5-555b-446f-9363-d3205fdfc4b4", + "name": "A2_sheet8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 184.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 184.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 184.0 + } + }, + { + "id": "A2_sheet7", + "uuid": "5484efb8-4215-4eb6-9eb1-e3006be4951f", + "name": "A2_sheet7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 186.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 186.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 186.0 + } + }, + { + "id": "A2_sheet6", + "uuid": "7ff1ec12-98b3-45e4-aa08-cbbc2fb5f661", + "name": "A2_sheet6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 188.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 188.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 188.0 + } + }, + { + "id": "A2_sheet5", + "uuid": "97b01023-9c31-465c-90d0-58ea2e82b464", + "name": "A2_sheet5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 190.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 190.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 190.0 + } + }, + { + "id": "A2_sheet4", + "uuid": "00045df0-1f22-4383-8130-df4b0f88662a", + "name": "A2_sheet4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 192.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 192.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 192.0 + } + }, + { + "id": "A2_sheet3", + "uuid": "500ce1f4-4bbc-4b61-a9f6-381a26c0e33b", + "name": "A2_sheet3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 194.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 194.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 194.0 + } + }, + { + "id": "A2_sheet2", + "uuid": "d7c4b52c-496b-4a1f-a775-321b634c9253", + "name": "A2_sheet2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 196.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 196.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 196.0 + } + }, + { + "id": "A2_sheet1", + "uuid": "b8d0e680-783d-47ca-996d-4c2af89b2009", + "name": "A2_sheet1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "2df469ba-851f-4543-b7fc-9490dc16910d", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 198.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 198.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 198.0 + } + }, + { + "id": "负极壳&弹垫片弹夹_负极壳&弹垫片弹夹-2", + "uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "name": "负极壳&弹垫片弹夹_负极壳&弹垫片弹夹-2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "7aa60ad0-ad6a-45c5-a58e-3ed5ae37152e", + "type": "resource_group", + "class": "", + "pose": { + "size": { + "depth": 200.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 23.0, + "y": 50.3205, + "z": 30.0 + }, + "position3d": { + "x": 23.0, + "y": 50.3205, + "z": 30.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Magazine", + "size_x": 12, + "size_y": 12, + "size_z": 200.0, + "category": "resource_group", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_sheets": 100 + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 23.0, + "y": 50.3205, + "z": 30.0 + } + }, + { + "id": "A3_sheet100", + "uuid": "42462b97-98d2-4535-9727-344d87156606", + "name": "A3_sheet100", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "A3_sheet99", + "uuid": "d7a8518a-de4d-4467-b2a0-c1a91ad85e70", + "name": "A3_sheet99", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + } + }, + { + "id": "A3_sheet98", + "uuid": "8da8d917-748c-417a-9c83-c9442e4e37c3", + "name": "A3_sheet98", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 4.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.0 + } + }, + { + "id": "A3_sheet97", + "uuid": "ee1ff5d3-b078-4caa-b6fd-fd7fb2de66df", + "name": "A3_sheet97", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.0 + } + }, + { + "id": "A3_sheet96", + "uuid": "a70c3845-78ca-42fa-83a8-295c826e2594", + "name": "A3_sheet96", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 8.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.0 + } + }, + { + "id": "A3_sheet95", + "uuid": "f8be8061-3728-4c0c-af2a-41d53edabe61", + "name": "A3_sheet95", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 10.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 10.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 10.0 + } + }, + { + "id": "A3_sheet94", + "uuid": "b05d7c9c-7dd1-42e7-81f1-825d2399f452", + "name": "A3_sheet94", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 12.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 12.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 12.0 + } + }, + { + "id": "A3_sheet93", + "uuid": "54d3abbc-75ce-4aeb-a3cb-f5229f1d6c88", + "name": "A3_sheet93", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 14.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 14.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 14.0 + } + }, + { + "id": "A3_sheet92", + "uuid": "2c52df45-07a6-48a6-917f-aa3785f30c6a", + "name": "A3_sheet92", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 16.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 16.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 16.0 + } + }, + { + "id": "A3_sheet91", + "uuid": "d815f468-7501-455c-9485-6b97eb72d8f1", + "name": "A3_sheet91", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 18.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 18.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 18.0 + } + }, + { + "id": "A3_sheet90", + "uuid": "a72b795a-ac50-4b2b-8558-57bbb4f7adf6", + "name": "A3_sheet90", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 20.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 20.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 20.0 + } + }, + { + "id": "A3_sheet89", + "uuid": "e9aff7f8-21cc-45ee-8618-d85671360452", + "name": "A3_sheet89", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 22.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 22.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 22.0 + } + }, + { + "id": "A3_sheet88", + "uuid": "cc4afa07-12c2-4be7-b7ac-fbe2cd752471", + "name": "A3_sheet88", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 24.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 24.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 24.0 + } + }, + { + "id": "A3_sheet87", + "uuid": "9f7da48a-1b50-4be6-b28d-f68c203ad9f6", + "name": "A3_sheet87", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 26.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 26.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 26.0 + } + }, + { + "id": "A3_sheet86", + "uuid": "3326cdc0-8497-4137-b0ca-963660a85529", + "name": "A3_sheet86", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 28.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 28.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 28.0 + } + }, + { + "id": "A3_sheet85", + "uuid": "eeff2d63-1741-4b72-8b4d-553cc47e641d", + "name": "A3_sheet85", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 30.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 30.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 30.0 + } + }, + { + "id": "A3_sheet84", + "uuid": "0c8d74e7-33b6-4167-9557-adefd06b1be6", + "name": "A3_sheet84", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 32.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 32.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 32.0 + } + }, + { + "id": "A3_sheet83", + "uuid": "806c3d34-5825-4942-9aa5-956eafe3494d", + "name": "A3_sheet83", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 34.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 34.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 34.0 + } + }, + { + "id": "A3_sheet82", + "uuid": "a48c700d-7590-4890-9159-5bf744133cfa", + "name": "A3_sheet82", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 36.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 36.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 36.0 + } + }, + { + "id": "A3_sheet81", + "uuid": "ffd7c1fd-3c7b-4371-a77b-76e792098781", + "name": "A3_sheet81", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 38.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 38.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 38.0 + } + }, + { + "id": "A3_sheet80", + "uuid": "eea2bb7a-22f9-4fc4-b33c-b3904f5d0c46", + "name": "A3_sheet80", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 40.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 40.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 40.0 + } + }, + { + "id": "A3_sheet79", + "uuid": "72a337e6-2bd2-47f4-bf74-9acb4a6806df", + "name": "A3_sheet79", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 42.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 42.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 42.0 + } + }, + { + "id": "A3_sheet78", + "uuid": "3d00b204-58c8-42a8-aa35-4f68a0868cc6", + "name": "A3_sheet78", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 44.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 44.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 44.0 + } + }, + { + "id": "A3_sheet77", + "uuid": "b8974e8e-16d4-4638-97bd-c91fe8dd2f1b", + "name": "A3_sheet77", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 46.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 46.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 46.0 + } + }, + { + "id": "A3_sheet76", + "uuid": "93ccc63e-9aef-4b7e-81bc-2232026456fa", + "name": "A3_sheet76", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 48.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 48.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 48.0 + } + }, + { + "id": "A3_sheet75", + "uuid": "7c87bdaa-df31-402b-b4ea-0cccd55a775f", + "name": "A3_sheet75", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 50.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 50.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 50.0 + } + }, + { + "id": "A3_sheet74", + "uuid": "4df881e4-74e0-4c71-83f1-6f3ca328b431", + "name": "A3_sheet74", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 52.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 52.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 52.0 + } + }, + { + "id": "A3_sheet73", + "uuid": "d8463c5d-0d6c-43d5-95a9-52c217b0c04f", + "name": "A3_sheet73", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 54.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 54.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 54.0 + } + }, + { + "id": "A3_sheet72", + "uuid": "d0297f28-3d47-48ba-8084-1d6392171ac3", + "name": "A3_sheet72", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 56.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 56.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 56.0 + } + }, + { + "id": "A3_sheet71", + "uuid": "5677a201-f2ed-4c44-879b-7d82bd733ce8", + "name": "A3_sheet71", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 58.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 58.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 58.0 + } + }, + { + "id": "A3_sheet70", + "uuid": "8f1a3c4d-fcf7-47d6-b9a9-3d4bfbcc2674", + "name": "A3_sheet70", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 60.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 60.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 60.0 + } + }, + { + "id": "A3_sheet69", + "uuid": "ec5febc1-b888-40a0-b34d-84da5bdec92f", + "name": "A3_sheet69", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 62.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 62.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 62.0 + } + }, + { + "id": "A3_sheet68", + "uuid": "9b312ef9-2cce-41e8-93fa-75bc98d744b2", + "name": "A3_sheet68", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 64.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 64.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 64.0 + } + }, + { + "id": "A3_sheet67", + "uuid": "84cf6ddd-8198-4160-adb6-74506283e993", + "name": "A3_sheet67", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 66.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 66.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 66.0 + } + }, + { + "id": "A3_sheet66", + "uuid": "c57558fb-0731-448b-b8f1-bcad76b0034e", + "name": "A3_sheet66", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 68.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 68.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 68.0 + } + }, + { + "id": "A3_sheet65", + "uuid": "27316870-b8f0-4132-b3bf-b70346d81b7f", + "name": "A3_sheet65", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 70.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 70.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 70.0 + } + }, + { + "id": "A3_sheet64", + "uuid": "fbf06877-8bde-47f9-9d96-4b6cb79b5bed", + "name": "A3_sheet64", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 72.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 72.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 72.0 + } + }, + { + "id": "A3_sheet63", + "uuid": "d3e530b7-1895-42a3-9b8c-89923f7702ec", + "name": "A3_sheet63", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 74.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 74.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 74.0 + } + }, + { + "id": "A3_sheet62", + "uuid": "64d6aa65-da3a-4c3f-9215-a1e75e5cffa5", + "name": "A3_sheet62", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 76.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 76.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 76.0 + } + }, + { + "id": "A3_sheet61", + "uuid": "1ea29eee-ec05-453d-a180-314df21500ba", + "name": "A3_sheet61", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 78.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 78.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 78.0 + } + }, + { + "id": "A3_sheet60", + "uuid": "2ee18b0f-d65d-404c-91ec-1b30b74fa856", + "name": "A3_sheet60", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 80.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 80.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 80.0 + } + }, + { + "id": "A3_sheet59", + "uuid": "c18a2770-b854-4b05-8c86-f658e40cf65b", + "name": "A3_sheet59", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 82.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 82.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 82.0 + } + }, + { + "id": "A3_sheet58", + "uuid": "346322ba-368e-4be8-92c5-9e6da08b7108", + "name": "A3_sheet58", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 84.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 84.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 84.0 + } + }, + { + "id": "A3_sheet57", + "uuid": "cebc2f92-3c6e-4c25-89a0-3cb9506d1096", + "name": "A3_sheet57", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 86.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 86.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 86.0 + } + }, + { + "id": "A3_sheet56", + "uuid": "bd2d8c80-3995-4941-83c7-a9e1206fd863", + "name": "A3_sheet56", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 88.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 88.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 88.0 + } + }, + { + "id": "A3_sheet55", + "uuid": "3b28f0bc-f880-4067-8687-25219df2500d", + "name": "A3_sheet55", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 90.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 90.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 90.0 + } + }, + { + "id": "A3_sheet54", + "uuid": "1b4c9b32-8212-49f7-93b1-7009010be1eb", + "name": "A3_sheet54", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 92.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 92.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 92.0 + } + }, + { + "id": "A3_sheet53", + "uuid": "2f31c704-4cf0-4a63-969a-e3bc4316062e", + "name": "A3_sheet53", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 94.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 94.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 94.0 + } + }, + { + "id": "A3_sheet52", + "uuid": "c5bfcc52-29d3-4012-82e8-b0ed37cb31b9", + "name": "A3_sheet52", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 96.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 96.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 96.0 + } + }, + { + "id": "A3_sheet51", + "uuid": "69835bf9-2b10-4f1c-989d-a5f5900929d9", + "name": "A3_sheet51", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 98.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 98.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 98.0 + } + }, + { + "id": "A3_sheet50", + "uuid": "2a1e5511-8dab-48db-8da3-ef6966c5679b", + "name": "A3_sheet50", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 100.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 100.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 100.0 + } + }, + { + "id": "A3_sheet49", + "uuid": "9ad20b9f-944f-405a-a9b7-2579ec547e74", + "name": "A3_sheet49", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 102.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 102.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 102.0 + } + }, + { + "id": "A3_sheet48", + "uuid": "ec213eef-0955-4d49-b085-86fda34ebac3", + "name": "A3_sheet48", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 104.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 104.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 104.0 + } + }, + { + "id": "A3_sheet47", + "uuid": "8bce5e6e-8173-416d-818a-d2c99d179d47", + "name": "A3_sheet47", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 106.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 106.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 106.0 + } + }, + { + "id": "A3_sheet46", + "uuid": "01bbacac-bc16-4da1-8edc-8d15aad26482", + "name": "A3_sheet46", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 108.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 108.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 108.0 + } + }, + { + "id": "A3_sheet45", + "uuid": "cf87198b-e031-42f6-938e-950a126cf6f3", + "name": "A3_sheet45", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 110.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 110.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 110.0 + } + }, + { + "id": "A3_sheet44", + "uuid": "7c16b289-4d1b-4c2f-b66f-bc865c51f8ca", + "name": "A3_sheet44", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 112.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 112.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 112.0 + } + }, + { + "id": "A3_sheet43", + "uuid": "85b81b91-6bcb-4e98-9e23-41fff49f8d8e", + "name": "A3_sheet43", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 114.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 114.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 114.0 + } + }, + { + "id": "A3_sheet42", + "uuid": "1147ffb4-5cca-47a8-85a0-1110a8fffbeb", + "name": "A3_sheet42", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 116.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 116.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 116.0 + } + }, + { + "id": "A3_sheet41", + "uuid": "f1e2c0cb-8555-4be9-9aa2-1aedf41ed72f", + "name": "A3_sheet41", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 118.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 118.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 118.0 + } + }, + { + "id": "A3_sheet40", + "uuid": "3f3d6beb-b61e-4d6e-a73b-2e41a1b41f60", + "name": "A3_sheet40", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 120.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 120.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 120.0 + } + }, + { + "id": "A3_sheet39", + "uuid": "10a203d0-b326-4c34-b661-702d0a10f65e", + "name": "A3_sheet39", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 122.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 122.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 122.0 + } + }, + { + "id": "A3_sheet38", + "uuid": "b977f697-48fa-4aed-95e7-4ad70bfdce82", + "name": "A3_sheet38", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 124.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 124.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 124.0 + } + }, + { + "id": "A3_sheet37", + "uuid": "db2332d2-86c2-4a4f-969e-79de6afe45b9", + "name": "A3_sheet37", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 126.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 126.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 126.0 + } + }, + { + "id": "A3_sheet36", + "uuid": "b29db12b-3268-4419-8540-d68b49d7af0d", + "name": "A3_sheet36", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 128.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 128.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 128.0 + } + }, + { + "id": "A3_sheet35", + "uuid": "cd62d852-73bd-4dfe-b9ab-c6871c25e392", + "name": "A3_sheet35", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 130.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 130.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 130.0 + } + }, + { + "id": "A3_sheet34", + "uuid": "25ce7a9f-de82-4204-b861-06660d74af5b", + "name": "A3_sheet34", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 132.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 132.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 132.0 + } + }, + { + "id": "A3_sheet33", + "uuid": "dd1fe282-7271-4bca-ac65-e049df0ddfe6", + "name": "A3_sheet33", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 134.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 134.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 134.0 + } + }, + { + "id": "A3_sheet32", + "uuid": "1bc58267-14dd-47a6-974b-bd2ad55c24e2", + "name": "A3_sheet32", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 136.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 136.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 136.0 + } + }, + { + "id": "A3_sheet31", + "uuid": "741e716f-8a55-47b9-8ec0-0293b5424ae2", + "name": "A3_sheet31", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 138.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 138.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 138.0 + } + }, + { + "id": "A3_sheet30", + "uuid": "7fe3b1ca-2f4e-492d-bade-39947bde7fae", + "name": "A3_sheet30", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 140.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 140.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 140.0 + } + }, + { + "id": "A3_sheet29", + "uuid": "3246fe44-c347-4c63-accb-2d84b2461900", + "name": "A3_sheet29", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 142.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 142.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 142.0 + } + }, + { + "id": "A3_sheet28", + "uuid": "fc8af54b-1c63-4169-88ed-576421500f5a", + "name": "A3_sheet28", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 144.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 144.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 144.0 + } + }, + { + "id": "A3_sheet27", + "uuid": "6b7d0cbd-110d-497b-8d56-fd23eee925e3", + "name": "A3_sheet27", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 146.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 146.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 146.0 + } + }, + { + "id": "A3_sheet26", + "uuid": "5fdefe52-6737-47fe-9689-680a0d469596", + "name": "A3_sheet26", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 148.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 148.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 148.0 + } + }, + { + "id": "A3_sheet25", + "uuid": "1075b9c3-9fa5-4f11-b503-6ba2a84c9cc5", + "name": "A3_sheet25", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 150.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 150.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 150.0 + } + }, + { + "id": "A3_sheet24", + "uuid": "6128f37f-f405-49c9-87ad-412837199e4e", + "name": "A3_sheet24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 152.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 152.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 152.0 + } + }, + { + "id": "A3_sheet23", + "uuid": "d3c540eb-fb8b-4b6a-b8e0-4bf5afa0d7f7", + "name": "A3_sheet23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 154.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 154.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 154.0 + } + }, + { + "id": "A3_sheet22", + "uuid": "9c2b024f-ed97-49a2-ae60-c2045e0dca14", + "name": "A3_sheet22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 156.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 156.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 156.0 + } + }, + { + "id": "A3_sheet21", + "uuid": "f022a9d0-6a6b-45db-b28a-45acf3796860", + "name": "A3_sheet21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 158.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 158.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 158.0 + } + }, + { + "id": "A3_sheet20", + "uuid": "83e0ee0a-f141-44c1-b767-fb249792ee07", + "name": "A3_sheet20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 160.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 160.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 160.0 + } + }, + { + "id": "A3_sheet19", + "uuid": "aabc32ed-523f-47a9-b782-ccee2c7cae0d", + "name": "A3_sheet19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 162.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 162.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 162.0 + } + }, + { + "id": "A3_sheet18", + "uuid": "e6fd0cb3-400b-471e-8338-a4f0c2c86880", + "name": "A3_sheet18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 164.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 164.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 164.0 + } + }, + { + "id": "A3_sheet17", + "uuid": "afac7d61-8a4e-4aff-9675-96eca845ca72", + "name": "A3_sheet17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 166.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 166.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 166.0 + } + }, + { + "id": "A3_sheet16", + "uuid": "d70b4397-9b03-4d4a-9523-78aebb848453", + "name": "A3_sheet16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 168.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 168.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 168.0 + } + }, + { + "id": "A3_sheet15", + "uuid": "dbe51325-7084-45e0-9617-ed02211ce188", + "name": "A3_sheet15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 170.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 170.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 170.0 + } + }, + { + "id": "A3_sheet14", + "uuid": "bae3a778-5430-40b8-a6d1-1cd499bcf09a", + "name": "A3_sheet14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 172.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 172.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 172.0 + } + }, + { + "id": "A3_sheet13", + "uuid": "346908a1-91ae-4962-a768-644d928c4a58", + "name": "A3_sheet13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 174.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 174.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 174.0 + } + }, + { + "id": "A3_sheet12", + "uuid": "23d4bdf3-8633-4136-8795-2ebb6fd41259", + "name": "A3_sheet12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 176.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 176.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 176.0 + } + }, + { + "id": "A3_sheet11", + "uuid": "70d4bc72-264f-4d4c-9718-572fc40dba81", + "name": "A3_sheet11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 178.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 178.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 178.0 + } + }, + { + "id": "A3_sheet10", + "uuid": "919c7313-62ea-4e67-81f2-bc6eb22d047c", + "name": "A3_sheet10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 180.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 180.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 180.0 + } + }, + { + "id": "A3_sheet9", + "uuid": "c29919b1-7256-4edd-8897-5993a742fc56", + "name": "A3_sheet9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 182.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 182.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 182.0 + } + }, + { + "id": "A3_sheet8", + "uuid": "11898ef4-aaa4-4f6d-893c-d67739b6355c", + "name": "A3_sheet8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 184.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 184.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 184.0 + } + }, + { + "id": "A3_sheet7", + "uuid": "9dc6a5e3-2a66-4b36-b55b-cd1f49e4df54", + "name": "A3_sheet7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 186.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 186.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 186.0 + } + }, + { + "id": "A3_sheet6", + "uuid": "2b9d1f44-1b01-4e8e-b544-6da9541c50a3", + "name": "A3_sheet6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 188.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 188.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 188.0 + } + }, + { + "id": "A3_sheet5", + "uuid": "f441d21f-07bc-4fea-b5b1-1d04be687957", + "name": "A3_sheet5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 190.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 190.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 190.0 + } + }, + { + "id": "A3_sheet4", + "uuid": "b4f7f28a-77c7-45c4-a693-09ef9c732ab4", + "name": "A3_sheet4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 192.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 192.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 192.0 + } + }, + { + "id": "A3_sheet3", + "uuid": "06654233-2e0b-481d-b649-3fdbb17a3a91", + "name": "A3_sheet3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 194.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 194.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 194.0 + } + }, + { + "id": "A3_sheet2", + "uuid": "a987bf32-20fd-4c53-86e3-fdbe50b39a7f", + "name": "A3_sheet2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 196.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 196.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 196.0 + } + }, + { + "id": "A3_sheet1", + "uuid": "284c77b8-559a-494e-b42c-0615ad0cadff", + "name": "A3_sheet1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cfc15f1c-1de0-4052-b48d-7ee82721d3d0", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 198.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 198.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 198.0 + } + }, + { + "id": "负极壳&弹垫片弹夹_负极壳&弹垫片弹夹-3", + "uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "name": "负极壳&弹垫片弹夹_负极壳&弹垫片弹夹-3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "7aa60ad0-ad6a-45c5-a58e-3ed5ae37152e", + "type": "resource_group", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 13.0, + "y": 33.0, + "z": 30.0 + }, + "position3d": { + "x": 13.0, + "y": 33.0, + "z": 30.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Magazine", + "size_x": 10, + "size_y": 10, + "size_z": 50.0, + "category": "resource_group", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_sheets": 100 + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 13.0, + "y": 33.0, + "z": 30.0 + } + }, + { + "id": "A4_sheet100", + "uuid": "214b1165-b24e-4824-b682-32f4d9e44b4f", + "name": "A4_sheet100", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "A4_sheet99", + "uuid": "56c985a4-74c3-4231-8c28-a4a86762ad2a", + "name": "A4_sheet99", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.5 + } + }, + { + "id": "A4_sheet98", + "uuid": "163a46da-5272-49c1-ba99-953703e7116e", + "name": "A4_sheet98", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + }, + { + "id": "A4_sheet97", + "uuid": "0b78b5e5-863c-41d3-b26e-c1b2a7d5c330", + "name": "A4_sheet97", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 1.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 1.5 + } + }, + { + "id": "A4_sheet96", + "uuid": "a11def41-e461-4629-9d99-523b9a7f67e6", + "name": "A4_sheet96", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + } + }, + { + "id": "A4_sheet95", + "uuid": "adbe7377-ed5c-4520-bcb8-82859ea6cf79", + "name": "A4_sheet95", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 2.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.5 + } + }, + { + "id": "A4_sheet94", + "uuid": "c6ad46bf-a08f-4c7b-8dce-a95e18aff9a1", + "name": "A4_sheet94", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 3.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.0 + } + }, + { + "id": "A4_sheet93", + "uuid": "2f0431da-36c8-4983-b7f6-17f31fa0248f", + "name": "A4_sheet93", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 3.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 3.5 + } + }, + { + "id": "A4_sheet92", + "uuid": "a0218eaf-abba-437b-a939-6241df43b926", + "name": "A4_sheet92", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 4.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.0 + } + }, + { + "id": "A4_sheet91", + "uuid": "ed1be8eb-ab75-4e4a-852a-2eeabc3a655c", + "name": "A4_sheet91", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 4.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.5 + } + }, + { + "id": "A4_sheet90", + "uuid": "13018cf6-2f56-47cb-959d-e895afe5b1ed", + "name": "A4_sheet90", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + } + }, + { + "id": "A4_sheet89", + "uuid": "627b5b3c-e382-4b7c-a8aa-26a6bcd6ef19", + "name": "A4_sheet89", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 5.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 5.5 + } + }, + { + "id": "A4_sheet88", + "uuid": "312b17da-bc29-417b-bb54-819be7b04188", + "name": "A4_sheet88", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.0 + } + }, + { + "id": "A4_sheet87", + "uuid": "204c8597-a85d-4328-b141-80e7b12d77b1", + "name": "A4_sheet87", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 6.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.5 + } + }, + { + "id": "A4_sheet86", + "uuid": "621f4a7a-206d-4413-9362-b33b610f7c1b", + "name": "A4_sheet86", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 7.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.0 + } + }, + { + "id": "A4_sheet85", + "uuid": "e9076ece-bcb5-435a-851a-9890406e6f49", + "name": "A4_sheet85", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 7.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 7.5 + } + }, + { + "id": "A4_sheet84", + "uuid": "ee1336a6-e6de-4acb-b2cb-84b08ab4accd", + "name": "A4_sheet84", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 8.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.0 + } + }, + { + "id": "A4_sheet83", + "uuid": "6245a6b8-b10a-44af-ba42-745dee198984", + "name": "A4_sheet83", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 8.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.5 + } + }, + { + "id": "A4_sheet82", + "uuid": "96d3ce7b-d3d7-4955-a50f-f057a9a7150b", + "name": "A4_sheet82", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 9.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.0 + } + }, + { + "id": "A4_sheet81", + "uuid": "20105e9f-b0ff-4d00-bb22-7480976c252f", + "name": "A4_sheet81", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 9.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 9.5 + } + }, + { + "id": "A4_sheet80", + "uuid": "276dd221-5ce9-4cb2-90eb-28e144897b81", + "name": "A4_sheet80", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 10.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 10.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 10.0 + } + }, + { + "id": "A4_sheet79", + "uuid": "8766ab83-3fbc-4c1e-9807-c8c0db6179b5", + "name": "A4_sheet79", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 10.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 10.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 10.5 + } + }, + { + "id": "A4_sheet78", + "uuid": "961c38a5-3b43-476c-ae26-4122dc239859", + "name": "A4_sheet78", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 11.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 11.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 11.0 + } + }, + { + "id": "A4_sheet77", + "uuid": "bfb25cea-ec96-48a4-ba28-53fdb7de8403", + "name": "A4_sheet77", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 11.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 11.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 11.5 + } + }, + { + "id": "A4_sheet76", + "uuid": "ba2eb107-24f9-4e3f-89c6-b22c3dcc84ca", + "name": "A4_sheet76", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 12.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 12.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 12.0 + } + }, + { + "id": "A4_sheet75", + "uuid": "21a0fe7d-7d4f-421f-a854-f5dd30721383", + "name": "A4_sheet75", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 12.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 12.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 12.5 + } + }, + { + "id": "A4_sheet74", + "uuid": "5eaffae3-2985-4102-b18a-957d80a6ce71", + "name": "A4_sheet74", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 13.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 13.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 13.0 + } + }, + { + "id": "A4_sheet73", + "uuid": "a69f2b04-1c32-4f68-b26a-1735c648f7a6", + "name": "A4_sheet73", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 13.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 13.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 13.5 + } + }, + { + "id": "A4_sheet72", + "uuid": "45c53cd3-fdf5-4675-8ae3-a3945e92f4a0", + "name": "A4_sheet72", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 14.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 14.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 14.0 + } + }, + { + "id": "A4_sheet71", + "uuid": "43565a7b-d237-4f25-b9b2-7ce42d69780c", + "name": "A4_sheet71", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 14.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 14.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 14.5 + } + }, + { + "id": "A4_sheet70", + "uuid": "678c3372-9f30-48a3-99db-d531f264c8e8", + "name": "A4_sheet70", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 15.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 15.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 15.0 + } + }, + { + "id": "A4_sheet69", + "uuid": "4cb6fc68-48d7-444c-9fc9-c7fdeaca458a", + "name": "A4_sheet69", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 15.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 15.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 15.5 + } + }, + { + "id": "A4_sheet68", + "uuid": "122d8162-ccca-4e30-8362-ac9738e9c749", + "name": "A4_sheet68", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 16.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 16.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 16.0 + } + }, + { + "id": "A4_sheet67", + "uuid": "5a8c71e0-2e3c-41d4-b19d-b8c4aaefa783", + "name": "A4_sheet67", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 16.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 16.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 16.5 + } + }, + { + "id": "A4_sheet66", + "uuid": "4d3c427f-2e17-47eb-a829-a4226db7e66c", + "name": "A4_sheet66", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 17.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 17.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 17.0 + } + }, + { + "id": "A4_sheet65", + "uuid": "e4e44c5e-ff94-4ccc-9857-a425402377bd", + "name": "A4_sheet65", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 17.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 17.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 17.5 + } + }, + { + "id": "A4_sheet64", + "uuid": "e0836a1d-4532-4ae9-96f3-1416ce87c3c2", + "name": "A4_sheet64", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 18.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 18.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 18.0 + } + }, + { + "id": "A4_sheet63", + "uuid": "32eeeddd-3730-4815-9af9-af51fec34e09", + "name": "A4_sheet63", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 18.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 18.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 18.5 + } + }, + { + "id": "A4_sheet62", + "uuid": "4568a1df-10b2-4dbd-980b-bd7d1481700d", + "name": "A4_sheet62", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 19.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 19.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 19.0 + } + }, + { + "id": "A4_sheet61", + "uuid": "7f0a5a09-442d-4b05-9e6f-96848a4b114f", + "name": "A4_sheet61", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 19.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 19.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 19.5 + } + }, + { + "id": "A4_sheet60", + "uuid": "9211ddb8-2004-408e-8679-bf194cdf7531", + "name": "A4_sheet60", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 20.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 20.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 20.0 + } + }, + { + "id": "A4_sheet59", + "uuid": "422aa26c-1f26-476d-9295-71304c1ed112", + "name": "A4_sheet59", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 20.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 20.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 20.5 + } + }, + { + "id": "A4_sheet58", + "uuid": "5995877f-bfa6-4c73-8e60-a44cd4009ad5", + "name": "A4_sheet58", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 21.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 21.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 21.0 + } + }, + { + "id": "A4_sheet57", + "uuid": "c1f9ce7a-3ddc-4283-bb22-31b16dde590c", + "name": "A4_sheet57", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 21.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 21.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 21.5 + } + }, + { + "id": "A4_sheet56", + "uuid": "dec945af-131d-4bc6-9bd0-1b1d01bba385", + "name": "A4_sheet56", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 22.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 22.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 22.0 + } + }, + { + "id": "A4_sheet55", + "uuid": "edd5857f-214a-4ffa-92d0-0970bf537735", + "name": "A4_sheet55", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 22.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 22.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 22.5 + } + }, + { + "id": "A4_sheet54", + "uuid": "3b544caf-de67-4b0b-9db5-e57058c3264a", + "name": "A4_sheet54", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 23.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 23.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 23.0 + } + }, + { + "id": "A4_sheet53", + "uuid": "d49f7f58-c4ab-47c0-913c-3d2ec01a57bd", + "name": "A4_sheet53", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 23.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 23.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 23.5 + } + }, + { + "id": "A4_sheet52", + "uuid": "d34a79bb-a459-4cdb-9b59-e1fbbff3c30c", + "name": "A4_sheet52", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 24.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 24.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 24.0 + } + }, + { + "id": "A4_sheet51", + "uuid": "53266921-522a-4bfd-92ba-b8a7eeec9025", + "name": "A4_sheet51", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 24.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 24.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 24.5 + } + }, + { + "id": "A4_sheet50", + "uuid": "e961eade-9d6a-4e38-ac5c-02d9ff188b6e", + "name": "A4_sheet50", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 25.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 25.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 25.0 + } + }, + { + "id": "A4_sheet49", + "uuid": "75790b3f-fc5e-4294-9d83-e0478b9ac629", + "name": "A4_sheet49", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 25.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 25.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 25.5 + } + }, + { + "id": "A4_sheet48", + "uuid": "9aae1e6c-fc7d-4c30-ac08-5a9eae58374b", + "name": "A4_sheet48", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 26.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 26.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 26.0 + } + }, + { + "id": "A4_sheet47", + "uuid": "97992cbf-955d-4498-8d27-0680e25671e7", + "name": "A4_sheet47", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 26.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 26.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 26.5 + } + }, + { + "id": "A4_sheet46", + "uuid": "ee68c8e2-b4c1-49a6-8ede-3b7fa6527ce5", + "name": "A4_sheet46", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 27.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 27.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 27.0 + } + }, + { + "id": "A4_sheet45", + "uuid": "cb1f4472-3a64-43a1-8865-9d749b0fe4c2", + "name": "A4_sheet45", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 27.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 27.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 27.5 + } + }, + { + "id": "A4_sheet44", + "uuid": "02d1d2ec-15d3-4844-93a2-2a4cf76f230a", + "name": "A4_sheet44", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 28.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 28.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 28.0 + } + }, + { + "id": "A4_sheet43", + "uuid": "76e2e572-52f9-4d82-9118-f2472e2a01bb", + "name": "A4_sheet43", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 28.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 28.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 28.5 + } + }, + { + "id": "A4_sheet42", + "uuid": "872ca6fb-93ca-4ad7-b6dd-ea0bf5c6903d", + "name": "A4_sheet42", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 29.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 29.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 29.0 + } + }, + { + "id": "A4_sheet41", + "uuid": "6053374d-1837-415b-a5f8-99b556723086", + "name": "A4_sheet41", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 29.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 29.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 29.5 + } + }, + { + "id": "A4_sheet40", + "uuid": "335b8539-447e-419a-a4a1-5bad62ed8924", + "name": "A4_sheet40", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 30.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 30.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 30.0 + } + }, + { + "id": "A4_sheet39", + "uuid": "832d6868-8c47-4115-bf49-2afe1b4385fc", + "name": "A4_sheet39", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 30.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 30.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 30.5 + } + }, + { + "id": "A4_sheet38", + "uuid": "c3a28306-c87c-4e81-906e-37a54bef52f7", + "name": "A4_sheet38", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 31.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 31.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 31.0 + } + }, + { + "id": "A4_sheet37", + "uuid": "f85a2643-8c54-4829-8a0f-d97b5b0b9e68", + "name": "A4_sheet37", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 31.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 31.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 31.5 + } + }, + { + "id": "A4_sheet36", + "uuid": "cc485271-44ae-4ed8-ad03-c076cc75abac", + "name": "A4_sheet36", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 32.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 32.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 32.0 + } + }, + { + "id": "A4_sheet35", + "uuid": "811adc4b-2399-4ecc-b653-be12ca7a59a5", + "name": "A4_sheet35", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 32.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 32.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 32.5 + } + }, + { + "id": "A4_sheet34", + "uuid": "4bfd7fbf-b533-486c-bf79-81ba3c0d76b2", + "name": "A4_sheet34", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 33.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 33.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 33.0 + } + }, + { + "id": "A4_sheet33", + "uuid": "9318a169-f8ae-4229-8642-e42693a6c254", + "name": "A4_sheet33", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 33.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 33.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 33.5 + } + }, + { + "id": "A4_sheet32", + "uuid": "0da48e2c-f3ad-4ddf-b68a-ab2c2f8a30d6", + "name": "A4_sheet32", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 34.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 34.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 34.0 + } + }, + { + "id": "A4_sheet31", + "uuid": "beb48ec0-64da-4617-8e8c-35a653d4b491", + "name": "A4_sheet31", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 34.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 34.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 34.5 + } + }, + { + "id": "A4_sheet30", + "uuid": "7c16e8a4-152e-43ec-96ea-a45e1de26494", + "name": "A4_sheet30", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 35.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 35.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 35.0 + } + }, + { + "id": "A4_sheet29", + "uuid": "c115ecba-2f45-4987-8646-366ad32bb47e", + "name": "A4_sheet29", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 35.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 35.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 35.5 + } + }, + { + "id": "A4_sheet28", + "uuid": "e6659343-51f4-4344-ac83-57a61e7a22f6", + "name": "A4_sheet28", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 36.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 36.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 36.0 + } + }, + { + "id": "A4_sheet27", + "uuid": "831a960e-361e-4a93-802c-fb2304dce320", + "name": "A4_sheet27", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 36.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 36.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 36.5 + } + }, + { + "id": "A4_sheet26", + "uuid": "23a84f60-093f-4169-b5e7-b264920881a6", + "name": "A4_sheet26", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 37.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 37.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 37.0 + } + }, + { + "id": "A4_sheet25", + "uuid": "0087b517-4bfa-4a84-8449-82fa7955d0ac", + "name": "A4_sheet25", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 37.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 37.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 37.5 + } + }, + { + "id": "A4_sheet24", + "uuid": "4fd7e859-5169-4abe-8367-208156f2075d", + "name": "A4_sheet24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 38.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 38.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 38.0 + } + }, + { + "id": "A4_sheet23", + "uuid": "9a447db2-a1ad-4e00-99ff-f019dd04f475", + "name": "A4_sheet23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 38.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 38.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 38.5 + } + }, + { + "id": "A4_sheet22", + "uuid": "39b7c5d1-00e3-43a3-9b97-9c2a3a06f64a", + "name": "A4_sheet22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 39.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 39.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 39.0 + } + }, + { + "id": "A4_sheet21", + "uuid": "86889574-2794-4eae-b16a-ee5dd6ee1762", + "name": "A4_sheet21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 39.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 39.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 39.5 + } + }, + { + "id": "A4_sheet20", + "uuid": "2cf4dc47-00d4-4b0a-937b-ad0a2d7e704f", + "name": "A4_sheet20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 40.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 40.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 40.0 + } + }, + { + "id": "A4_sheet19", + "uuid": "1c91ca39-945f-44d7-956e-c7e23c5b3b08", + "name": "A4_sheet19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 40.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 40.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 40.5 + } + }, + { + "id": "A4_sheet18", + "uuid": "604d0848-ca26-4535-b195-8ab65639baf9", + "name": "A4_sheet18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 41.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 41.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 41.0 + } + }, + { + "id": "A4_sheet17", + "uuid": "72705490-dbc4-4740-ad71-523029093855", + "name": "A4_sheet17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 41.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 41.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 41.5 + } + }, + { + "id": "A4_sheet16", + "uuid": "14f11f2f-e82b-4a11-9c07-8558212ceedb", + "name": "A4_sheet16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 42.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 42.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 42.0 + } + }, + { + "id": "A4_sheet15", + "uuid": "b09d1a12-ac61-4d3f-a7d0-292a5b9ab23e", + "name": "A4_sheet15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 42.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 42.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 42.5 + } + }, + { + "id": "A4_sheet14", + "uuid": "f0cf22ab-7ad4-4958-8bf8-5daca1e5d136", + "name": "A4_sheet14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 43.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 43.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 43.0 + } + }, + { + "id": "A4_sheet13", + "uuid": "7b4283d2-b653-4adc-a412-676da36d7b95", + "name": "A4_sheet13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 43.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 43.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 43.5 + } + }, + { + "id": "A4_sheet12", + "uuid": "ccccab20-5ce6-4282-8da8-352ece3bc19f", + "name": "A4_sheet12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 44.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 44.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 44.0 + } + }, + { + "id": "A4_sheet11", + "uuid": "0c0ea5f9-e2db-4774-ab59-1321a0e5057d", + "name": "A4_sheet11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 44.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 44.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 44.5 + } + }, + { + "id": "A4_sheet10", + "uuid": "453ccd9a-a529-4c5a-9756-377b514b8eca", + "name": "A4_sheet10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 45.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 45.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 45.0 + } + }, + { + "id": "A4_sheet9", + "uuid": "17e8e3f7-1d0d-47f5-a71c-4c5de2ae2a1b", + "name": "A4_sheet9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 45.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 45.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 45.5 + } + }, + { + "id": "A4_sheet8", + "uuid": "ea6f84b0-4d56-47b5-aed5-2587f85f610e", + "name": "A4_sheet8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 46.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 46.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 46.0 + } + }, + { + "id": "A4_sheet7", + "uuid": "a9fe3366-eea7-4c86-96b4-3dfcd763ad13", + "name": "A4_sheet7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 46.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 46.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 46.5 + } + }, + { + "id": "A4_sheet6", + "uuid": "bfd202a5-142b-4884-8743-fa5388ad75f5", + "name": "A4_sheet6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 47.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 47.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 47.0 + } + }, + { + "id": "A4_sheet5", + "uuid": "a31f142d-7123-428b-807a-84bf3a66ce79", + "name": "A4_sheet5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 47.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 47.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 47.5 + } + }, + { + "id": "A4_sheet4", + "uuid": "b5fd5c60-4af7-43dc-a078-e489e4361a82", + "name": "A4_sheet4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 48.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 48.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 48.0 + } + }, + { + "id": "A4_sheet3", + "uuid": "29698cbd-0e08-4283-acd1-bae42fc09006", + "name": "A4_sheet3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 48.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 48.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 48.5 + } + }, + { + "id": "A4_sheet2", + "uuid": "be948424-0230-4707-bb6c-ee38b7ac391d", + "name": "A4_sheet2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 49.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 49.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 49.0 + } + }, + { + "id": "A4_sheet1", + "uuid": "e4caa3dd-4e15-4342-ac91-50d8fa5aa380", + "name": "A4_sheet1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "cb44b223-a644-41b1-9434-20da4754330e", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 0.5, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 49.5 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 49.5 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 10, + "size_y": 10, + "size_z": 0.5, + "category": "electrode_sheet", + "model": "SpringWasher", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "spring_steel", + "color": "#8b7355" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 49.5 + } + }, + { + "id": "负极壳&弹垫片弹夹_负极壳&弹垫片弹夹-4", + "uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "name": "负极壳&弹垫片弹夹_负极壳&弹垫片弹夹-4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "7aa60ad0-ad6a-45c5-a58e-3ed5ae37152e", + "type": "resource_group", + "class": "", + "pose": { + "size": { + "depth": 200.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 23.0, + "y": 15.6795, + "z": 30.0 + }, + "position3d": { + "x": 23.0, + "y": 15.6795, + "z": 30.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Magazine", + "size_x": 12, + "size_y": 12, + "size_z": 200.0, + "category": "resource_group", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_sheets": 100 + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 23.0, + "y": 15.6795, + "z": 30.0 + } + }, + { + "id": "A5_sheet100", + "uuid": "1617b4c8-2b40-473f-886a-458adf837d9c", + "name": "A5_sheet100", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "A5_sheet99", + "uuid": "41f53889-636f-4bd2-83ad-a0e598fd0e7e", + "name": "A5_sheet99", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + } + }, + { + "id": "A5_sheet98", + "uuid": "4280d8fe-b395-461d-87e6-399049c825f5", + "name": "A5_sheet98", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 4.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.0 + } + }, + { + "id": "A5_sheet97", + "uuid": "689b028a-baec-4ad0-9aaa-c4d5cd8f387d", + "name": "A5_sheet97", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.0 + } + }, + { + "id": "A5_sheet96", + "uuid": "c631eb56-3343-4251-89fc-b26906d77060", + "name": "A5_sheet96", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 8.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.0 + } + }, + { + "id": "A5_sheet95", + "uuid": "846f916f-b70e-4cee-883c-abcc429121eb", + "name": "A5_sheet95", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 10.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 10.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 10.0 + } + }, + { + "id": "A5_sheet94", + "uuid": "009b38a0-f907-4d19-817e-69362e2b4b73", + "name": "A5_sheet94", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 12.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 12.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 12.0 + } + }, + { + "id": "A5_sheet93", + "uuid": "05feb2ee-8a19-414a-ae9f-6fbe065bc9c7", + "name": "A5_sheet93", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 14.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 14.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 14.0 + } + }, + { + "id": "A5_sheet92", + "uuid": "a7e48037-dc73-4f0f-a3fc-378da7eb8bb5", + "name": "A5_sheet92", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 16.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 16.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 16.0 + } + }, + { + "id": "A5_sheet91", + "uuid": "c2ece2d5-363b-41d4-aeb8-737b9e0dc080", + "name": "A5_sheet91", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 18.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 18.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 18.0 + } + }, + { + "id": "A5_sheet90", + "uuid": "26d1e25d-5ff8-4cb7-a6b9-b9ca6763065a", + "name": "A5_sheet90", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 20.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 20.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 20.0 + } + }, + { + "id": "A5_sheet89", + "uuid": "d33d32be-c0fc-4da5-b8bf-f7384161fdd5", + "name": "A5_sheet89", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 22.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 22.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 22.0 + } + }, + { + "id": "A5_sheet88", + "uuid": "71af5042-46f4-45a8-a1c1-0842a6e5331d", + "name": "A5_sheet88", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 24.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 24.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 24.0 + } + }, + { + "id": "A5_sheet87", + "uuid": "43297fbf-4d15-4866-83e4-29ccb5495471", + "name": "A5_sheet87", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 26.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 26.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 26.0 + } + }, + { + "id": "A5_sheet86", + "uuid": "683724a2-b537-460a-95be-facbe211a3e0", + "name": "A5_sheet86", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 28.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 28.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 28.0 + } + }, + { + "id": "A5_sheet85", + "uuid": "15f5306c-6ad2-4af1-9ed9-11311cd2867d", + "name": "A5_sheet85", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 30.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 30.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 30.0 + } + }, + { + "id": "A5_sheet84", + "uuid": "efd7bffe-b261-4678-b50a-37ace1485d9e", + "name": "A5_sheet84", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 32.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 32.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 32.0 + } + }, + { + "id": "A5_sheet83", + "uuid": "ac7ee1ac-406d-4897-b1e1-c0426998d2f3", + "name": "A5_sheet83", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 34.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 34.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 34.0 + } + }, + { + "id": "A5_sheet82", + "uuid": "bceb764e-ad2c-4f05-a9f2-7899b692a58b", + "name": "A5_sheet82", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 36.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 36.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 36.0 + } + }, + { + "id": "A5_sheet81", + "uuid": "b02f3731-3adb-4ac1-8c05-ce9dcd6c9602", + "name": "A5_sheet81", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 38.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 38.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 38.0 + } + }, + { + "id": "A5_sheet80", + "uuid": "ed20de04-b6ea-463b-8f95-fcdc16b963c0", + "name": "A5_sheet80", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 40.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 40.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 40.0 + } + }, + { + "id": "A5_sheet79", + "uuid": "f2533efe-6635-43b9-9677-a085e1fc91ab", + "name": "A5_sheet79", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 42.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 42.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 42.0 + } + }, + { + "id": "A5_sheet78", + "uuid": "1de79c97-122e-4cbe-8ead-3fc92882c0e0", + "name": "A5_sheet78", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 44.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 44.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 44.0 + } + }, + { + "id": "A5_sheet77", + "uuid": "210bc5d4-4669-4e36-b800-0cfbd585aeff", + "name": "A5_sheet77", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 46.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 46.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 46.0 + } + }, + { + "id": "A5_sheet76", + "uuid": "0d6484f4-ffcb-4331-8d13-f82b2e845722", + "name": "A5_sheet76", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 48.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 48.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 48.0 + } + }, + { + "id": "A5_sheet75", + "uuid": "4100e679-607e-4104-8787-6d4522b4b06c", + "name": "A5_sheet75", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 50.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 50.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 50.0 + } + }, + { + "id": "A5_sheet74", + "uuid": "781e12d5-8231-4787-9fdb-6912ee7e751a", + "name": "A5_sheet74", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 52.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 52.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 52.0 + } + }, + { + "id": "A5_sheet73", + "uuid": "171db217-3288-4f52-817d-13ef6197f46d", + "name": "A5_sheet73", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 54.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 54.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 54.0 + } + }, + { + "id": "A5_sheet72", + "uuid": "5eff82f9-5a3e-45ec-b05a-441c93e0fd6f", + "name": "A5_sheet72", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 56.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 56.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 56.0 + } + }, + { + "id": "A5_sheet71", + "uuid": "7b7563b3-bd20-4251-8855-e0310b058833", + "name": "A5_sheet71", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 58.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 58.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 58.0 + } + }, + { + "id": "A5_sheet70", + "uuid": "a9dbd76a-5b07-43b3-9d07-62ccbc929062", + "name": "A5_sheet70", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 60.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 60.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 60.0 + } + }, + { + "id": "A5_sheet69", + "uuid": "eecb907e-0fa3-48ae-a5f9-d65c2df064ba", + "name": "A5_sheet69", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 62.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 62.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 62.0 + } + }, + { + "id": "A5_sheet68", + "uuid": "c3322dbc-2658-4578-a664-936550f47f31", + "name": "A5_sheet68", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 64.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 64.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 64.0 + } + }, + { + "id": "A5_sheet67", + "uuid": "52279b81-a9f8-4a55-be8d-0b91287d95a8", + "name": "A5_sheet67", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 66.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 66.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 66.0 + } + }, + { + "id": "A5_sheet66", + "uuid": "5dd1d404-27dd-4227-9b68-cce30740a305", + "name": "A5_sheet66", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 68.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 68.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 68.0 + } + }, + { + "id": "A5_sheet65", + "uuid": "4ce40f79-03c1-4c4a-8496-957ffb3c18c1", + "name": "A5_sheet65", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 70.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 70.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 70.0 + } + }, + { + "id": "A5_sheet64", + "uuid": "04f21743-12c9-4f1c-8718-566a57321a27", + "name": "A5_sheet64", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 72.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 72.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 72.0 + } + }, + { + "id": "A5_sheet63", + "uuid": "ae978c20-068e-478b-bfbf-9b96fbf453f8", + "name": "A5_sheet63", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 74.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 74.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 74.0 + } + }, + { + "id": "A5_sheet62", + "uuid": "296db828-13b9-4701-835b-6164754431bc", + "name": "A5_sheet62", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 76.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 76.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 76.0 + } + }, + { + "id": "A5_sheet61", + "uuid": "7b6ed1c4-8a2d-4ba5-b0b5-3cb625d35ce0", + "name": "A5_sheet61", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 78.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 78.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 78.0 + } + }, + { + "id": "A5_sheet60", + "uuid": "398a61df-c1df-4d9a-bae5-f819e6fefd1c", + "name": "A5_sheet60", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 80.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 80.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 80.0 + } + }, + { + "id": "A5_sheet59", + "uuid": "8d8f0e43-2ac1-4a79-87bf-a24e6e578023", + "name": "A5_sheet59", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 82.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 82.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 82.0 + } + }, + { + "id": "A5_sheet58", + "uuid": "abb8f466-c8cc-444e-84f9-a15d5633a6de", + "name": "A5_sheet58", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 84.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 84.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 84.0 + } + }, + { + "id": "A5_sheet57", + "uuid": "ca162121-97f2-4edb-be19-6e361cbd3be6", + "name": "A5_sheet57", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 86.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 86.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 86.0 + } + }, + { + "id": "A5_sheet56", + "uuid": "02d877ed-a82b-436f-ba0a-d0559b6a70f9", + "name": "A5_sheet56", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 88.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 88.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 88.0 + } + }, + { + "id": "A5_sheet55", + "uuid": "d1de3330-cb16-4076-940c-00f0b15658e9", + "name": "A5_sheet55", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 90.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 90.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 90.0 + } + }, + { + "id": "A5_sheet54", + "uuid": "d2e463a4-153a-4933-8a15-a112a3e28550", + "name": "A5_sheet54", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 92.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 92.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 92.0 + } + }, + { + "id": "A5_sheet53", + "uuid": "f62f03f9-4614-443f-8627-29308f7d6b44", + "name": "A5_sheet53", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 94.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 94.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 94.0 + } + }, + { + "id": "A5_sheet52", + "uuid": "c83b2266-6aa4-4d5d-8f0d-f5b7a319946e", + "name": "A5_sheet52", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 96.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 96.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 96.0 + } + }, + { + "id": "A5_sheet51", + "uuid": "464f0959-d85d-4e18-b69c-80cec2e2b532", + "name": "A5_sheet51", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 98.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 98.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 98.0 + } + }, + { + "id": "A5_sheet50", + "uuid": "2555750c-e8be-4aa1-bede-f58da5fb0ffb", + "name": "A5_sheet50", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 100.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 100.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 100.0 + } + }, + { + "id": "A5_sheet49", + "uuid": "a8077cd3-8973-42b9-9d8d-fec4769e297c", + "name": "A5_sheet49", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 102.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 102.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 102.0 + } + }, + { + "id": "A5_sheet48", + "uuid": "6674e1f4-112d-46a8-b291-da1c82d84da0", + "name": "A5_sheet48", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 104.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 104.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 104.0 + } + }, + { + "id": "A5_sheet47", + "uuid": "b33788f5-1176-451d-a7e5-1872c39003a2", + "name": "A5_sheet47", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 106.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 106.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 106.0 + } + }, + { + "id": "A5_sheet46", + "uuid": "a235ae6c-4b60-4721-a52c-90d8e1f6564b", + "name": "A5_sheet46", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 108.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 108.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 108.0 + } + }, + { + "id": "A5_sheet45", + "uuid": "5d1b08d2-0407-4565-9fdd-5790bfa1502c", + "name": "A5_sheet45", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 110.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 110.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 110.0 + } + }, + { + "id": "A5_sheet44", + "uuid": "292f56c8-554a-48d3-b620-99f9c9e8787b", + "name": "A5_sheet44", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 112.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 112.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 112.0 + } + }, + { + "id": "A5_sheet43", + "uuid": "242e0b7a-6f0b-49d4-9d75-9f96709b4505", + "name": "A5_sheet43", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 114.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 114.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 114.0 + } + }, + { + "id": "A5_sheet42", + "uuid": "7cf57303-195a-48b1-be4e-ef22d660252d", + "name": "A5_sheet42", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 116.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 116.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 116.0 + } + }, + { + "id": "A5_sheet41", + "uuid": "98a1925d-22a9-4dc6-b4e5-41c6732dca03", + "name": "A5_sheet41", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 118.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 118.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 118.0 + } + }, + { + "id": "A5_sheet40", + "uuid": "bfd3314b-29ef-42d6-8a2b-cfe45196e997", + "name": "A5_sheet40", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 120.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 120.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 120.0 + } + }, + { + "id": "A5_sheet39", + "uuid": "9668ff4d-cf00-48df-accf-35db402736a8", + "name": "A5_sheet39", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 122.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 122.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 122.0 + } + }, + { + "id": "A5_sheet38", + "uuid": "454478c0-c387-44e4-b9cf-fdb07bb22091", + "name": "A5_sheet38", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 124.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 124.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 124.0 + } + }, + { + "id": "A5_sheet37", + "uuid": "20bb01de-5d88-4fc5-9a02-99b40bfe7bea", + "name": "A5_sheet37", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 126.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 126.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 126.0 + } + }, + { + "id": "A5_sheet36", + "uuid": "61b8c91d-bd53-409e-af7f-9d961141644f", + "name": "A5_sheet36", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 128.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 128.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 128.0 + } + }, + { + "id": "A5_sheet35", + "uuid": "c3b00744-ac6b-46af-998a-7fc2ec60ae73", + "name": "A5_sheet35", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 130.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 130.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 130.0 + } + }, + { + "id": "A5_sheet34", + "uuid": "a3d3aabe-9c31-4708-8111-1de76c97f090", + "name": "A5_sheet34", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 132.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 132.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 132.0 + } + }, + { + "id": "A5_sheet33", + "uuid": "508d031f-2632-476d-a4db-75ec2fdcd5e5", + "name": "A5_sheet33", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 134.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 134.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 134.0 + } + }, + { + "id": "A5_sheet32", + "uuid": "c0fb36c3-ce42-49d0-b5aa-023f25eea8ae", + "name": "A5_sheet32", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 136.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 136.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 136.0 + } + }, + { + "id": "A5_sheet31", + "uuid": "5de310a8-92d7-4a3c-b0f2-593a6365c392", + "name": "A5_sheet31", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 138.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 138.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 138.0 + } + }, + { + "id": "A5_sheet30", + "uuid": "32cb53ba-09b1-44f3-bb4d-9dd5cf429843", + "name": "A5_sheet30", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 140.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 140.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 140.0 + } + }, + { + "id": "A5_sheet29", + "uuid": "022f1e4c-973b-4371-b208-4a6c94d11ec9", + "name": "A5_sheet29", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 142.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 142.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 142.0 + } + }, + { + "id": "A5_sheet28", + "uuid": "1dde954a-2fe0-4367-aa41-47ffe4c5d942", + "name": "A5_sheet28", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 144.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 144.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 144.0 + } + }, + { + "id": "A5_sheet27", + "uuid": "abcf64e8-5278-4d43-ba58-9e3528b77ea5", + "name": "A5_sheet27", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 146.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 146.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 146.0 + } + }, + { + "id": "A5_sheet26", + "uuid": "31f7a269-d99d-4216-b607-6958c3782221", + "name": "A5_sheet26", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 148.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 148.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 148.0 + } + }, + { + "id": "A5_sheet25", + "uuid": "628103d4-9efc-4c3a-979b-eb74f55594cd", + "name": "A5_sheet25", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 150.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 150.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 150.0 + } + }, + { + "id": "A5_sheet24", + "uuid": "9a1892b9-a561-478a-b482-2c19ca09765c", + "name": "A5_sheet24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 152.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 152.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 152.0 + } + }, + { + "id": "A5_sheet23", + "uuid": "c6c0c93b-5e2c-40de-b0b5-ebadfccee20e", + "name": "A5_sheet23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 154.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 154.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 154.0 + } + }, + { + "id": "A5_sheet22", + "uuid": "76e0f8f7-a1cf-43b5-abe4-a0a6ce392fbc", + "name": "A5_sheet22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 156.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 156.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 156.0 + } + }, + { + "id": "A5_sheet21", + "uuid": "9329c8b7-5b30-43af-9e05-4496d22b811e", + "name": "A5_sheet21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 158.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 158.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 158.0 + } + }, + { + "id": "A5_sheet20", + "uuid": "02eb60ef-757d-467f-9fce-4171d1bee4c9", + "name": "A5_sheet20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 160.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 160.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 160.0 + } + }, + { + "id": "A5_sheet19", + "uuid": "5b1e426f-533d-4344-96bb-82374be913d8", + "name": "A5_sheet19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 162.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 162.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 162.0 + } + }, + { + "id": "A5_sheet18", + "uuid": "1b80d777-6633-4f50-95f9-b04b632f1c73", + "name": "A5_sheet18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 164.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 164.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 164.0 + } + }, + { + "id": "A5_sheet17", + "uuid": "6c260a72-3b0c-441f-b78a-fdf419b8a1f9", + "name": "A5_sheet17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 166.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 166.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 166.0 + } + }, + { + "id": "A5_sheet16", + "uuid": "96d485de-6b0d-4d5f-8104-b8a99427fd4f", + "name": "A5_sheet16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 168.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 168.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 168.0 + } + }, + { + "id": "A5_sheet15", + "uuid": "e7626d88-3602-4c65-94d2-776f8c26d2c7", + "name": "A5_sheet15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 170.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 170.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 170.0 + } + }, + { + "id": "A5_sheet14", + "uuid": "880ee857-08c7-4b86-a2bb-24c77db060b0", + "name": "A5_sheet14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 172.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 172.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 172.0 + } + }, + { + "id": "A5_sheet13", + "uuid": "177f2ff9-737a-4340-adc9-81df95eeb07e", + "name": "A5_sheet13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 174.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 174.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 174.0 + } + }, + { + "id": "A5_sheet12", + "uuid": "9cfdcb7d-9c66-47b6-957f-1a638962562d", + "name": "A5_sheet12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 176.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 176.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 176.0 + } + }, + { + "id": "A5_sheet11", + "uuid": "b2e10a6d-2f5e-4b35-b75d-515157bb2ff3", + "name": "A5_sheet11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 178.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 178.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 178.0 + } + }, + { + "id": "A5_sheet10", + "uuid": "8c5f35d3-471e-4c67-91c1-7b53a2e6eb13", + "name": "A5_sheet10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 180.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 180.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 180.0 + } + }, + { + "id": "A5_sheet9", + "uuid": "9b55e872-a511-499a-aed5-78d7ee53c86a", + "name": "A5_sheet9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 182.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 182.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 182.0 + } + }, + { + "id": "A5_sheet8", + "uuid": "f4ddaca7-97d7-4e03-aa4b-3cdb0503c3cf", + "name": "A5_sheet8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 184.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 184.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 184.0 + } + }, + { + "id": "A5_sheet7", + "uuid": "1ea7931e-bfa2-462e-a711-3597566bf230", + "name": "A5_sheet7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 186.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 186.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 186.0 + } + }, + { + "id": "A5_sheet6", + "uuid": "19a48d11-efb2-40fb-9b16-061c3c08b9a6", + "name": "A5_sheet6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 188.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 188.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 188.0 + } + }, + { + "id": "A5_sheet5", + "uuid": "da5fb729-f580-42c1-b321-5dbb13473dac", + "name": "A5_sheet5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 190.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 190.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 190.0 + } + }, + { + "id": "A5_sheet4", + "uuid": "ba14eb2a-aaa7-4bb1-8c89-b28422be29f6", + "name": "A5_sheet4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 192.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 192.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 192.0 + } + }, + { + "id": "A5_sheet3", + "uuid": "875df63b-90db-4232-a219-7bef36d1922d", + "name": "A5_sheet3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 194.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 194.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 194.0 + } + }, + { + "id": "A5_sheet2", + "uuid": "8142f353-3feb-439e-be6c-4c7a3ec7607a", + "name": "A5_sheet2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 196.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 196.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 196.0 + } + }, + { + "id": "A5_sheet1", + "uuid": "87df0b5d-535d-4cbf-a305-6173a3084abe", + "name": "A5_sheet1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "07513263-35ef-4421-8885-5438e2a4c293", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 198.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 198.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 198.0 + } + }, + { + "id": "负极壳&弹垫片弹夹_负极壳&弹垫片弹夹-5", + "uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "name": "负极壳&弹垫片弹夹_负极壳&弹垫片弹夹-5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "7aa60ad0-ad6a-45c5-a58e-3ed5ae37152e", + "type": "resource_group", + "class": "", + "pose": { + "size": { + "depth": 200.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 43.0, + "y": 15.6795, + "z": 30.0 + }, + "position3d": { + "x": 43.0, + "y": 15.6795, + "z": 30.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Magazine", + "size_x": 12, + "size_y": 12, + "size_z": 200.0, + "category": "resource_group", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_sheets": 100 + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 43.0, + "y": 15.6795, + "z": 30.0 + } + }, + { + "id": "A6_sheet100", + "uuid": "6628563d-cc65-4047-8c99-1dc14358f614", + "name": "A6_sheet100", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "A6_sheet99", + "uuid": "f796fad3-e3b1-4494-85c3-fe1122bc120b", + "name": "A6_sheet99", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + } + }, + { + "id": "A6_sheet98", + "uuid": "e4364651-8d05-4905-81a1-a234b4198489", + "name": "A6_sheet98", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 4.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 4.0 + } + }, + { + "id": "A6_sheet97", + "uuid": "147946c2-7446-4620-9d31-b61b9b4227f7", + "name": "A6_sheet97", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 6.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 6.0 + } + }, + { + "id": "A6_sheet96", + "uuid": "bedb104b-be0b-4a14-913d-a327b51096e5", + "name": "A6_sheet96", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 8.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 8.0 + } + }, + { + "id": "A6_sheet95", + "uuid": "4f30595a-b85c-47e1-b072-4c953e28bb22", + "name": "A6_sheet95", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 10.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 10.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 10.0 + } + }, + { + "id": "A6_sheet94", + "uuid": "e5e23e2c-f6fa-40e3-bb5a-e1eec94290b7", + "name": "A6_sheet94", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 12.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 12.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 12.0 + } + }, + { + "id": "A6_sheet93", + "uuid": "49a3643b-f666-4dce-862c-f0de6b7dd33f", + "name": "A6_sheet93", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 14.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 14.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 14.0 + } + }, + { + "id": "A6_sheet92", + "uuid": "62b78cda-daac-4d49-a503-e2efee6e4e32", + "name": "A6_sheet92", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 16.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 16.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 16.0 + } + }, + { + "id": "A6_sheet91", + "uuid": "3203a06e-971c-4bed-b502-2526194e4e58", + "name": "A6_sheet91", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 18.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 18.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 18.0 + } + }, + { + "id": "A6_sheet90", + "uuid": "86a32f19-e06a-487f-96e0-a65a8adfd1a7", + "name": "A6_sheet90", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 20.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 20.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 20.0 + } + }, + { + "id": "A6_sheet89", + "uuid": "060f404d-de82-472b-a1b1-a80754f96db9", + "name": "A6_sheet89", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 22.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 22.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 22.0 + } + }, + { + "id": "A6_sheet88", + "uuid": "0a7f039c-2901-4a0d-b780-9e6cf09428a3", + "name": "A6_sheet88", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 24.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 24.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 24.0 + } + }, + { + "id": "A6_sheet87", + "uuid": "5ed6fb24-b715-4c2b-8ec1-2765f0939eb1", + "name": "A6_sheet87", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 26.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 26.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 26.0 + } + }, + { + "id": "A6_sheet86", + "uuid": "72b69773-c6c6-4cac-8b5b-5e53f1f7000a", + "name": "A6_sheet86", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 28.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 28.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 28.0 + } + }, + { + "id": "A6_sheet85", + "uuid": "947db86a-acfe-43d3-a3be-a85848ef9006", + "name": "A6_sheet85", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 30.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 30.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 30.0 + } + }, + { + "id": "A6_sheet84", + "uuid": "c89a09b5-5022-4c89-85bd-ff90210be9e7", + "name": "A6_sheet84", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 32.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 32.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 32.0 + } + }, + { + "id": "A6_sheet83", + "uuid": "d248d561-7a87-44ac-8930-bec942b3ad44", + "name": "A6_sheet83", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 34.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 34.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 34.0 + } + }, + { + "id": "A6_sheet82", + "uuid": "c922562f-03b1-4203-9214-559ea61ba4fd", + "name": "A6_sheet82", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 36.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 36.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 36.0 + } + }, + { + "id": "A6_sheet81", + "uuid": "9840ec20-6b37-49f2-9e05-619bd3512440", + "name": "A6_sheet81", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 38.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 38.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 38.0 + } + }, + { + "id": "A6_sheet80", + "uuid": "1c27ddfe-82d2-4ad8-aa29-dd3b52cf0abc", + "name": "A6_sheet80", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 40.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 40.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 40.0 + } + }, + { + "id": "A6_sheet79", + "uuid": "800e1e6a-e590-4afe-b306-3e507da0d21e", + "name": "A6_sheet79", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 42.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 42.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 42.0 + } + }, + { + "id": "A6_sheet78", + "uuid": "4a06c71a-f8a0-41b5-b4d2-ec088ea8cc1c", + "name": "A6_sheet78", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 44.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 44.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 44.0 + } + }, + { + "id": "A6_sheet77", + "uuid": "d58f4af0-6d7a-4288-98e6-035e26919fde", + "name": "A6_sheet77", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 46.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 46.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 46.0 + } + }, + { + "id": "A6_sheet76", + "uuid": "e970c7ae-3292-4f0d-ba1e-4db5bf83d5bd", + "name": "A6_sheet76", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 48.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 48.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 48.0 + } + }, + { + "id": "A6_sheet75", + "uuid": "98936a20-0687-4f79-a6ff-b07597357750", + "name": "A6_sheet75", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 50.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 50.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 50.0 + } + }, + { + "id": "A6_sheet74", + "uuid": "6de4f301-154a-4895-8900-104f4b158559", + "name": "A6_sheet74", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 52.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 52.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 52.0 + } + }, + { + "id": "A6_sheet73", + "uuid": "bba398fd-a6e8-42fc-82c6-a684e39491f8", + "name": "A6_sheet73", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 54.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 54.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 54.0 + } + }, + { + "id": "A6_sheet72", + "uuid": "e4b7d244-c1e6-4857-a0cb-ec385b7fe943", + "name": "A6_sheet72", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 56.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 56.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 56.0 + } + }, + { + "id": "A6_sheet71", + "uuid": "9ea52c0d-2900-4e11-a7c4-d0e7050219a6", + "name": "A6_sheet71", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 58.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 58.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 58.0 + } + }, + { + "id": "A6_sheet70", + "uuid": "57982af6-d85a-4a35-b6d3-1b5ce67dcad1", + "name": "A6_sheet70", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 60.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 60.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 60.0 + } + }, + { + "id": "A6_sheet69", + "uuid": "0494943e-79b2-4028-b09d-9078d9d93932", + "name": "A6_sheet69", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 62.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 62.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 62.0 + } + }, + { + "id": "A6_sheet68", + "uuid": "ea9fcb45-9c7c-4b78-9ba3-f58262c0a096", + "name": "A6_sheet68", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 64.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 64.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 64.0 + } + }, + { + "id": "A6_sheet67", + "uuid": "23ea58ff-9dbb-4dce-a5fd-8d91e60fdf3a", + "name": "A6_sheet67", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 66.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 66.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 66.0 + } + }, + { + "id": "A6_sheet66", + "uuid": "1facd0a5-62c6-430f-8947-2c4147ddedde", + "name": "A6_sheet66", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 68.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 68.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 68.0 + } + }, + { + "id": "A6_sheet65", + "uuid": "6d9804db-c115-4809-a997-7ac06c4f5456", + "name": "A6_sheet65", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 70.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 70.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 70.0 + } + }, + { + "id": "A6_sheet64", + "uuid": "fdf3706a-4148-461a-b561-087bcfa2a6a6", + "name": "A6_sheet64", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 72.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 72.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 72.0 + } + }, + { + "id": "A6_sheet63", + "uuid": "4ba39149-942c-42eb-9429-f5c8bb6e68b5", + "name": "A6_sheet63", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 74.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 74.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 74.0 + } + }, + { + "id": "A6_sheet62", + "uuid": "6e854f64-e29f-476a-88d9-4c59a8915dc9", + "name": "A6_sheet62", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 76.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 76.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 76.0 + } + }, + { + "id": "A6_sheet61", + "uuid": "308578a9-0623-44d3-9d1b-c9496c188a1c", + "name": "A6_sheet61", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 78.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 78.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 78.0 + } + }, + { + "id": "A6_sheet60", + "uuid": "4c8184fc-957e-41ee-89a6-7022cedec566", + "name": "A6_sheet60", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 80.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 80.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 80.0 + } + }, + { + "id": "A6_sheet59", + "uuid": "168db4f4-5a5a-4c38-ae80-c253e9005f0d", + "name": "A6_sheet59", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 82.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 82.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 82.0 + } + }, + { + "id": "A6_sheet58", + "uuid": "35cca578-ce4f-473f-bd2c-90474f60b7b8", + "name": "A6_sheet58", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 84.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 84.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 84.0 + } + }, + { + "id": "A6_sheet57", + "uuid": "f80fcf4f-9797-42c1-ab51-f8ed802d1e21", + "name": "A6_sheet57", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 86.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 86.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 86.0 + } + }, + { + "id": "A6_sheet56", + "uuid": "73bf96c5-3887-41f4-9c66-022338c88112", + "name": "A6_sheet56", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 88.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 88.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 88.0 + } + }, + { + "id": "A6_sheet55", + "uuid": "56c475ab-ce11-4bfa-8dae-510b4a4b1944", + "name": "A6_sheet55", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 90.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 90.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 90.0 + } + }, + { + "id": "A6_sheet54", + "uuid": "079443fb-8a39-4a9b-a95e-4ad963fba4d1", + "name": "A6_sheet54", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 92.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 92.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 92.0 + } + }, + { + "id": "A6_sheet53", + "uuid": "825c7ef9-286a-40b2-94d5-d49a0ef4022c", + "name": "A6_sheet53", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 94.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 94.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 94.0 + } + }, + { + "id": "A6_sheet52", + "uuid": "4ae8c304-32be-4725-b27d-1f30a2a76ca7", + "name": "A6_sheet52", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 96.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 96.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 96.0 + } + }, + { + "id": "A6_sheet51", + "uuid": "485455b2-4f75-4b6b-bbf1-868832e91a5b", + "name": "A6_sheet51", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 98.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 98.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 98.0 + } + }, + { + "id": "A6_sheet50", + "uuid": "5bb39e18-40bb-48c2-b7b5-0695ad8d81e8", + "name": "A6_sheet50", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 100.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 100.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 100.0 + } + }, + { + "id": "A6_sheet49", + "uuid": "81bb0fa1-a4de-42b8-8095-37fb4f8dc6b4", + "name": "A6_sheet49", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 102.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 102.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 102.0 + } + }, + { + "id": "A6_sheet48", + "uuid": "c2887606-52a3-4cfe-8feb-6405137f68b4", + "name": "A6_sheet48", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 104.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 104.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 104.0 + } + }, + { + "id": "A6_sheet47", + "uuid": "305eca12-18be-4637-af18-a621ef9eff5b", + "name": "A6_sheet47", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 106.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 106.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 106.0 + } + }, + { + "id": "A6_sheet46", + "uuid": "274094d9-7048-4b43-bb04-e20429cc0ef1", + "name": "A6_sheet46", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 108.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 108.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 108.0 + } + }, + { + "id": "A6_sheet45", + "uuid": "0cc42872-c043-47d6-aa0c-5621305fcd55", + "name": "A6_sheet45", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 110.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 110.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 110.0 + } + }, + { + "id": "A6_sheet44", + "uuid": "bbc3c32b-802c-4cc6-b8ae-fbd0f62c5796", + "name": "A6_sheet44", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 112.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 112.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 112.0 + } + }, + { + "id": "A6_sheet43", + "uuid": "4cbe2cd6-f169-4be4-ac8a-ccb2b95f54c6", + "name": "A6_sheet43", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 114.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 114.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 114.0 + } + }, + { + "id": "A6_sheet42", + "uuid": "db00149b-3836-4026-93f3-1930df1548c4", + "name": "A6_sheet42", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 116.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 116.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 116.0 + } + }, + { + "id": "A6_sheet41", + "uuid": "85974fa6-2a2b-49c6-be45-c84b50ecd694", + "name": "A6_sheet41", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 118.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 118.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 118.0 + } + }, + { + "id": "A6_sheet40", + "uuid": "10cce4dc-293d-463d-a500-8e72d84502a2", + "name": "A6_sheet40", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 120.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 120.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 120.0 + } + }, + { + "id": "A6_sheet39", + "uuid": "b6616347-8b6a-4c9b-9499-79f4a13bb219", + "name": "A6_sheet39", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 122.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 122.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 122.0 + } + }, + { + "id": "A6_sheet38", + "uuid": "8f88276f-2408-4413-8075-21a4d66e4d79", + "name": "A6_sheet38", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 124.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 124.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 124.0 + } + }, + { + "id": "A6_sheet37", + "uuid": "be6765cf-23a8-4623-b14b-66b2ca040651", + "name": "A6_sheet37", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 126.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 126.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 126.0 + } + }, + { + "id": "A6_sheet36", + "uuid": "aa2b8d1d-9f71-41b5-bff3-0c2f2927f6f7", + "name": "A6_sheet36", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 128.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 128.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 128.0 + } + }, + { + "id": "A6_sheet35", + "uuid": "86863517-d9fb-40a0-b477-6139ad58749e", + "name": "A6_sheet35", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 130.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 130.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 130.0 + } + }, + { + "id": "A6_sheet34", + "uuid": "154610f2-396f-4b67-b3d0-edfd14894b61", + "name": "A6_sheet34", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 132.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 132.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 132.0 + } + }, + { + "id": "A6_sheet33", + "uuid": "1d255346-c73a-47cd-8a25-63c9f68a9e80", + "name": "A6_sheet33", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 134.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 134.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 134.0 + } + }, + { + "id": "A6_sheet32", + "uuid": "839ae853-5b51-4556-b64b-3edd5dedd65b", + "name": "A6_sheet32", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 136.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 136.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 136.0 + } + }, + { + "id": "A6_sheet31", + "uuid": "8019a76d-2a46-4a91-a588-3f2ed5d75dcc", + "name": "A6_sheet31", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 138.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 138.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 138.0 + } + }, + { + "id": "A6_sheet30", + "uuid": "66421352-ad57-47bc-8ea3-d85744988f17", + "name": "A6_sheet30", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 140.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 140.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 140.0 + } + }, + { + "id": "A6_sheet29", + "uuid": "40a7f5b9-4d0b-4d8a-933b-0f7c0403ca34", + "name": "A6_sheet29", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 142.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 142.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 142.0 + } + }, + { + "id": "A6_sheet28", + "uuid": "9cb10310-396c-4b77-8ff7-ece26c120f0a", + "name": "A6_sheet28", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 144.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 144.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 144.0 + } + }, + { + "id": "A6_sheet27", + "uuid": "20638e55-e6b4-44f8-8947-0dbb97f57734", + "name": "A6_sheet27", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 146.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 146.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 146.0 + } + }, + { + "id": "A6_sheet26", + "uuid": "eedf7bac-9a94-4979-9cd1-eedf87d74f7c", + "name": "A6_sheet26", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 148.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 148.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 148.0 + } + }, + { + "id": "A6_sheet25", + "uuid": "a9c3bb6e-92b3-487b-8dc0-ae6469bf137e", + "name": "A6_sheet25", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 150.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 150.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 150.0 + } + }, + { + "id": "A6_sheet24", + "uuid": "178aaa30-030c-4fa5-9a0f-ada9386ab5ee", + "name": "A6_sheet24", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 152.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 152.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 152.0 + } + }, + { + "id": "A6_sheet23", + "uuid": "bf48c968-efe4-46cb-9a84-a5ad5d02260e", + "name": "A6_sheet23", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 154.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 154.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 154.0 + } + }, + { + "id": "A6_sheet22", + "uuid": "636a2431-959a-4384-ac51-19f431b947d2", + "name": "A6_sheet22", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 156.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 156.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 156.0 + } + }, + { + "id": "A6_sheet21", + "uuid": "7b6f8ca1-b36e-4d87-8040-2bad56ee4ea6", + "name": "A6_sheet21", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 158.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 158.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 158.0 + } + }, + { + "id": "A6_sheet20", + "uuid": "3753ca8c-3ef9-4687-9a67-2fd063348b79", + "name": "A6_sheet20", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 160.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 160.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 160.0 + } + }, + { + "id": "A6_sheet19", + "uuid": "b19203d0-7f75-4bd6-a40e-98ad59772cb3", + "name": "A6_sheet19", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 162.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 162.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 162.0 + } + }, + { + "id": "A6_sheet18", + "uuid": "26c7ca47-a5b5-4a97-9cba-3de09f8ab0ae", + "name": "A6_sheet18", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 164.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 164.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 164.0 + } + }, + { + "id": "A6_sheet17", + "uuid": "8da06698-b25c-4d04-8670-8554b7d7d70d", + "name": "A6_sheet17", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 166.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 166.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 166.0 + } + }, + { + "id": "A6_sheet16", + "uuid": "679e8f2d-d57d-43a7-a161-f2a85cc94935", + "name": "A6_sheet16", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 168.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 168.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 168.0 + } + }, + { + "id": "A6_sheet15", + "uuid": "2c05439a-d126-4a51-8324-33afdd34fb21", + "name": "A6_sheet15", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 170.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 170.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 170.0 + } + }, + { + "id": "A6_sheet14", + "uuid": "b2b3ee52-ec10-43be-ae43-d2f2a43f47dd", + "name": "A6_sheet14", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 172.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 172.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 172.0 + } + }, + { + "id": "A6_sheet13", + "uuid": "f4f787d2-1195-43e0-b034-c82b8f37822b", + "name": "A6_sheet13", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 174.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 174.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 174.0 + } + }, + { + "id": "A6_sheet12", + "uuid": "6c2e345b-f481-4edb-92dc-aa81ee681ad5", + "name": "A6_sheet12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 176.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 176.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 176.0 + } + }, + { + "id": "A6_sheet11", + "uuid": "88cbef70-7b74-4e0c-85d4-00dc9af7b9e6", + "name": "A6_sheet11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 178.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 178.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 178.0 + } + }, + { + "id": "A6_sheet10", + "uuid": "de0b7147-f2ab-415b-8fd8-d43ea80383b0", + "name": "A6_sheet10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 180.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 180.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 180.0 + } + }, + { + "id": "A6_sheet9", + "uuid": "54f75c5d-cf5d-4093-8729-a06a6db3c34b", + "name": "A6_sheet9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 182.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 182.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 182.0 + } + }, + { + "id": "A6_sheet8", + "uuid": "905e9b44-3aa4-408e-ac27-d1c93df3cbe5", + "name": "A6_sheet8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 184.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 184.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 184.0 + } + }, + { + "id": "A6_sheet7", + "uuid": "2e10b0dd-a634-462b-a4c5-150fd29a8e00", + "name": "A6_sheet7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 186.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 186.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 186.0 + } + }, + { + "id": "A6_sheet6", + "uuid": "011aae69-77e0-4087-be65-3e23e9b96d42", + "name": "A6_sheet6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 188.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 188.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 188.0 + } + }, + { + "id": "A6_sheet5", + "uuid": "9c1baf50-343a-4c36-87ea-8c011ffaaf7b", + "name": "A6_sheet5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 190.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 190.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 190.0 + } + }, + { + "id": "A6_sheet4", + "uuid": "a354ec88-6dc9-4c95-bd34-c08178a342ab", + "name": "A6_sheet4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 192.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 192.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 192.0 + } + }, + { + "id": "A6_sheet3", + "uuid": "29a843db-fad6-462f-a2e7-a01b1620042a", + "name": "A6_sheet3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 194.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 194.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 194.0 + } + }, + { + "id": "A6_sheet2", + "uuid": "fecd7078-23e5-43b2-a1df-0b2227e5dff2", + "name": "A6_sheet2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 196.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 196.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 196.0 + } + }, + { + "id": "A6_sheet1", + "uuid": "8ef15d42-0fca-4a2a-874f-ce6b9c312026", + "name": "A6_sheet1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "22181ba1-9069-4ece-86f5-b92c44fe5842", + "type": "electrode_sheet", + "class": "", + "pose": { + "size": { + "depth": 2.0, + "width": 12.0, + "height": 12.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 198.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 198.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "ElectrodeSheet", + "size_x": 12, + "size_y": 12, + "size_z": 2.0, + "category": "electrode_sheet", + "model": "NegativeCan", + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "material_type": "steel", + "color": "#000000" + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 198.0 + } + }, + { + "id": "成品弹夹", + "uuid": "04cda2a1-255f-4ca9-85b0-8115e2642259", + "name": "成品弹夹", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "24b64c33-ddb4-409e-8b71-aa3721c52a0f", + "type": "magazine_holder", + "class": "", + "pose": { + "size": { + "depth": 40.0, + "width": 80.0, + "height": 80.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 260.0, + "y": 156.0, + "z": 0.0 + }, + "position3d": { + "x": 260.0, + "y": 156.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "MagazineHolder", + "size_x": 80.0, + "size_y": 80.0, + "size_z": 40.0, + "category": "magazine_holder", + "model": "MagazineHolder_6_Battery", + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "成品弹夹_成品弹夹-0", + "A2": "成品弹夹_成品弹夹-1", + "A3": "成品弹夹_成品弹夹-2", + "A4": "成品弹夹_成品弹夹-3", + "A5": "成品弹夹_成品弹夹-4", + "A6": "成品弹夹_成品弹夹-5" + }, + "hole_diameter": 14.0, + "hole_depth": 10.0, + "max_sheets_per_hole": 100 + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 260.0, + "y": 156.0, + "z": 0.0 + } + }, + { + "id": "成品弹夹_成品弹夹-0", + "uuid": "408ed1b4-e85d-490d-90c3-4511b7eba4ff", + "name": "成品弹夹_成品弹夹-0", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "04cda2a1-255f-4ca9-85b0-8115e2642259", + "type": "resource_group", + "class": "", + "pose": { + "size": { + "depth": 10.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 53.0, + "y": 33.0, + "z": 30.0 + }, + "position3d": { + "x": 53.0, + "y": 33.0, + "z": 30.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Magazine", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 10.0, + "category": "resource_group", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_sheets": 100 + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 53.0, + "y": 33.0, + "z": 30.0 + } + }, + { + "id": "成品弹夹_成品弹夹-1", + "uuid": "77a7b218-9bd2-4782-b10f-44f525f1395a", + "name": "成品弹夹_成品弹夹-1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "04cda2a1-255f-4ca9-85b0-8115e2642259", + "type": "resource_group", + "class": "", + "pose": { + "size": { + "depth": 10.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 43.0, + "y": 50.3205, + "z": 30.0 + }, + "position3d": { + "x": 43.0, + "y": 50.3205, + "z": 30.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Magazine", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 10.0, + "category": "resource_group", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_sheets": 100 + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 43.0, + "y": 50.3205, + "z": 30.0 + } + }, + { + "id": "成品弹夹_成品弹夹-2", + "uuid": "f40797f9-3242-453b-955c-236c01a74378", + "name": "成品弹夹_成品弹夹-2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "04cda2a1-255f-4ca9-85b0-8115e2642259", + "type": "resource_group", + "class": "", + "pose": { + "size": { + "depth": 10.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 23.0, + "y": 50.3205, + "z": 30.0 + }, + "position3d": { + "x": 23.0, + "y": 50.3205, + "z": 30.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Magazine", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 10.0, + "category": "resource_group", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_sheets": 100 + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 23.0, + "y": 50.3205, + "z": 30.0 + } + }, + { + "id": "成品弹夹_成品弹夹-3", + "uuid": "2c9b3f71-8570-4090-9c2e-7743a8d825a8", + "name": "成品弹夹_成品弹夹-3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "04cda2a1-255f-4ca9-85b0-8115e2642259", + "type": "resource_group", + "class": "", + "pose": { + "size": { + "depth": 10.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 13.0, + "y": 33.0, + "z": 30.0 + }, + "position3d": { + "x": 13.0, + "y": 33.0, + "z": 30.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Magazine", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 10.0, + "category": "resource_group", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_sheets": 100 + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 13.0, + "y": 33.0, + "z": 30.0 + } + }, + { + "id": "成品弹夹_成品弹夹-4", + "uuid": "69dc2921-a6f7-4a5b-8d1c-6e1a7e7e3605", + "name": "成品弹夹_成品弹夹-4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "04cda2a1-255f-4ca9-85b0-8115e2642259", + "type": "resource_group", + "class": "", + "pose": { + "size": { + "depth": 10.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 23.0, + "y": 15.6795, + "z": 30.0 + }, + "position3d": { + "x": 23.0, + "y": 15.6795, + "z": 30.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Magazine", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 10.0, + "category": "resource_group", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_sheets": 100 + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 23.0, + "y": 15.6795, + "z": 30.0 + } + }, + { + "id": "成品弹夹_成品弹夹-5", + "uuid": "ef676dac-e2b9-473e-a748-91e9364fc9cc", + "name": "成品弹夹_成品弹夹-5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "04cda2a1-255f-4ca9-85b0-8115e2642259", + "type": "resource_group", + "class": "", + "pose": { + "size": { + "depth": 10.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 43.0, + "y": 15.6795, + "z": 30.0 + }, + "position3d": { + "x": 43.0, + "y": 15.6795, + "z": 30.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "Magazine", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 10.0, + "category": "resource_group", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_sheets": 100 + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 43.0, + "y": 15.6795, + "z": 30.0 + } + }, + { + "id": "负极料盘", + "uuid": "b64b015c-d9bb-482e-9c91-1c8c48e99f01", + "name": "负极料盘", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "24b64c33-ddb4-409e-8b71-aa3721c52a0f", + "type": "material_plate", + "class": "", + "pose": { + "size": { + "depth": 10.0, + "width": 120.0, + "height": 100.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 708.0, + "y": 794.0, + "z": 0.0 + }, + "position3d": { + "x": 708.0, + "y": 794.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "MaterialPlate", + "size_x": 120, + "size_y": 100, + "size_z": 10.0, + "category": "material_plate", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "负极料盘_materialhole_A1", + "B1": "负极料盘_materialhole_B1", + "C1": "负极料盘_materialhole_C1", + "D1": "负极料盘_materialhole_D1", + "A2": "负极料盘_materialhole_A2", + "B2": "负极料盘_materialhole_B2", + "C2": "负极料盘_materialhole_C2", + "D2": "负极料盘_materialhole_D2", + "A3": "负极料盘_materialhole_A3", + "B3": "负极料盘_materialhole_B3", + "C3": "负极料盘_materialhole_C3", + "D3": "负极料盘_materialhole_D3", + "A4": "负极料盘_materialhole_A4", + "B4": "负极料盘_materialhole_B4", + "C4": "负极料盘_materialhole_C4", + "D4": "负极料盘_materialhole_D4" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 708.0, + "y": 794.0, + "z": 0.0 + } + }, + { + "id": "负极料盘_materialhole_A1", + "uuid": "89a3bd61-a8d5-40dc-85e5-459a8480376a", + "name": "负极料盘_materialhole_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b64b015c-d9bb-482e-9c91-1c8c48e99f01", + "type": "material_hole", + "class": "", + "pose": { + "size": { + "depth": 16.0, + "width": 16.0, + "height": 16.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 12.0, + "y": 74.0, + "z": 10.0 + }, + "position3d": { + "x": 12.0, + "y": 74.0, + "z": 10.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "MaterialHole", + "size_x": 16, + "size_y": 16, + "size_z": 16, + "category": "material_hole", + "model": null, + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "diameter": 20, + "depth": 10, + "max_sheets": 1, + "info": null + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 12.0, + "y": 74.0, + "z": 10.0 + } + }, + { + "id": "负极料盘_materialhole_B1", + "uuid": "1fa172a9-b5fc-43d9-a854-f7aae8d393ff", + "name": "负极料盘_materialhole_B1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b64b015c-d9bb-482e-9c91-1c8c48e99f01", + "type": "material_hole", + "class": "", + "pose": { + "size": { + "depth": 16.0, + "width": 16.0, + "height": 16.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 12.0, + "y": 50.0, + "z": 10.0 + }, + "position3d": { + "x": 12.0, + "y": 50.0, + "z": 10.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "MaterialHole", + "size_x": 16, + "size_y": 16, + "size_z": 16, + "category": "material_hole", + "model": null, + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "diameter": 20, + "depth": 10, + "max_sheets": 1, + "info": null + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 12.0, + "y": 50.0, + "z": 10.0 + } + }, + { + "id": "负极料盘_materialhole_C1", + "uuid": "92266014-78e9-4adc-b5ad-f381b2824278", + "name": "负极料盘_materialhole_C1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b64b015c-d9bb-482e-9c91-1c8c48e99f01", + "type": "material_hole", + "class": "", + "pose": { + "size": { + "depth": 16.0, + "width": 16.0, + "height": 16.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 12.0, + "y": 26.0, + "z": 10.0 + }, + "position3d": { + "x": 12.0, + "y": 26.0, + "z": 10.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "MaterialHole", + "size_x": 16, + "size_y": 16, + "size_z": 16, + "category": "material_hole", + "model": null, + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "diameter": 20, + "depth": 10, + "max_sheets": 1, + "info": null + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 12.0, + "y": 26.0, + "z": 10.0 + } + }, + { + "id": "负极料盘_materialhole_D1", + "uuid": "0b49f088-3bef-48b4-aad2-2aa48951b150", + "name": "负极料盘_materialhole_D1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b64b015c-d9bb-482e-9c91-1c8c48e99f01", + "type": "material_hole", + "class": "", + "pose": { + "size": { + "depth": 16.0, + "width": 16.0, + "height": 16.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 12.0, + "y": 2.0, + "z": 10.0 + }, + "position3d": { + "x": 12.0, + "y": 2.0, + "z": 10.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "MaterialHole", + "size_x": 16, + "size_y": 16, + "size_z": 16, + "category": "material_hole", + "model": null, + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "diameter": 20, + "depth": 10, + "max_sheets": 1, + "info": null + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 12.0, + "y": 2.0, + "z": 10.0 + } + }, + { + "id": "负极料盘_materialhole_A2", + "uuid": "2477a5ca-64b4-489d-a80a-9d7c45664f72", + "name": "负极料盘_materialhole_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b64b015c-d9bb-482e-9c91-1c8c48e99f01", + "type": "material_hole", + "class": "", + "pose": { + "size": { + "depth": 16.0, + "width": 16.0, + "height": 16.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 36.0, + "y": 74.0, + "z": 10.0 + }, + "position3d": { + "x": 36.0, + "y": 74.0, + "z": 10.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "MaterialHole", + "size_x": 16, + "size_y": 16, + "size_z": 16, + "category": "material_hole", + "model": null, + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "diameter": 20, + "depth": 10, + "max_sheets": 1, + "info": null + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 36.0, + "y": 74.0, + "z": 10.0 + } + }, + { + "id": "负极料盘_materialhole_B2", + "uuid": "38217a63-c862-4f46-b1dd-4c797b53a8d4", + "name": "负极料盘_materialhole_B2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b64b015c-d9bb-482e-9c91-1c8c48e99f01", + "type": "material_hole", + "class": "", + "pose": { + "size": { + "depth": 16.0, + "width": 16.0, + "height": 16.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 36.0, + "y": 50.0, + "z": 10.0 + }, + "position3d": { + "x": 36.0, + "y": 50.0, + "z": 10.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "MaterialHole", + "size_x": 16, + "size_y": 16, + "size_z": 16, + "category": "material_hole", + "model": null, + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "diameter": 20, + "depth": 10, + "max_sheets": 1, + "info": null + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 36.0, + "y": 50.0, + "z": 10.0 + } + }, + { + "id": "负极料盘_materialhole_C2", + "uuid": "66194afe-bab2-4035-b433-878a9466b1b5", + "name": "负极料盘_materialhole_C2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b64b015c-d9bb-482e-9c91-1c8c48e99f01", + "type": "material_hole", + "class": "", + "pose": { + "size": { + "depth": 16.0, + "width": 16.0, + "height": 16.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 36.0, + "y": 26.0, + "z": 10.0 + }, + "position3d": { + "x": 36.0, + "y": 26.0, + "z": 10.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "MaterialHole", + "size_x": 16, + "size_y": 16, + "size_z": 16, + "category": "material_hole", + "model": null, + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "diameter": 20, + "depth": 10, + "max_sheets": 1, + "info": null + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 36.0, + "y": 26.0, + "z": 10.0 + } + }, + { + "id": "负极料盘_materialhole_D2", + "uuid": "602493ee-bef4-4fa6-9f0c-2164ed2b9d66", + "name": "负极料盘_materialhole_D2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b64b015c-d9bb-482e-9c91-1c8c48e99f01", + "type": "material_hole", + "class": "", + "pose": { + "size": { + "depth": 16.0, + "width": 16.0, + "height": 16.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 36.0, + "y": 2.0, + "z": 10.0 + }, + "position3d": { + "x": 36.0, + "y": 2.0, + "z": 10.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "MaterialHole", + "size_x": 16, + "size_y": 16, + "size_z": 16, + "category": "material_hole", + "model": null, + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "diameter": 20, + "depth": 10, + "max_sheets": 1, + "info": null + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 36.0, + "y": 2.0, + "z": 10.0 + } + }, + { + "id": "负极料盘_materialhole_A3", + "uuid": "b6505bae-e72b-4d19-9c88-0b30a225f2d7", + "name": "负极料盘_materialhole_A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b64b015c-d9bb-482e-9c91-1c8c48e99f01", + "type": "material_hole", + "class": "", + "pose": { + "size": { + "depth": 16.0, + "width": 16.0, + "height": 16.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 60.0, + "y": 74.0, + "z": 10.0 + }, + "position3d": { + "x": 60.0, + "y": 74.0, + "z": 10.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "MaterialHole", + "size_x": 16, + "size_y": 16, + "size_z": 16, + "category": "material_hole", + "model": null, + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "diameter": 20, + "depth": 10, + "max_sheets": 1, + "info": null + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 60.0, + "y": 74.0, + "z": 10.0 + } + }, + { + "id": "负极料盘_materialhole_B3", + "uuid": "58c783fd-802f-4b39-aca9-9d3f83e7fdd0", + "name": "负极料盘_materialhole_B3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b64b015c-d9bb-482e-9c91-1c8c48e99f01", + "type": "material_hole", + "class": "", + "pose": { + "size": { + "depth": 16.0, + "width": 16.0, + "height": 16.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 60.0, + "y": 50.0, + "z": 10.0 + }, + "position3d": { + "x": 60.0, + "y": 50.0, + "z": 10.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "MaterialHole", + "size_x": 16, + "size_y": 16, + "size_z": 16, + "category": "material_hole", + "model": null, + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "diameter": 20, + "depth": 10, + "max_sheets": 1, + "info": null + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 60.0, + "y": 50.0, + "z": 10.0 + } + }, + { + "id": "负极料盘_materialhole_C3", + "uuid": "659d3323-391e-4303-97c1-55f96b34d1ec", + "name": "负极料盘_materialhole_C3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b64b015c-d9bb-482e-9c91-1c8c48e99f01", + "type": "material_hole", + "class": "", + "pose": { + "size": { + "depth": 16.0, + "width": 16.0, + "height": 16.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 60.0, + "y": 26.0, + "z": 10.0 + }, + "position3d": { + "x": 60.0, + "y": 26.0, + "z": 10.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "MaterialHole", + "size_x": 16, + "size_y": 16, + "size_z": 16, + "category": "material_hole", + "model": null, + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "diameter": 20, + "depth": 10, + "max_sheets": 1, + "info": null + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 60.0, + "y": 26.0, + "z": 10.0 + } + }, + { + "id": "负极料盘_materialhole_D3", + "uuid": "974306ef-0cce-455e-a511-9d302715a533", + "name": "负极料盘_materialhole_D3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b64b015c-d9bb-482e-9c91-1c8c48e99f01", + "type": "material_hole", + "class": "", + "pose": { + "size": { + "depth": 16.0, + "width": 16.0, + "height": 16.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 60.0, + "y": 2.0, + "z": 10.0 + }, + "position3d": { + "x": 60.0, + "y": 2.0, + "z": 10.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "MaterialHole", + "size_x": 16, + "size_y": 16, + "size_z": 16, + "category": "material_hole", + "model": null, + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "diameter": 20, + "depth": 10, + "max_sheets": 1, + "info": null + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 60.0, + "y": 2.0, + "z": 10.0 + } + }, + { + "id": "负极料盘_materialhole_A4", + "uuid": "2e2700aa-666d-42f5-98bd-66d3b6e5f5c0", + "name": "负极料盘_materialhole_A4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b64b015c-d9bb-482e-9c91-1c8c48e99f01", + "type": "material_hole", + "class": "", + "pose": { + "size": { + "depth": 16.0, + "width": 16.0, + "height": 16.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 84.0, + "y": 74.0, + "z": 10.0 + }, + "position3d": { + "x": 84.0, + "y": 74.0, + "z": 10.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "MaterialHole", + "size_x": 16, + "size_y": 16, + "size_z": 16, + "category": "material_hole", + "model": null, + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "diameter": 20, + "depth": 10, + "max_sheets": 1, + "info": null + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 84.0, + "y": 74.0, + "z": 10.0 + } + }, + { + "id": "负极料盘_materialhole_B4", + "uuid": "4bfaa726-4526-4796-8a52-7a396051e32d", + "name": "负极料盘_materialhole_B4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b64b015c-d9bb-482e-9c91-1c8c48e99f01", + "type": "material_hole", + "class": "", + "pose": { + "size": { + "depth": 16.0, + "width": 16.0, + "height": 16.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 84.0, + "y": 50.0, + "z": 10.0 + }, + "position3d": { + "x": 84.0, + "y": 50.0, + "z": 10.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "MaterialHole", + "size_x": 16, + "size_y": 16, + "size_z": 16, + "category": "material_hole", + "model": null, + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "diameter": 20, + "depth": 10, + "max_sheets": 1, + "info": null + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 84.0, + "y": 50.0, + "z": 10.0 + } + }, + { + "id": "负极料盘_materialhole_C4", + "uuid": "6e560dbd-8378-47ce-8cd5-e2d35ddad5f8", + "name": "负极料盘_materialhole_C4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b64b015c-d9bb-482e-9c91-1c8c48e99f01", + "type": "material_hole", + "class": "", + "pose": { + "size": { + "depth": 16.0, + "width": 16.0, + "height": 16.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 84.0, + "y": 26.0, + "z": 10.0 + }, + "position3d": { + "x": 84.0, + "y": 26.0, + "z": 10.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "MaterialHole", + "size_x": 16, + "size_y": 16, + "size_z": 16, + "category": "material_hole", + "model": null, + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "diameter": 20, + "depth": 10, + "max_sheets": 1, + "info": null + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 84.0, + "y": 26.0, + "z": 10.0 + } + }, + { + "id": "负极料盘_materialhole_D4", + "uuid": "25fe3d76-a03b-4812-a0ba-ab4671b1a66f", + "name": "负极料盘_materialhole_D4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "b64b015c-d9bb-482e-9c91-1c8c48e99f01", + "type": "material_hole", + "class": "", + "pose": { + "size": { + "depth": 16.0, + "width": 16.0, + "height": 16.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 84.0, + "y": 2.0, + "z": 10.0 + }, + "position3d": { + "x": 84.0, + "y": 2.0, + "z": 10.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "MaterialHole", + "size_x": 16, + "size_y": 16, + "size_z": 16, + "category": "material_hole", + "model": null, + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "diameter": 20, + "depth": 10, + "max_sheets": 1, + "info": null + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 84.0, + "y": 2.0, + "z": 10.0 + } + }, + { + "id": "隔膜料盘", + "uuid": "7e836fe6-e442-4f57-903f-4335afde10e9", + "name": "隔膜料盘", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "24b64c33-ddb4-409e-8b71-aa3721c52a0f", + "type": "material_plate", + "class": "", + "pose": { + "size": { + "depth": 10.0, + "width": 120.0, + "height": 100.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 718.0, + "y": 918.0, + "z": 0.0 + }, + "position3d": { + "x": 718.0, + "y": 918.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "MaterialPlate", + "size_x": 120, + "size_y": 100, + "size_z": 10.0, + "category": "material_plate", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "隔膜料盘_materialhole_A1", + "B1": "隔膜料盘_materialhole_B1", + "C1": "隔膜料盘_materialhole_C1", + "D1": "隔膜料盘_materialhole_D1", + "A2": "隔膜料盘_materialhole_A2", + "B2": "隔膜料盘_materialhole_B2", + "C2": "隔膜料盘_materialhole_C2", + "D2": "隔膜料盘_materialhole_D2", + "A3": "隔膜料盘_materialhole_A3", + "B3": "隔膜料盘_materialhole_B3", + "C3": "隔膜料盘_materialhole_C3", + "D3": "隔膜料盘_materialhole_D3", + "A4": "隔膜料盘_materialhole_A4", + "B4": "隔膜料盘_materialhole_B4", + "C4": "隔膜料盘_materialhole_C4", + "D4": "隔膜料盘_materialhole_D4" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 718.0, + "y": 918.0, + "z": 0.0 + } + }, + { + "id": "隔膜料盘_materialhole_A1", + "uuid": "6ec1e7c2-f2f1-4e6e-b786-da5d7337cf81", + "name": "隔膜料盘_materialhole_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "7e836fe6-e442-4f57-903f-4335afde10e9", + "type": "material_hole", + "class": "", + "pose": { + "size": { + "depth": 16.0, + "width": 16.0, + "height": 16.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 12.0, + "y": 74.0, + "z": 10.0 + }, + "position3d": { + "x": 12.0, + "y": 74.0, + "z": 10.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "MaterialHole", + "size_x": 16, + "size_y": 16, + "size_z": 16, + "category": "material_hole", + "model": null, + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "diameter": 20, + "depth": 10, + "max_sheets": 1, + "info": null + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 12.0, + "y": 74.0, + "z": 10.0 + } + }, + { + "id": "隔膜料盘_materialhole_B1", + "uuid": "be31898b-5f21-4dd1-9eb5-d16a7235e79e", + "name": "隔膜料盘_materialhole_B1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "7e836fe6-e442-4f57-903f-4335afde10e9", + "type": "material_hole", + "class": "", + "pose": { + "size": { + "depth": 16.0, + "width": 16.0, + "height": 16.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 12.0, + "y": 50.0, + "z": 10.0 + }, + "position3d": { + "x": 12.0, + "y": 50.0, + "z": 10.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "MaterialHole", + "size_x": 16, + "size_y": 16, + "size_z": 16, + "category": "material_hole", + "model": null, + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "diameter": 20, + "depth": 10, + "max_sheets": 1, + "info": null + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 12.0, + "y": 50.0, + "z": 10.0 + } + }, + { + "id": "隔膜料盘_materialhole_C1", + "uuid": "1c47ab10-c60f-48dd-8f5c-cbe594da43b9", + "name": "隔膜料盘_materialhole_C1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "7e836fe6-e442-4f57-903f-4335afde10e9", + "type": "material_hole", + "class": "", + "pose": { + "size": { + "depth": 16.0, + "width": 16.0, + "height": 16.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 12.0, + "y": 26.0, + "z": 10.0 + }, + "position3d": { + "x": 12.0, + "y": 26.0, + "z": 10.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "MaterialHole", + "size_x": 16, + "size_y": 16, + "size_z": 16, + "category": "material_hole", + "model": null, + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "diameter": 20, + "depth": 10, + "max_sheets": 1, + "info": null + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 12.0, + "y": 26.0, + "z": 10.0 + } + }, + { + "id": "隔膜料盘_materialhole_D1", + "uuid": "aba4458c-b1d5-4d2e-bcbc-fc01715277ba", + "name": "隔膜料盘_materialhole_D1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "7e836fe6-e442-4f57-903f-4335afde10e9", + "type": "material_hole", + "class": "", + "pose": { + "size": { + "depth": 16.0, + "width": 16.0, + "height": 16.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 12.0, + "y": 2.0, + "z": 10.0 + }, + "position3d": { + "x": 12.0, + "y": 2.0, + "z": 10.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "MaterialHole", + "size_x": 16, + "size_y": 16, + "size_z": 16, + "category": "material_hole", + "model": null, + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "diameter": 20, + "depth": 10, + "max_sheets": 1, + "info": null + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 12.0, + "y": 2.0, + "z": 10.0 + } + }, + { + "id": "隔膜料盘_materialhole_A2", + "uuid": "50c91764-630e-4de4-b77e-10d84b905232", + "name": "隔膜料盘_materialhole_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "7e836fe6-e442-4f57-903f-4335afde10e9", + "type": "material_hole", + "class": "", + "pose": { + "size": { + "depth": 16.0, + "width": 16.0, + "height": 16.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 36.0, + "y": 74.0, + "z": 10.0 + }, + "position3d": { + "x": 36.0, + "y": 74.0, + "z": 10.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "MaterialHole", + "size_x": 16, + "size_y": 16, + "size_z": 16, + "category": "material_hole", + "model": null, + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "diameter": 20, + "depth": 10, + "max_sheets": 1, + "info": null + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 36.0, + "y": 74.0, + "z": 10.0 + } + }, + { + "id": "隔膜料盘_materialhole_B2", + "uuid": "1f86d1b7-1668-43b0-bbc8-74bd2421744c", + "name": "隔膜料盘_materialhole_B2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "7e836fe6-e442-4f57-903f-4335afde10e9", + "type": "material_hole", + "class": "", + "pose": { + "size": { + "depth": 16.0, + "width": 16.0, + "height": 16.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 36.0, + "y": 50.0, + "z": 10.0 + }, + "position3d": { + "x": 36.0, + "y": 50.0, + "z": 10.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "MaterialHole", + "size_x": 16, + "size_y": 16, + "size_z": 16, + "category": "material_hole", + "model": null, + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "diameter": 20, + "depth": 10, + "max_sheets": 1, + "info": null + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 36.0, + "y": 50.0, + "z": 10.0 + } + }, + { + "id": "隔膜料盘_materialhole_C2", + "uuid": "fa313dff-2a3d-4b81-8c17-7f7abab02f82", + "name": "隔膜料盘_materialhole_C2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "7e836fe6-e442-4f57-903f-4335afde10e9", + "type": "material_hole", + "class": "", + "pose": { + "size": { + "depth": 16.0, + "width": 16.0, + "height": 16.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 36.0, + "y": 26.0, + "z": 10.0 + }, + "position3d": { + "x": 36.0, + "y": 26.0, + "z": 10.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "MaterialHole", + "size_x": 16, + "size_y": 16, + "size_z": 16, + "category": "material_hole", + "model": null, + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "diameter": 20, + "depth": 10, + "max_sheets": 1, + "info": null + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 36.0, + "y": 26.0, + "z": 10.0 + } + }, + { + "id": "隔膜料盘_materialhole_D2", + "uuid": "50a095e5-4af2-476f-ad76-860f3f5f5764", + "name": "隔膜料盘_materialhole_D2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "7e836fe6-e442-4f57-903f-4335afde10e9", + "type": "material_hole", + "class": "", + "pose": { + "size": { + "depth": 16.0, + "width": 16.0, + "height": 16.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 36.0, + "y": 2.0, + "z": 10.0 + }, + "position3d": { + "x": 36.0, + "y": 2.0, + "z": 10.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "MaterialHole", + "size_x": 16, + "size_y": 16, + "size_z": 16, + "category": "material_hole", + "model": null, + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "diameter": 20, + "depth": 10, + "max_sheets": 1, + "info": null + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 36.0, + "y": 2.0, + "z": 10.0 + } + }, + { + "id": "隔膜料盘_materialhole_A3", + "uuid": "be544128-1918-41d7-8b3a-27f84307e236", + "name": "隔膜料盘_materialhole_A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "7e836fe6-e442-4f57-903f-4335afde10e9", + "type": "material_hole", + "class": "", + "pose": { + "size": { + "depth": 16.0, + "width": 16.0, + "height": 16.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 60.0, + "y": 74.0, + "z": 10.0 + }, + "position3d": { + "x": 60.0, + "y": 74.0, + "z": 10.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "MaterialHole", + "size_x": 16, + "size_y": 16, + "size_z": 16, + "category": "material_hole", + "model": null, + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "diameter": 20, + "depth": 10, + "max_sheets": 1, + "info": null + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 60.0, + "y": 74.0, + "z": 10.0 + } + }, + { + "id": "隔膜料盘_materialhole_B3", + "uuid": "f37d9b06-5977-42b0-80f6-b925f7b25d25", + "name": "隔膜料盘_materialhole_B3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "7e836fe6-e442-4f57-903f-4335afde10e9", + "type": "material_hole", + "class": "", + "pose": { + "size": { + "depth": 16.0, + "width": 16.0, + "height": 16.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 60.0, + "y": 50.0, + "z": 10.0 + }, + "position3d": { + "x": 60.0, + "y": 50.0, + "z": 10.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "MaterialHole", + "size_x": 16, + "size_y": 16, + "size_z": 16, + "category": "material_hole", + "model": null, + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "diameter": 20, + "depth": 10, + "max_sheets": 1, + "info": null + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 60.0, + "y": 50.0, + "z": 10.0 + } + }, + { + "id": "隔膜料盘_materialhole_C3", + "uuid": "6084f8aa-25e2-4c11-a089-e1e9280e4899", + "name": "隔膜料盘_materialhole_C3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "7e836fe6-e442-4f57-903f-4335afde10e9", + "type": "material_hole", + "class": "", + "pose": { + "size": { + "depth": 16.0, + "width": 16.0, + "height": 16.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 60.0, + "y": 26.0, + "z": 10.0 + }, + "position3d": { + "x": 60.0, + "y": 26.0, + "z": 10.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "MaterialHole", + "size_x": 16, + "size_y": 16, + "size_z": 16, + "category": "material_hole", + "model": null, + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "diameter": 20, + "depth": 10, + "max_sheets": 1, + "info": null + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 60.0, + "y": 26.0, + "z": 10.0 + } + }, + { + "id": "隔膜料盘_materialhole_D3", + "uuid": "2abb605a-e8bc-43b3-af5b-dc839a72c1bb", + "name": "隔膜料盘_materialhole_D3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "7e836fe6-e442-4f57-903f-4335afde10e9", + "type": "material_hole", + "class": "", + "pose": { + "size": { + "depth": 16.0, + "width": 16.0, + "height": 16.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 60.0, + "y": 2.0, + "z": 10.0 + }, + "position3d": { + "x": 60.0, + "y": 2.0, + "z": 10.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "MaterialHole", + "size_x": 16, + "size_y": 16, + "size_z": 16, + "category": "material_hole", + "model": null, + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "diameter": 20, + "depth": 10, + "max_sheets": 1, + "info": null + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 60.0, + "y": 2.0, + "z": 10.0 + } + }, + { + "id": "隔膜料盘_materialhole_A4", + "uuid": "9f743593-85c1-489d-996e-d9fa48433d63", + "name": "隔膜料盘_materialhole_A4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "7e836fe6-e442-4f57-903f-4335afde10e9", + "type": "material_hole", + "class": "", + "pose": { + "size": { + "depth": 16.0, + "width": 16.0, + "height": 16.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 84.0, + "y": 74.0, + "z": 10.0 + }, + "position3d": { + "x": 84.0, + "y": 74.0, + "z": 10.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "MaterialHole", + "size_x": 16, + "size_y": 16, + "size_z": 16, + "category": "material_hole", + "model": null, + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "diameter": 20, + "depth": 10, + "max_sheets": 1, + "info": null + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 84.0, + "y": 74.0, + "z": 10.0 + } + }, + { + "id": "隔膜料盘_materialhole_B4", + "uuid": "3c2ae4ec-9bdc-4407-a6e3-f8ee9c642c0b", + "name": "隔膜料盘_materialhole_B4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "7e836fe6-e442-4f57-903f-4335afde10e9", + "type": "material_hole", + "class": "", + "pose": { + "size": { + "depth": 16.0, + "width": 16.0, + "height": 16.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 84.0, + "y": 50.0, + "z": 10.0 + }, + "position3d": { + "x": 84.0, + "y": 50.0, + "z": 10.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "MaterialHole", + "size_x": 16, + "size_y": 16, + "size_z": 16, + "category": "material_hole", + "model": null, + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "diameter": 20, + "depth": 10, + "max_sheets": 1, + "info": null + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 84.0, + "y": 50.0, + "z": 10.0 + } + }, + { + "id": "隔膜料盘_materialhole_C4", + "uuid": "b7f60799-a4aa-4bdf-809d-4c0c89650ec9", + "name": "隔膜料盘_materialhole_C4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "7e836fe6-e442-4f57-903f-4335afde10e9", + "type": "material_hole", + "class": "", + "pose": { + "size": { + "depth": 16.0, + "width": 16.0, + "height": 16.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 84.0, + "y": 26.0, + "z": 10.0 + }, + "position3d": { + "x": 84.0, + "y": 26.0, + "z": 10.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "MaterialHole", + "size_x": 16, + "size_y": 16, + "size_z": 16, + "category": "material_hole", + "model": null, + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "diameter": 20, + "depth": 10, + "max_sheets": 1, + "info": null + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 84.0, + "y": 26.0, + "z": 10.0 + } + }, + { + "id": "隔膜料盘_materialhole_D4", + "uuid": "42cc5797-75c8-437e-a945-bd9598a91ba7", + "name": "隔膜料盘_materialhole_D4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "7e836fe6-e442-4f57-903f-4335afde10e9", + "type": "material_hole", + "class": "", + "pose": { + "size": { + "depth": 16.0, + "width": 16.0, + "height": 16.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 84.0, + "y": 2.0, + "z": 10.0 + }, + "position3d": { + "x": 84.0, + "y": 2.0, + "z": 10.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "MaterialHole", + "size_x": 16, + "size_y": 16, + "size_z": 16, + "category": "material_hole", + "model": null, + "barcode": null, + "preferred_pickup_location": null + }, + "data": { + "diameter": 20, + "depth": 10, + "max_sheets": 1, + "info": null + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 84.0, + "y": 2.0, + "z": 10.0 + } + }, + { + "id": "bottle_rack_6x2", + "uuid": "5ab01c1f-35a7-4bc4-b956-25127ae73501", + "name": "bottle_rack_6x2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "24b64c33-ddb4-409e-8b71-aa3721c52a0f", + "type": "bottle_carrier", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 120.0, + "height": 250.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 1050.0, + "y": 358.0, + "z": 0.0 + }, + "position3d": { + "x": 1050.0, + "y": 358.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "BottleCarrier", + "size_x": 120.0, + "size_y": 250.0, + "size_z": 50.0, + "category": "bottle_carrier", + "model": "Electrolyte_12VialCarrier", + "barcode": null, + "preferred_pickup_location": null, + "num_items_x": 2, + "num_items_y": 6, + "num_items_z": 1, + "layout": "x-y", + "sites": [ + { + "label": "A1", + "visible": true, + "occupied_by": "bottle_rack_6x2_vial_1", + "position": { + "x": 25.0, + "y": 195.0, + "z": 5.0 + }, + "size": { + "width": 35.0, + "height": 35.0, + "depth": 50.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "B1", + "visible": true, + "occupied_by": "bottle_rack_6x2_vial_2", + "position": { + "x": 25.0, + "y": 160.0, + "z": 5.0 + }, + "size": { + "width": 35.0, + "height": 35.0, + "depth": 50.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "C1", + "visible": true, + "occupied_by": "bottle_rack_6x2_vial_3", + "position": { + "x": 25.0, + "y": 125.0, + "z": 5.0 + }, + "size": { + "width": 35.0, + "height": 35.0, + "depth": 50.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "D1", + "visible": true, + "occupied_by": "bottle_rack_6x2_vial_4", + "position": { + "x": 25.0, + "y": 90.0, + "z": 5.0 + }, + "size": { + "width": 35.0, + "height": 35.0, + "depth": 50.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "E1", + "visible": true, + "occupied_by": "bottle_rack_6x2_vial_5", + "position": { + "x": 25.0, + "y": 55.0, + "z": 5.0 + }, + "size": { + "width": 35.0, + "height": 35.0, + "depth": 50.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "F1", + "visible": true, + "occupied_by": "bottle_rack_6x2_vial_6", + "position": { + "x": 25.0, + "y": 20.0, + "z": 5.0 + }, + "size": { + "width": 35.0, + "height": 35.0, + "depth": 50.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "A2", + "visible": true, + "occupied_by": "bottle_rack_6x2_vial_7", + "position": { + "x": 60.0, + "y": 195.0, + "z": 5.0 + }, + "size": { + "width": 35.0, + "height": 35.0, + "depth": 50.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "B2", + "visible": true, + "occupied_by": "bottle_rack_6x2_vial_8", + "position": { + "x": 60.0, + "y": 160.0, + "z": 5.0 + }, + "size": { + "width": 35.0, + "height": 35.0, + "depth": 50.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "C2", + "visible": true, + "occupied_by": "bottle_rack_6x2_vial_9", + "position": { + "x": 60.0, + "y": 125.0, + "z": 5.0 + }, + "size": { + "width": 35.0, + "height": 35.0, + "depth": 50.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "D2", + "visible": true, + "occupied_by": "bottle_rack_6x2_vial_10", + "position": { + "x": 60.0, + "y": 90.0, + "z": 5.0 + }, + "size": { + "width": 35.0, + "height": 35.0, + "depth": 50.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "E2", + "visible": true, + "occupied_by": "bottle_rack_6x2_vial_11", + "position": { + "x": 60.0, + "y": 55.0, + "z": 5.0 + }, + "size": { + "width": 35.0, + "height": 35.0, + "depth": 50.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "F2", + "visible": true, + "occupied_by": "bottle_rack_6x2_vial_12", + "position": { + "x": 60.0, + "y": 20.0, + "z": 5.0 + }, + "size": { + "width": 35.0, + "height": 35.0, + "depth": 50.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + } + ] + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 1050.0, + "y": 358.0, + "z": 0.0 + } + }, + { + "id": "bottle_rack_6x2_vial_1", + "uuid": "c5f108d1-a3aa-4da6-bac5-81c653eded8e", + "name": "bottle_rack_6x2_vial_1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5ab01c1f-35a7-4bc4-b956-25127ae73501", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 60.0, + "width": 35.0, + "height": 35.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 25.0, + "y": 195.0, + "z": 5.0 + }, + "position3d": { + "x": 25.0, + "y": 195.0, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 35.0, + "size_y": 35.0, + "size_z": 60.0, + "category": "container", + "model": "YB_pei_ye_xiao_Bottle", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 30000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 35.0, + "height": 60.0 + }, + "data": { + "thing": "bottle_rack_6x2_vial_1_volume_tracker", + "max_volume": 30000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 25.0, + "y": 195.0, + "z": 5.0 + } + }, + { + "id": "bottle_rack_6x2_vial_2", + "uuid": "08bedd17-d55a-45f8-b731-f27e899be075", + "name": "bottle_rack_6x2_vial_2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5ab01c1f-35a7-4bc4-b956-25127ae73501", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 60.0, + "width": 35.0, + "height": 35.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 25.0, + "y": 160.0, + "z": 5.0 + }, + "position3d": { + "x": 25.0, + "y": 160.0, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 35.0, + "size_y": 35.0, + "size_z": 60.0, + "category": "container", + "model": "YB_pei_ye_xiao_Bottle", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 30000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 35.0, + "height": 60.0 + }, + "data": { + "thing": "bottle_rack_6x2_vial_2_volume_tracker", + "max_volume": 30000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 25.0, + "y": 160.0, + "z": 5.0 + } + }, + { + "id": "bottle_rack_6x2_vial_3", + "uuid": "bb45ff19-ca24-4bef-8ff3-66e7c2cbf5fc", + "name": "bottle_rack_6x2_vial_3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5ab01c1f-35a7-4bc4-b956-25127ae73501", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 60.0, + "width": 35.0, + "height": 35.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 25.0, + "y": 125.0, + "z": 5.0 + }, + "position3d": { + "x": 25.0, + "y": 125.0, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 35.0, + "size_y": 35.0, + "size_z": 60.0, + "category": "container", + "model": "YB_pei_ye_xiao_Bottle", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 30000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 35.0, + "height": 60.0 + }, + "data": { + "thing": "bottle_rack_6x2_vial_3_volume_tracker", + "max_volume": 30000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 25.0, + "y": 125.0, + "z": 5.0 + } + }, + { + "id": "bottle_rack_6x2_vial_4", + "uuid": "eb924d76-abcd-477a-a440-8d5eb416e601", + "name": "bottle_rack_6x2_vial_4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5ab01c1f-35a7-4bc4-b956-25127ae73501", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 60.0, + "width": 35.0, + "height": 35.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 25.0, + "y": 90.0, + "z": 5.0 + }, + "position3d": { + "x": 25.0, + "y": 90.0, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 35.0, + "size_y": 35.0, + "size_z": 60.0, + "category": "container", + "model": "YB_pei_ye_xiao_Bottle", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 30000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 35.0, + "height": 60.0 + }, + "data": { + "thing": "bottle_rack_6x2_vial_4_volume_tracker", + "max_volume": 30000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 25.0, + "y": 90.0, + "z": 5.0 + } + }, + { + "id": "bottle_rack_6x2_vial_5", + "uuid": "e5b67515-96b2-47ae-a873-6ec3b78e5c9b", + "name": "bottle_rack_6x2_vial_5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5ab01c1f-35a7-4bc4-b956-25127ae73501", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 60.0, + "width": 35.0, + "height": 35.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 25.0, + "y": 55.0, + "z": 5.0 + }, + "position3d": { + "x": 25.0, + "y": 55.0, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 35.0, + "size_y": 35.0, + "size_z": 60.0, + "category": "container", + "model": "YB_pei_ye_xiao_Bottle", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 30000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 35.0, + "height": 60.0 + }, + "data": { + "thing": "bottle_rack_6x2_vial_5_volume_tracker", + "max_volume": 30000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 25.0, + "y": 55.0, + "z": 5.0 + } + }, + { + "id": "bottle_rack_6x2_vial_6", + "uuid": "1d1aca61-3e3f-4473-bfe3-7c720376f7f5", + "name": "bottle_rack_6x2_vial_6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5ab01c1f-35a7-4bc4-b956-25127ae73501", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 60.0, + "width": 35.0, + "height": 35.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 25.0, + "y": 20.0, + "z": 5.0 + }, + "position3d": { + "x": 25.0, + "y": 20.0, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 35.0, + "size_y": 35.0, + "size_z": 60.0, + "category": "container", + "model": "YB_pei_ye_xiao_Bottle", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 30000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 35.0, + "height": 60.0 + }, + "data": { + "thing": "bottle_rack_6x2_vial_6_volume_tracker", + "max_volume": 30000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 25.0, + "y": 20.0, + "z": 5.0 + } + }, + { + "id": "bottle_rack_6x2_vial_7", + "uuid": "15592a4d-67fa-4af8-b33d-2c2480c48278", + "name": "bottle_rack_6x2_vial_7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5ab01c1f-35a7-4bc4-b956-25127ae73501", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 60.0, + "width": 35.0, + "height": 35.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 60.0, + "y": 195.0, + "z": 5.0 + }, + "position3d": { + "x": 60.0, + "y": 195.0, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 35.0, + "size_y": 35.0, + "size_z": 60.0, + "category": "container", + "model": "YB_pei_ye_xiao_Bottle", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 30000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 35.0, + "height": 60.0 + }, + "data": { + "thing": "bottle_rack_6x2_vial_7_volume_tracker", + "max_volume": 30000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 60.0, + "y": 195.0, + "z": 5.0 + } + }, + { + "id": "bottle_rack_6x2_vial_8", + "uuid": "0e7dc2b4-4140-4cd6-bfed-dd0fca66c772", + "name": "bottle_rack_6x2_vial_8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5ab01c1f-35a7-4bc4-b956-25127ae73501", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 60.0, + "width": 35.0, + "height": 35.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 60.0, + "y": 160.0, + "z": 5.0 + }, + "position3d": { + "x": 60.0, + "y": 160.0, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 35.0, + "size_y": 35.0, + "size_z": 60.0, + "category": "container", + "model": "YB_pei_ye_xiao_Bottle", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 30000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 35.0, + "height": 60.0 + }, + "data": { + "thing": "bottle_rack_6x2_vial_8_volume_tracker", + "max_volume": 30000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 60.0, + "y": 160.0, + "z": 5.0 + } + }, + { + "id": "bottle_rack_6x2_vial_9", + "uuid": "45f9fbae-485b-42c1-8fd7-d9f658cbac39", + "name": "bottle_rack_6x2_vial_9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5ab01c1f-35a7-4bc4-b956-25127ae73501", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 60.0, + "width": 35.0, + "height": 35.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 60.0, + "y": 125.0, + "z": 5.0 + }, + "position3d": { + "x": 60.0, + "y": 125.0, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 35.0, + "size_y": 35.0, + "size_z": 60.0, + "category": "container", + "model": "YB_pei_ye_xiao_Bottle", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 30000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 35.0, + "height": 60.0 + }, + "data": { + "thing": "bottle_rack_6x2_vial_9_volume_tracker", + "max_volume": 30000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 60.0, + "y": 125.0, + "z": 5.0 + } + }, + { + "id": "bottle_rack_6x2_vial_10", + "uuid": "7928165f-3a83-46bb-8eb6-fc204059e6d7", + "name": "bottle_rack_6x2_vial_10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5ab01c1f-35a7-4bc4-b956-25127ae73501", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 60.0, + "width": 35.0, + "height": 35.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 60.0, + "y": 90.0, + "z": 5.0 + }, + "position3d": { + "x": 60.0, + "y": 90.0, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 35.0, + "size_y": 35.0, + "size_z": 60.0, + "category": "container", + "model": "YB_pei_ye_xiao_Bottle", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 30000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 35.0, + "height": 60.0 + }, + "data": { + "thing": "bottle_rack_6x2_vial_10_volume_tracker", + "max_volume": 30000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 60.0, + "y": 90.0, + "z": 5.0 + } + }, + { + "id": "bottle_rack_6x2_vial_11", + "uuid": "68152540-490c-44d8-9127-f10a03bfbbe8", + "name": "bottle_rack_6x2_vial_11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5ab01c1f-35a7-4bc4-b956-25127ae73501", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 60.0, + "width": 35.0, + "height": 35.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 60.0, + "y": 55.0, + "z": 5.0 + }, + "position3d": { + "x": 60.0, + "y": 55.0, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 35.0, + "size_y": 35.0, + "size_z": 60.0, + "category": "container", + "model": "YB_pei_ye_xiao_Bottle", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 30000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 35.0, + "height": 60.0 + }, + "data": { + "thing": "bottle_rack_6x2_vial_11_volume_tracker", + "max_volume": 30000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 60.0, + "y": 55.0, + "z": 5.0 + } + }, + { + "id": "bottle_rack_6x2_vial_12", + "uuid": "ce10c954-9608-4d07-a9f4-2ce519ae2d45", + "name": "bottle_rack_6x2_vial_12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "5ab01c1f-35a7-4bc4-b956-25127ae73501", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 60.0, + "width": 35.0, + "height": 35.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 60.0, + "y": 20.0, + "z": 5.0 + }, + "position3d": { + "x": 60.0, + "y": 20.0, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 35.0, + "size_y": 35.0, + "size_z": 60.0, + "category": "container", + "model": "YB_pei_ye_xiao_Bottle", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 30000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 35.0, + "height": 60.0 + }, + "data": { + "thing": "bottle_rack_6x2_vial_12_volume_tracker", + "max_volume": 30000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 60.0, + "y": 20.0, + "z": 5.0 + } + }, + { + "id": "bottle_rack_6x2_2", + "uuid": "6de3e3b8-f21b-49c1-be75-e11ebb67d8ff", + "name": "bottle_rack_6x2_2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "24b64c33-ddb4-409e-8b71-aa3721c52a0f", + "type": "bottle_carrier", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 120.0, + "height": 250.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 914.0, + "y": 358.0, + "z": 0.0 + }, + "position3d": { + "x": 914.0, + "y": 358.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "BottleCarrier", + "size_x": 120.0, + "size_y": 250.0, + "size_z": 50.0, + "category": "bottle_carrier", + "model": "Electrolyte_12VialCarrier", + "barcode": null, + "preferred_pickup_location": null, + "num_items_x": 2, + "num_items_y": 6, + "num_items_z": 1, + "layout": "x-y", + "sites": [ + { + "label": "A1", + "visible": true, + "occupied_by": "bottle_rack_6x2_2_vial_1", + "position": { + "x": 25.0, + "y": 195.0, + "z": 5.0 + }, + "size": { + "width": 35.0, + "height": 35.0, + "depth": 50.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "B1", + "visible": true, + "occupied_by": "bottle_rack_6x2_2_vial_2", + "position": { + "x": 25.0, + "y": 160.0, + "z": 5.0 + }, + "size": { + "width": 35.0, + "height": 35.0, + "depth": 50.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "C1", + "visible": true, + "occupied_by": "bottle_rack_6x2_2_vial_3", + "position": { + "x": 25.0, + "y": 125.0, + "z": 5.0 + }, + "size": { + "width": 35.0, + "height": 35.0, + "depth": 50.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "D1", + "visible": true, + "occupied_by": "bottle_rack_6x2_2_vial_4", + "position": { + "x": 25.0, + "y": 90.0, + "z": 5.0 + }, + "size": { + "width": 35.0, + "height": 35.0, + "depth": 50.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "E1", + "visible": true, + "occupied_by": "bottle_rack_6x2_2_vial_5", + "position": { + "x": 25.0, + "y": 55.0, + "z": 5.0 + }, + "size": { + "width": 35.0, + "height": 35.0, + "depth": 50.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "F1", + "visible": true, + "occupied_by": "bottle_rack_6x2_2_vial_6", + "position": { + "x": 25.0, + "y": 20.0, + "z": 5.0 + }, + "size": { + "width": 35.0, + "height": 35.0, + "depth": 50.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "A2", + "visible": true, + "occupied_by": "bottle_rack_6x2_2_vial_7", + "position": { + "x": 60.0, + "y": 195.0, + "z": 5.0 + }, + "size": { + "width": 35.0, + "height": 35.0, + "depth": 50.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "B2", + "visible": true, + "occupied_by": "bottle_rack_6x2_2_vial_8", + "position": { + "x": 60.0, + "y": 160.0, + "z": 5.0 + }, + "size": { + "width": 35.0, + "height": 35.0, + "depth": 50.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "C2", + "visible": true, + "occupied_by": "bottle_rack_6x2_2_vial_9", + "position": { + "x": 60.0, + "y": 125.0, + "z": 5.0 + }, + "size": { + "width": 35.0, + "height": 35.0, + "depth": 50.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "D2", + "visible": true, + "occupied_by": "bottle_rack_6x2_2_vial_10", + "position": { + "x": 60.0, + "y": 90.0, + "z": 5.0 + }, + "size": { + "width": 35.0, + "height": 35.0, + "depth": 50.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "E2", + "visible": true, + "occupied_by": "bottle_rack_6x2_2_vial_11", + "position": { + "x": 60.0, + "y": 55.0, + "z": 5.0 + }, + "size": { + "width": 35.0, + "height": 35.0, + "depth": 50.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "F2", + "visible": true, + "occupied_by": "bottle_rack_6x2_2_vial_12", + "position": { + "x": 60.0, + "y": 20.0, + "z": 5.0 + }, + "size": { + "width": 35.0, + "height": 35.0, + "depth": 50.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + } + ] + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 914.0, + "y": 358.0, + "z": 0.0 + } + }, + { + "id": "bottle_rack_6x2_2_vial_1", + "uuid": "c5b5dd8e-d740-473c-9488-a960eec9856a", + "name": "bottle_rack_6x2_2_vial_1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6de3e3b8-f21b-49c1-be75-e11ebb67d8ff", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 60.0, + "width": 35.0, + "height": 35.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 25.0, + "y": 195.0, + "z": 5.0 + }, + "position3d": { + "x": 25.0, + "y": 195.0, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 35.0, + "size_y": 35.0, + "size_z": 60.0, + "category": "container", + "model": "YB_pei_ye_xiao_Bottle", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 30000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 35.0, + "height": 60.0 + }, + "data": { + "thing": "bottle_rack_6x2_2_vial_1_volume_tracker", + "max_volume": 30000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 25.0, + "y": 195.0, + "z": 5.0 + } + }, + { + "id": "bottle_rack_6x2_2_vial_2", + "uuid": "1dd384bc-2d22-4ef4-9f74-010023e7bf79", + "name": "bottle_rack_6x2_2_vial_2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6de3e3b8-f21b-49c1-be75-e11ebb67d8ff", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 60.0, + "width": 35.0, + "height": 35.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 25.0, + "y": 160.0, + "z": 5.0 + }, + "position3d": { + "x": 25.0, + "y": 160.0, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 35.0, + "size_y": 35.0, + "size_z": 60.0, + "category": "container", + "model": "YB_pei_ye_xiao_Bottle", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 30000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 35.0, + "height": 60.0 + }, + "data": { + "thing": "bottle_rack_6x2_2_vial_2_volume_tracker", + "max_volume": 30000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 25.0, + "y": 160.0, + "z": 5.0 + } + }, + { + "id": "bottle_rack_6x2_2_vial_3", + "uuid": "3b104492-1b72-4f0c-98b0-715f7f71abc9", + "name": "bottle_rack_6x2_2_vial_3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6de3e3b8-f21b-49c1-be75-e11ebb67d8ff", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 60.0, + "width": 35.0, + "height": 35.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 25.0, + "y": 125.0, + "z": 5.0 + }, + "position3d": { + "x": 25.0, + "y": 125.0, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 35.0, + "size_y": 35.0, + "size_z": 60.0, + "category": "container", + "model": "YB_pei_ye_xiao_Bottle", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 30000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 35.0, + "height": 60.0 + }, + "data": { + "thing": "bottle_rack_6x2_2_vial_3_volume_tracker", + "max_volume": 30000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 25.0, + "y": 125.0, + "z": 5.0 + } + }, + { + "id": "bottle_rack_6x2_2_vial_4", + "uuid": "0337dad1-e643-4086-8433-509eacb842d7", + "name": "bottle_rack_6x2_2_vial_4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6de3e3b8-f21b-49c1-be75-e11ebb67d8ff", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 60.0, + "width": 35.0, + "height": 35.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 25.0, + "y": 90.0, + "z": 5.0 + }, + "position3d": { + "x": 25.0, + "y": 90.0, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 35.0, + "size_y": 35.0, + "size_z": 60.0, + "category": "container", + "model": "YB_pei_ye_xiao_Bottle", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 30000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 35.0, + "height": 60.0 + }, + "data": { + "thing": "bottle_rack_6x2_2_vial_4_volume_tracker", + "max_volume": 30000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 25.0, + "y": 90.0, + "z": 5.0 + } + }, + { + "id": "bottle_rack_6x2_2_vial_5", + "uuid": "128c8558-dd06-4003-bc08-05b14e2991e4", + "name": "bottle_rack_6x2_2_vial_5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6de3e3b8-f21b-49c1-be75-e11ebb67d8ff", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 60.0, + "width": 35.0, + "height": 35.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 25.0, + "y": 55.0, + "z": 5.0 + }, + "position3d": { + "x": 25.0, + "y": 55.0, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 35.0, + "size_y": 35.0, + "size_z": 60.0, + "category": "container", + "model": "YB_pei_ye_xiao_Bottle", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 30000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 35.0, + "height": 60.0 + }, + "data": { + "thing": "bottle_rack_6x2_2_vial_5_volume_tracker", + "max_volume": 30000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 25.0, + "y": 55.0, + "z": 5.0 + } + }, + { + "id": "bottle_rack_6x2_2_vial_6", + "uuid": "959a0e14-766d-4cd9-b93f-77aa8816e9e7", + "name": "bottle_rack_6x2_2_vial_6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6de3e3b8-f21b-49c1-be75-e11ebb67d8ff", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 60.0, + "width": 35.0, + "height": 35.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 25.0, + "y": 20.0, + "z": 5.0 + }, + "position3d": { + "x": 25.0, + "y": 20.0, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 35.0, + "size_y": 35.0, + "size_z": 60.0, + "category": "container", + "model": "YB_pei_ye_xiao_Bottle", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 30000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 35.0, + "height": 60.0 + }, + "data": { + "thing": "bottle_rack_6x2_2_vial_6_volume_tracker", + "max_volume": 30000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 25.0, + "y": 20.0, + "z": 5.0 + } + }, + { + "id": "bottle_rack_6x2_2_vial_7", + "uuid": "4704b34c-6d73-453a-8324-92f838de5660", + "name": "bottle_rack_6x2_2_vial_7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6de3e3b8-f21b-49c1-be75-e11ebb67d8ff", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 60.0, + "width": 35.0, + "height": 35.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 60.0, + "y": 195.0, + "z": 5.0 + }, + "position3d": { + "x": 60.0, + "y": 195.0, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 35.0, + "size_y": 35.0, + "size_z": 60.0, + "category": "container", + "model": "YB_pei_ye_xiao_Bottle", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 30000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 35.0, + "height": 60.0 + }, + "data": { + "thing": "bottle_rack_6x2_2_vial_7_volume_tracker", + "max_volume": 30000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 60.0, + "y": 195.0, + "z": 5.0 + } + }, + { + "id": "bottle_rack_6x2_2_vial_8", + "uuid": "558db860-96f5-4858-8890-3e4305c3f0ce", + "name": "bottle_rack_6x2_2_vial_8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6de3e3b8-f21b-49c1-be75-e11ebb67d8ff", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 60.0, + "width": 35.0, + "height": 35.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 60.0, + "y": 160.0, + "z": 5.0 + }, + "position3d": { + "x": 60.0, + "y": 160.0, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 35.0, + "size_y": 35.0, + "size_z": 60.0, + "category": "container", + "model": "YB_pei_ye_xiao_Bottle", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 30000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 35.0, + "height": 60.0 + }, + "data": { + "thing": "bottle_rack_6x2_2_vial_8_volume_tracker", + "max_volume": 30000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 60.0, + "y": 160.0, + "z": 5.0 + } + }, + { + "id": "bottle_rack_6x2_2_vial_9", + "uuid": "b87364d1-39f6-41d2-b3b4-3ad148164683", + "name": "bottle_rack_6x2_2_vial_9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6de3e3b8-f21b-49c1-be75-e11ebb67d8ff", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 60.0, + "width": 35.0, + "height": 35.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 60.0, + "y": 125.0, + "z": 5.0 + }, + "position3d": { + "x": 60.0, + "y": 125.0, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 35.0, + "size_y": 35.0, + "size_z": 60.0, + "category": "container", + "model": "YB_pei_ye_xiao_Bottle", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 30000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 35.0, + "height": 60.0 + }, + "data": { + "thing": "bottle_rack_6x2_2_vial_9_volume_tracker", + "max_volume": 30000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 60.0, + "y": 125.0, + "z": 5.0 + } + }, + { + "id": "bottle_rack_6x2_2_vial_10", + "uuid": "b94aa86f-1c5f-41ec-a9e5-e988eaa00bac", + "name": "bottle_rack_6x2_2_vial_10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6de3e3b8-f21b-49c1-be75-e11ebb67d8ff", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 60.0, + "width": 35.0, + "height": 35.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 60.0, + "y": 90.0, + "z": 5.0 + }, + "position3d": { + "x": 60.0, + "y": 90.0, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 35.0, + "size_y": 35.0, + "size_z": 60.0, + "category": "container", + "model": "YB_pei_ye_xiao_Bottle", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 30000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 35.0, + "height": 60.0 + }, + "data": { + "thing": "bottle_rack_6x2_2_vial_10_volume_tracker", + "max_volume": 30000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 60.0, + "y": 90.0, + "z": 5.0 + } + }, + { + "id": "bottle_rack_6x2_2_vial_11", + "uuid": "77bb51e6-2ccb-4081-93bd-624a31b841c8", + "name": "bottle_rack_6x2_2_vial_11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6de3e3b8-f21b-49c1-be75-e11ebb67d8ff", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 60.0, + "width": 35.0, + "height": 35.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 60.0, + "y": 55.0, + "z": 5.0 + }, + "position3d": { + "x": 60.0, + "y": 55.0, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 35.0, + "size_y": 35.0, + "size_z": 60.0, + "category": "container", + "model": "YB_pei_ye_xiao_Bottle", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 30000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 35.0, + "height": 60.0 + }, + "data": { + "thing": "bottle_rack_6x2_2_vial_11_volume_tracker", + "max_volume": 30000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 60.0, + "y": 55.0, + "z": 5.0 + } + }, + { + "id": "bottle_rack_6x2_2_vial_12", + "uuid": "856467f3-f52a-4e1c-8b23-4b61c317b15b", + "name": "bottle_rack_6x2_2_vial_12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6de3e3b8-f21b-49c1-be75-e11ebb67d8ff", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 60.0, + "width": 35.0, + "height": 35.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 60.0, + "y": 20.0, + "z": 5.0 + }, + "position3d": { + "x": 60.0, + "y": 20.0, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 35.0, + "size_y": 35.0, + "size_z": 60.0, + "category": "container", + "model": "YB_pei_ye_xiao_Bottle", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 30000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 35.0, + "height": 60.0 + }, + "data": { + "thing": "bottle_rack_6x2_2_vial_12_volume_tracker", + "max_volume": 30000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 60.0, + "y": 20.0, + "z": 5.0 + } + }, + { + "id": "tip_box_64", + "uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "name": "tip_box_64", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "24b64c33-ddb4-409e-8b71-aa3721c52a0f", + "type": "tip_rack", + "class": "", + "pose": { + "size": { + "depth": 60.0, + "width": 127.8, + "height": 85.5 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 782.0, + "y": 514.0, + "z": 0.0 + }, + "position3d": { + "x": 782.0, + "y": 514.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipRack", + "size_x": 127.8, + "size_y": 85.5, + "size_z": 60.0, + "category": "tip_rack", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "ordering": { + "A1": "tip_box_64_tipspot_A1", + "B1": "tip_box_64_tipspot_B1", + "C1": "tip_box_64_tipspot_C1", + "D1": "tip_box_64_tipspot_D1", + "E1": "tip_box_64_tipspot_E1", + "F1": "tip_box_64_tipspot_F1", + "G1": "tip_box_64_tipspot_G1", + "H1": "tip_box_64_tipspot_H1", + "A2": "tip_box_64_tipspot_A2", + "B2": "tip_box_64_tipspot_B2", + "C2": "tip_box_64_tipspot_C2", + "D2": "tip_box_64_tipspot_D2", + "E2": "tip_box_64_tipspot_E2", + "F2": "tip_box_64_tipspot_F2", + "G2": "tip_box_64_tipspot_G2", + "H2": "tip_box_64_tipspot_H2", + "A3": "tip_box_64_tipspot_A3", + "B3": "tip_box_64_tipspot_B3", + "C3": "tip_box_64_tipspot_C3", + "D3": "tip_box_64_tipspot_D3", + "E3": "tip_box_64_tipspot_E3", + "F3": "tip_box_64_tipspot_F3", + "G3": "tip_box_64_tipspot_G3", + "H3": "tip_box_64_tipspot_H3", + "A4": "tip_box_64_tipspot_A4", + "B4": "tip_box_64_tipspot_B4", + "C4": "tip_box_64_tipspot_C4", + "D4": "tip_box_64_tipspot_D4", + "E4": "tip_box_64_tipspot_E4", + "F4": "tip_box_64_tipspot_F4", + "G4": "tip_box_64_tipspot_G4", + "H4": "tip_box_64_tipspot_H4", + "A5": "tip_box_64_tipspot_A5", + "B5": "tip_box_64_tipspot_B5", + "C5": "tip_box_64_tipspot_C5", + "D5": "tip_box_64_tipspot_D5", + "E5": "tip_box_64_tipspot_E5", + "F5": "tip_box_64_tipspot_F5", + "G5": "tip_box_64_tipspot_G5", + "H5": "tip_box_64_tipspot_H5", + "A6": "tip_box_64_tipspot_A6", + "B6": "tip_box_64_tipspot_B6", + "C6": "tip_box_64_tipspot_C6", + "D6": "tip_box_64_tipspot_D6", + "E6": "tip_box_64_tipspot_E6", + "F6": "tip_box_64_tipspot_F6", + "G6": "tip_box_64_tipspot_G6", + "H6": "tip_box_64_tipspot_H6", + "A7": "tip_box_64_tipspot_A7", + "B7": "tip_box_64_tipspot_B7", + "C7": "tip_box_64_tipspot_C7", + "D7": "tip_box_64_tipspot_D7", + "E7": "tip_box_64_tipspot_E7", + "F7": "tip_box_64_tipspot_F7", + "G7": "tip_box_64_tipspot_G7", + "H7": "tip_box_64_tipspot_H7", + "A8": "tip_box_64_tipspot_A8", + "B8": "tip_box_64_tipspot_B8", + "C8": "tip_box_64_tipspot_C8", + "D8": "tip_box_64_tipspot_D8", + "E8": "tip_box_64_tipspot_E8", + "F8": "tip_box_64_tipspot_F8", + "G8": "tip_box_64_tipspot_G8", + "H8": "tip_box_64_tipspot_H8", + "A9": "tip_box_64_tipspot_A9", + "B9": "tip_box_64_tipspot_B9", + "C9": "tip_box_64_tipspot_C9", + "D9": "tip_box_64_tipspot_D9", + "E9": "tip_box_64_tipspot_E9", + "F9": "tip_box_64_tipspot_F9", + "G9": "tip_box_64_tipspot_G9", + "H9": "tip_box_64_tipspot_H9", + "A10": "tip_box_64_tipspot_A10", + "B10": "tip_box_64_tipspot_B10", + "C10": "tip_box_64_tipspot_C10", + "D10": "tip_box_64_tipspot_D10", + "E10": "tip_box_64_tipspot_E10", + "F10": "tip_box_64_tipspot_F10", + "G10": "tip_box_64_tipspot_G10", + "H10": "tip_box_64_tipspot_H10", + "A11": "tip_box_64_tipspot_A11", + "B11": "tip_box_64_tipspot_B11", + "C11": "tip_box_64_tipspot_C11", + "D11": "tip_box_64_tipspot_D11", + "E11": "tip_box_64_tipspot_E11", + "F11": "tip_box_64_tipspot_F11", + "G11": "tip_box_64_tipspot_G11", + "H11": "tip_box_64_tipspot_H11", + "A12": "tip_box_64_tipspot_A12", + "B12": "tip_box_64_tipspot_B12", + "C12": "tip_box_64_tipspot_C12", + "D12": "tip_box_64_tipspot_D12", + "E12": "tip_box_64_tipspot_E12", + "F12": "tip_box_64_tipspot_F12", + "G12": "tip_box_64_tipspot_G12", + "H12": "tip_box_64_tipspot_H12" + } + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 782.0, + "y": 514.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_A1", + "uuid": "37d31a89-2b26-4752-8afe-ee6325d17ff8", + "name": "tip_box_64_tipspot_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 8.0, + "y": 71.0, + "z": 0.0 + }, + "position3d": { + "x": 8.0, + "y": 71.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_A1#1", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_A1#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + }, + "tip_state": { + "thing": "tip_box_64_tipspot_A1#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_A1#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 8.0, + "y": 71.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_B1", + "uuid": "6be049e3-631a-4ae8-ad23-3580984a6756", + "name": "tip_box_64_tipspot_B1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 8.0, + "y": 62.0, + "z": 0.0 + }, + "position3d": { + "x": 8.0, + "y": 62.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_B1#1", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_B1#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + }, + "tip_state": { + "thing": "tip_box_64_tipspot_B1#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_B1#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 8.0, + "y": 62.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_C1", + "uuid": "993c9729-cead-4b8b-9359-60b73ac8d08c", + "name": "tip_box_64_tipspot_C1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 8.0, + "y": 53.0, + "z": 0.0 + }, + "position3d": { + "x": 8.0, + "y": 53.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_C1#1", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_C1#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + }, + "tip_state": { + "thing": "tip_box_64_tipspot_C1#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_C1#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 8.0, + "y": 53.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_D1", + "uuid": "1b74c60d-0de6-45b7-9239-c572aa40c34a", + "name": "tip_box_64_tipspot_D1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 8.0, + "y": 44.0, + "z": 0.0 + }, + "position3d": { + "x": 8.0, + "y": 44.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_D1#1", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_D1#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + }, + "tip_state": { + "thing": "tip_box_64_tipspot_D1#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_D1#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 8.0, + "y": 44.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_E1", + "uuid": "cf9e6472-ceb7-4974-adc7-3bbcbbfce877", + "name": "tip_box_64_tipspot_E1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 8.0, + "y": 35.0, + "z": 0.0 + }, + "position3d": { + "x": 8.0, + "y": 35.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_E1#1", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_E1#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + }, + "tip_state": { + "thing": "tip_box_64_tipspot_E1#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_E1#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 8.0, + "y": 35.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_F1", + "uuid": "b67cdb5f-0d21-40ce-8522-d450cdc17799", + "name": "tip_box_64_tipspot_F1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 8.0, + "y": 26.0, + "z": 0.0 + }, + "position3d": { + "x": 8.0, + "y": 26.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_F1#1", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_F1#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + }, + "tip_state": { + "thing": "tip_box_64_tipspot_F1#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_F1#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 8.0, + "y": 26.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_G1", + "uuid": "f91cf37a-7022-4475-92c0-1bb82ff4ebb6", + "name": "tip_box_64_tipspot_G1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 8.0, + "y": 17.0, + "z": 0.0 + }, + "position3d": { + "x": 8.0, + "y": 17.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_G1#1", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_G1#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + }, + "tip_state": { + "thing": "tip_box_64_tipspot_G1#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_G1#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 8.0, + "y": 17.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_H1", + "uuid": "0e1e3ee7-696f-4d0f-ac40-1b7ad36950db", + "name": "tip_box_64_tipspot_H1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 8.0, + "y": 8.0, + "z": 0.0 + }, + "position3d": { + "x": 8.0, + "y": 8.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_H1#1", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_H1#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + }, + "tip_state": { + "thing": "tip_box_64_tipspot_H1#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_H1#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 8.0, + "y": 8.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_A2", + "uuid": "ec875d16-fff3-432f-972c-80f90f6effa8", + "name": "tip_box_64_tipspot_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 17.0, + "y": 71.0, + "z": 0.0 + }, + "position3d": { + "x": 17.0, + "y": 71.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_A2#1", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_A2#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + }, + "tip_state": { + "thing": "tip_box_64_tipspot_A2#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_A2#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 17.0, + "y": 71.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_B2", + "uuid": "1f217d83-632e-43ea-bc9d-8f83bd2218e4", + "name": "tip_box_64_tipspot_B2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 17.0, + "y": 62.0, + "z": 0.0 + }, + "position3d": { + "x": 17.0, + "y": 62.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_B2#1", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_B2#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + }, + "tip_state": { + "thing": "tip_box_64_tipspot_B2#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_B2#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 17.0, + "y": 62.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_C2", + "uuid": "1a485391-34b8-4ebe-85a6-7eef78553388", + "name": "tip_box_64_tipspot_C2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 17.0, + "y": 53.0, + "z": 0.0 + }, + "position3d": { + "x": 17.0, + "y": 53.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_C2#1", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_C2#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + }, + "tip_state": { + "thing": "tip_box_64_tipspot_C2#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_C2#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 17.0, + "y": 53.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_D2", + "uuid": "9cfb2f34-9102-462c-9622-0479fcdf2de5", + "name": "tip_box_64_tipspot_D2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 17.0, + "y": 44.0, + "z": 0.0 + }, + "position3d": { + "x": 17.0, + "y": 44.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_D2#1", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_D2#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + }, + "tip_state": { + "thing": "tip_box_64_tipspot_D2#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_D2#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 17.0, + "y": 44.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_E2", + "uuid": "ecac1856-cafa-439d-a407-7548e0fbdb4f", + "name": "tip_box_64_tipspot_E2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 17.0, + "y": 35.0, + "z": 0.0 + }, + "position3d": { + "x": 17.0, + "y": 35.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_E2#1", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_E2#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + }, + "tip_state": { + "thing": "tip_box_64_tipspot_E2#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_E2#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 17.0, + "y": 35.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_F2", + "uuid": "3b0aae0a-ba52-41c9-bc82-0944b1f1a091", + "name": "tip_box_64_tipspot_F2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 17.0, + "y": 26.0, + "z": 0.0 + }, + "position3d": { + "x": 17.0, + "y": 26.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_F2#1", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_F2#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + }, + "tip_state": { + "thing": "tip_box_64_tipspot_F2#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_F2#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 17.0, + "y": 26.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_G2", + "uuid": "0f7701e8-d7ab-486d-8715-fe5512ad3971", + "name": "tip_box_64_tipspot_G2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 17.0, + "y": 17.0, + "z": 0.0 + }, + "position3d": { + "x": 17.0, + "y": 17.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_G2#1", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_G2#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + }, + "tip_state": { + "thing": "tip_box_64_tipspot_G2#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_G2#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 17.0, + "y": 17.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_H2", + "uuid": "340dba58-c95d-447f-8981-675e349377dc", + "name": "tip_box_64_tipspot_H2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 17.0, + "y": 8.0, + "z": 0.0 + }, + "position3d": { + "x": 17.0, + "y": 8.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_H2#1", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_H2#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + }, + "tip_state": { + "thing": "tip_box_64_tipspot_H2#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_H2#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 17.0, + "y": 8.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_A3", + "uuid": "b8516a46-9028-4f3f-89d5-f6332d04412c", + "name": "tip_box_64_tipspot_A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 26.0, + "y": 71.0, + "z": 0.0 + }, + "position3d": { + "x": 26.0, + "y": 71.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_A3#1", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_A3#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + }, + "tip_state": { + "thing": "tip_box_64_tipspot_A3#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_A3#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 26.0, + "y": 71.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_B3", + "uuid": "23f68db0-9163-462a-9620-67d2e89c84c1", + "name": "tip_box_64_tipspot_B3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 26.0, + "y": 62.0, + "z": 0.0 + }, + "position3d": { + "x": 26.0, + "y": 62.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_B3#1", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_B3#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + }, + "tip_state": { + "thing": "tip_box_64_tipspot_B3#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_B3#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 26.0, + "y": 62.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_C3", + "uuid": "a0977330-e733-4e1a-8342-4d4b140b000c", + "name": "tip_box_64_tipspot_C3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 26.0, + "y": 53.0, + "z": 0.0 + }, + "position3d": { + "x": 26.0, + "y": 53.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_C3#1", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_C3#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + }, + "tip_state": { + "thing": "tip_box_64_tipspot_C3#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_C3#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 26.0, + "y": 53.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_D3", + "uuid": "1671eae4-ac4c-4ea9-90c5-fcd3a16a0456", + "name": "tip_box_64_tipspot_D3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 26.0, + "y": 44.0, + "z": 0.0 + }, + "position3d": { + "x": 26.0, + "y": 44.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_D3#1", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_D3#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + }, + "tip_state": { + "thing": "tip_box_64_tipspot_D3#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_D3#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 26.0, + "y": 44.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_E3", + "uuid": "6828ddef-ef05-40f4-a985-2f83eca47f3d", + "name": "tip_box_64_tipspot_E3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 26.0, + "y": 35.0, + "z": 0.0 + }, + "position3d": { + "x": 26.0, + "y": 35.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_E3#1", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_E3#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + }, + "tip_state": { + "thing": "tip_box_64_tipspot_E3#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_E3#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 26.0, + "y": 35.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_F3", + "uuid": "82ee8f15-a239-452f-8d6e-2a71eb1df968", + "name": "tip_box_64_tipspot_F3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 26.0, + "y": 26.0, + "z": 0.0 + }, + "position3d": { + "x": 26.0, + "y": 26.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_F3#1", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_F3#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + }, + "tip_state": { + "thing": "tip_box_64_tipspot_F3#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_F3#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 26.0, + "y": 26.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_G3", + "uuid": "3cbbb3ab-a1ec-48aa-bd4a-117c7c003c60", + "name": "tip_box_64_tipspot_G3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 26.0, + "y": 17.0, + "z": 0.0 + }, + "position3d": { + "x": 26.0, + "y": 17.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_G3#1", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_G3#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + }, + "tip_state": { + "thing": "tip_box_64_tipspot_G3#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_G3#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 26.0, + "y": 17.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_H3", + "uuid": "46235e69-40cb-455f-a9d5-ba4e1ff25a1d", + "name": "tip_box_64_tipspot_H3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 26.0, + "y": 8.0, + "z": 0.0 + }, + "position3d": { + "x": 26.0, + "y": 8.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_H3#1", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_H3#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + }, + "tip_state": { + "thing": "tip_box_64_tipspot_H3#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_H3#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 26.0, + "y": 8.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_A4", + "uuid": "dbaaf539-e7c9-4cca-85fa-37315757e926", + "name": "tip_box_64_tipspot_A4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 35.0, + "y": 71.0, + "z": 0.0 + }, + "position3d": { + "x": 35.0, + "y": 71.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_A4#1", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_A4#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + }, + "tip_state": { + "thing": "tip_box_64_tipspot_A4#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_A4#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 35.0, + "y": 71.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_B4", + "uuid": "5ad90ab6-f6ca-4925-8276-d8c7ca6413f8", + "name": "tip_box_64_tipspot_B4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 35.0, + "y": 62.0, + "z": 0.0 + }, + "position3d": { + "x": 35.0, + "y": 62.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_B4#1", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_B4#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + }, + "tip_state": { + "thing": "tip_box_64_tipspot_B4#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_B4#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 35.0, + "y": 62.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_C4", + "uuid": "ec2b303c-0f60-4fa9-8474-dedd429a9dd2", + "name": "tip_box_64_tipspot_C4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 35.0, + "y": 53.0, + "z": 0.0 + }, + "position3d": { + "x": 35.0, + "y": 53.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_C4#1", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_C4#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + }, + "tip_state": { + "thing": "tip_box_64_tipspot_C4#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_C4#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 35.0, + "y": 53.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_D4", + "uuid": "e5673f51-e660-4bcb-85d7-704114e894e3", + "name": "tip_box_64_tipspot_D4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 35.0, + "y": 44.0, + "z": 0.0 + }, + "position3d": { + "x": 35.0, + "y": 44.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_D4#1", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_D4#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + }, + "tip_state": { + "thing": "tip_box_64_tipspot_D4#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_D4#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 35.0, + "y": 44.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_E4", + "uuid": "2bd0fb81-c8b1-4794-b25e-4126a7cbe1c4", + "name": "tip_box_64_tipspot_E4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 35.0, + "y": 35.0, + "z": 0.0 + }, + "position3d": { + "x": 35.0, + "y": 35.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_E4#1", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_E4#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + }, + "tip_state": { + "thing": "tip_box_64_tipspot_E4#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_E4#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 35.0, + "y": 35.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_F4", + "uuid": "e9ab7baa-92e7-4bda-87b2-ec63e7751fd9", + "name": "tip_box_64_tipspot_F4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 35.0, + "y": 26.0, + "z": 0.0 + }, + "position3d": { + "x": 35.0, + "y": 26.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_F4#1", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_F4#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + }, + "tip_state": { + "thing": "tip_box_64_tipspot_F4#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_F4#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 35.0, + "y": 26.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_G4", + "uuid": "841e957c-9ff3-44cb-8fba-89c2fbe75728", + "name": "tip_box_64_tipspot_G4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 35.0, + "y": 17.0, + "z": 0.0 + }, + "position3d": { + "x": 35.0, + "y": 17.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_G4#1", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_G4#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + }, + "tip_state": { + "thing": "tip_box_64_tipspot_G4#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_G4#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 35.0, + "y": 17.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_H4", + "uuid": "0122749c-5423-448a-b0fb-5a6a0538cc91", + "name": "tip_box_64_tipspot_H4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 35.0, + "y": 8.0, + "z": 0.0 + }, + "position3d": { + "x": 35.0, + "y": 8.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_H4#1", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_H4#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + }, + "tip_state": { + "thing": "tip_box_64_tipspot_H4#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_H4#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 35.0, + "y": 8.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_A5", + "uuid": "ca872574-4b98-4465-819f-667b050ef026", + "name": "tip_box_64_tipspot_A5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 44.0, + "y": 71.0, + "z": 0.0 + }, + "position3d": { + "x": 44.0, + "y": 71.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_A5#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": null, + "tip_state": null, + "pending_tip": null + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 44.0, + "y": 71.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_B5", + "uuid": "e48a18de-4a1c-45f6-8735-57b8ed79d70b", + "name": "tip_box_64_tipspot_B5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 44.0, + "y": 62.0, + "z": 0.0 + }, + "position3d": { + "x": 44.0, + "y": 62.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_B5#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": null, + "tip_state": null, + "pending_tip": null + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 44.0, + "y": 62.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_C5", + "uuid": "ff82989a-ae17-4744-ad7a-c5c39ecf24d7", + "name": "tip_box_64_tipspot_C5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 44.0, + "y": 53.0, + "z": 0.0 + }, + "position3d": { + "x": 44.0, + "y": 53.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_C5#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": null, + "tip_state": null, + "pending_tip": null + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 44.0, + "y": 53.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_D5", + "uuid": "cd2ad38a-1927-4951-8876-de87fefa9591", + "name": "tip_box_64_tipspot_D5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 44.0, + "y": 44.0, + "z": 0.0 + }, + "position3d": { + "x": 44.0, + "y": 44.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_D5#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": null, + "tip_state": null, + "pending_tip": null + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 44.0, + "y": 44.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_E5", + "uuid": "14021466-5ac0-4aa2-943f-10d182aedac4", + "name": "tip_box_64_tipspot_E5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 44.0, + "y": 35.0, + "z": 0.0 + }, + "position3d": { + "x": 44.0, + "y": 35.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_E5#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": null, + "tip_state": null, + "pending_tip": null + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 44.0, + "y": 35.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_F5", + "uuid": "ced364b9-00b0-4b5f-ac53-4e8097ebd7d4", + "name": "tip_box_64_tipspot_F5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 44.0, + "y": 26.0, + "z": 0.0 + }, + "position3d": { + "x": 44.0, + "y": 26.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_F5#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": null, + "tip_state": null, + "pending_tip": null + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 44.0, + "y": 26.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_G5", + "uuid": "6f766ea8-8ab7-4799-8fd1-d85594629d29", + "name": "tip_box_64_tipspot_G5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 44.0, + "y": 17.0, + "z": 0.0 + }, + "position3d": { + "x": 44.0, + "y": 17.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_G5#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": null, + "tip_state": null, + "pending_tip": null + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 44.0, + "y": 17.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_H5", + "uuid": "e780dac1-5811-4875-ad94-a46c2a4a8f4e", + "name": "tip_box_64_tipspot_H5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 44.0, + "y": 8.0, + "z": 0.0 + }, + "position3d": { + "x": 44.0, + "y": 8.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_H5#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": null, + "tip_state": null, + "pending_tip": null + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 44.0, + "y": 8.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_A6", + "uuid": "d64f68e7-c19f-4ca8-8e00-e3c58d363cfb", + "name": "tip_box_64_tipspot_A6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 53.0, + "y": 71.0, + "z": 0.0 + }, + "position3d": { + "x": 53.0, + "y": 71.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_A6#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": null, + "tip_state": null, + "pending_tip": null + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 53.0, + "y": 71.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_B6", + "uuid": "3160f202-d4e5-4f0f-a1d6-4332be07c1f8", + "name": "tip_box_64_tipspot_B6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 53.0, + "y": 62.0, + "z": 0.0 + }, + "position3d": { + "x": 53.0, + "y": 62.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_B6#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": null, + "tip_state": null, + "pending_tip": null + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 53.0, + "y": 62.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_C6", + "uuid": "6cadb0fd-21ec-4e10-96b6-38a441195825", + "name": "tip_box_64_tipspot_C6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 53.0, + "y": 53.0, + "z": 0.0 + }, + "position3d": { + "x": 53.0, + "y": 53.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_C6#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": null, + "tip_state": null, + "pending_tip": null + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 53.0, + "y": 53.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_D6", + "uuid": "d0f6979f-1ec6-4bb9-af6c-db1556907693", + "name": "tip_box_64_tipspot_D6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 53.0, + "y": 44.0, + "z": 0.0 + }, + "position3d": { + "x": 53.0, + "y": 44.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_D6#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": null, + "tip_state": null, + "pending_tip": null + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 53.0, + "y": 44.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_E6", + "uuid": "1ba4e9a8-8f9a-4a93-9d57-d7ab8ae6bf7a", + "name": "tip_box_64_tipspot_E6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 53.0, + "y": 35.0, + "z": 0.0 + }, + "position3d": { + "x": 53.0, + "y": 35.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_E6#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": null, + "tip_state": null, + "pending_tip": null + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 53.0, + "y": 35.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_F6", + "uuid": "28feef8c-c0f9-481f-bded-a24b465bc255", + "name": "tip_box_64_tipspot_F6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 53.0, + "y": 26.0, + "z": 0.0 + }, + "position3d": { + "x": 53.0, + "y": 26.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_F6#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": null, + "tip_state": null, + "pending_tip": null + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 53.0, + "y": 26.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_G6", + "uuid": "a81cdf00-ceaf-4a70-9a8a-48b16ee0d6c9", + "name": "tip_box_64_tipspot_G6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 53.0, + "y": 17.0, + "z": 0.0 + }, + "position3d": { + "x": 53.0, + "y": 17.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_G6#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": null, + "tip_state": null, + "pending_tip": null + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 53.0, + "y": 17.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_H6", + "uuid": "15e0c797-b521-4b3e-afe2-81b1c36bba9b", + "name": "tip_box_64_tipspot_H6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 53.0, + "y": 8.0, + "z": 0.0 + }, + "position3d": { + "x": 53.0, + "y": 8.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_H6#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": null, + "tip_state": null, + "pending_tip": null + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 53.0, + "y": 8.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_A7", + "uuid": "c2fa5dd8-9c83-4376-b309-824bb34faf1b", + "name": "tip_box_64_tipspot_A7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 62.0, + "y": 71.0, + "z": 0.0 + }, + "position3d": { + "x": 62.0, + "y": 71.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_A7#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": null, + "tip_state": null, + "pending_tip": null + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 62.0, + "y": 71.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_B7", + "uuid": "a68b87dd-5a79-4a61-8be6-2eaa94ac62e1", + "name": "tip_box_64_tipspot_B7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 62.0, + "y": 62.0, + "z": 0.0 + }, + "position3d": { + "x": 62.0, + "y": 62.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_B7#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": null, + "tip_state": null, + "pending_tip": null + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 62.0, + "y": 62.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_C7", + "uuid": "b980f5c2-5f25-4f38-b73c-20f994448248", + "name": "tip_box_64_tipspot_C7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 62.0, + "y": 53.0, + "z": 0.0 + }, + "position3d": { + "x": 62.0, + "y": 53.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_C7#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": null, + "tip_state": null, + "pending_tip": null + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 62.0, + "y": 53.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_D7", + "uuid": "bb1721cf-5afe-40df-a9f8-6214fbc5b1f2", + "name": "tip_box_64_tipspot_D7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 62.0, + "y": 44.0, + "z": 0.0 + }, + "position3d": { + "x": 62.0, + "y": 44.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_D7#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": null, + "tip_state": null, + "pending_tip": null + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 62.0, + "y": 44.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_E7", + "uuid": "b6a16aca-03b3-434c-8ce6-ae1b7914a7b4", + "name": "tip_box_64_tipspot_E7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 62.0, + "y": 35.0, + "z": 0.0 + }, + "position3d": { + "x": 62.0, + "y": 35.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_E7#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": null, + "tip_state": null, + "pending_tip": null + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 62.0, + "y": 35.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_F7", + "uuid": "fa933140-02cf-4f62-9e82-645cfe924d0d", + "name": "tip_box_64_tipspot_F7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 62.0, + "y": 26.0, + "z": 0.0 + }, + "position3d": { + "x": 62.0, + "y": 26.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_F7#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": null, + "tip_state": null, + "pending_tip": null + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 62.0, + "y": 26.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_G7", + "uuid": "92de398e-19aa-4cb1-ba5f-1279fccf589b", + "name": "tip_box_64_tipspot_G7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 62.0, + "y": 17.0, + "z": 0.0 + }, + "position3d": { + "x": 62.0, + "y": 17.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_G7#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": null, + "tip_state": null, + "pending_tip": null + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 62.0, + "y": 17.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_H7", + "uuid": "d1eebd88-9806-49f8-aa23-2eb06a21cf29", + "name": "tip_box_64_tipspot_H7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 62.0, + "y": 8.0, + "z": 0.0 + }, + "position3d": { + "x": 62.0, + "y": 8.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_H7#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": null, + "tip_state": null, + "pending_tip": null + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 62.0, + "y": 8.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_A8", + "uuid": "923bafc6-8059-4227-95ab-f7c9833cab84", + "name": "tip_box_64_tipspot_A8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 71.0, + "y": 71.0, + "z": 0.0 + }, + "position3d": { + "x": 71.0, + "y": 71.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_A8#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": null, + "tip_state": null, + "pending_tip": null + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 71.0, + "y": 71.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_B8", + "uuid": "ef500dbf-db48-4da7-9476-c278f0bc45c9", + "name": "tip_box_64_tipspot_B8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 71.0, + "y": 62.0, + "z": 0.0 + }, + "position3d": { + "x": 71.0, + "y": 62.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_B8#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": null, + "tip_state": null, + "pending_tip": null + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 71.0, + "y": 62.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_C8", + "uuid": "0c90de91-35be-4c3a-8597-95dd0b9a9624", + "name": "tip_box_64_tipspot_C8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 71.0, + "y": 53.0, + "z": 0.0 + }, + "position3d": { + "x": 71.0, + "y": 53.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_C8#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": null, + "tip_state": null, + "pending_tip": null + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 71.0, + "y": 53.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_D8", + "uuid": "38b326cb-631d-46db-99d6-f9a7bc3b914b", + "name": "tip_box_64_tipspot_D8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 71.0, + "y": 44.0, + "z": 0.0 + }, + "position3d": { + "x": 71.0, + "y": 44.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_D8#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": null, + "tip_state": null, + "pending_tip": null + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 71.0, + "y": 44.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_E8", + "uuid": "9ba9a28a-d049-4de7-9cec-c96d75b76159", + "name": "tip_box_64_tipspot_E8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 71.0, + "y": 35.0, + "z": 0.0 + }, + "position3d": { + "x": 71.0, + "y": 35.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_E8#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": null, + "tip_state": null, + "pending_tip": null + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 71.0, + "y": 35.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_F8", + "uuid": "401d8a55-abfe-4903-a0ef-3b9ef4a130d6", + "name": "tip_box_64_tipspot_F8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 71.0, + "y": 26.0, + "z": 0.0 + }, + "position3d": { + "x": 71.0, + "y": 26.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_F8#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": null, + "tip_state": null, + "pending_tip": null + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 71.0, + "y": 26.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_G8", + "uuid": "010aedfa-b59c-4f88-8321-a8a6ebf420b5", + "name": "tip_box_64_tipspot_G8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 71.0, + "y": 17.0, + "z": 0.0 + }, + "position3d": { + "x": 71.0, + "y": 17.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_G8#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": null, + "tip_state": null, + "pending_tip": null + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 71.0, + "y": 17.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_H8", + "uuid": "58d4828e-f45a-4e73-a3a9-5df80c2eba20", + "name": "tip_box_64_tipspot_H8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 71.0, + "y": 8.0, + "z": 0.0 + }, + "position3d": { + "x": 71.0, + "y": 8.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_H8#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": null, + "tip_state": null, + "pending_tip": null + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 71.0, + "y": 8.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_A9", + "uuid": "c3dac5be-fa13-4ce9-8e4c-b46d7db1aac2", + "name": "tip_box_64_tipspot_A9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 80.0, + "y": 71.0, + "z": 0.0 + }, + "position3d": { + "x": 80.0, + "y": 71.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_A9#1", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_A9#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + }, + "tip_state": { + "thing": "tip_box_64_tipspot_A9#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_A9#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 80.0, + "y": 71.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_B9", + "uuid": "5388af9d-cd45-4c8e-8c9e-b55d661a3dd9", + "name": "tip_box_64_tipspot_B9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 80.0, + "y": 62.0, + "z": 0.0 + }, + "position3d": { + "x": 80.0, + "y": 62.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_B9#1", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_B9#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + }, + "tip_state": { + "thing": "tip_box_64_tipspot_B9#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_B9#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 80.0, + "y": 62.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_C9", + "uuid": "59850975-dd6c-4346-a3de-b2e5c04bace4", + "name": "tip_box_64_tipspot_C9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 80.0, + "y": 53.0, + "z": 0.0 + }, + "position3d": { + "x": 80.0, + "y": 53.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_C9#1", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_C9#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + }, + "tip_state": { + "thing": "tip_box_64_tipspot_C9#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_C9#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 80.0, + "y": 53.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_D9", + "uuid": "2ee33c06-5c5c-4a5d-8563-4e448cb3cb24", + "name": "tip_box_64_tipspot_D9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 80.0, + "y": 44.0, + "z": 0.0 + }, + "position3d": { + "x": 80.0, + "y": 44.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_D9#1", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_D9#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + }, + "tip_state": { + "thing": "tip_box_64_tipspot_D9#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_D9#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 80.0, + "y": 44.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_E9", + "uuid": "2df920d1-ec81-4c64-b903-1722e6683030", + "name": "tip_box_64_tipspot_E9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 80.0, + "y": 35.0, + "z": 0.0 + }, + "position3d": { + "x": 80.0, + "y": 35.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_E9#1", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_E9#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + }, + "tip_state": { + "thing": "tip_box_64_tipspot_E9#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_E9#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 80.0, + "y": 35.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_F9", + "uuid": "348b1e17-98ee-4a86-b1ad-be0fa4af684c", + "name": "tip_box_64_tipspot_F9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 80.0, + "y": 26.0, + "z": 0.0 + }, + "position3d": { + "x": 80.0, + "y": 26.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_F9#1", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_F9#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + }, + "tip_state": { + "thing": "tip_box_64_tipspot_F9#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_F9#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 80.0, + "y": 26.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_G9", + "uuid": "d987a408-f9c7-41d0-a980-2419b0d78fd6", + "name": "tip_box_64_tipspot_G9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 80.0, + "y": 17.0, + "z": 0.0 + }, + "position3d": { + "x": 80.0, + "y": 17.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_G9#1", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_G9#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + }, + "tip_state": { + "thing": "tip_box_64_tipspot_G9#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_G9#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 80.0, + "y": 17.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_H9", + "uuid": "11f06979-4f50-4e48-b696-0a5a0101600d", + "name": "tip_box_64_tipspot_H9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 80.0, + "y": 8.0, + "z": 0.0 + }, + "position3d": { + "x": 80.0, + "y": 8.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_H9#1", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_H9#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + }, + "tip_state": { + "thing": "tip_box_64_tipspot_H9#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_H9#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 80.0, + "y": 8.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_A10", + "uuid": "f4ee87f9-719a-43a0-92cf-e389949a77e4", + "name": "tip_box_64_tipspot_A10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 89.0, + "y": 71.0, + "z": 0.0 + }, + "position3d": { + "x": 89.0, + "y": 71.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_A10#1", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_A10#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + }, + "tip_state": { + "thing": "tip_box_64_tipspot_A10#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_A10#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 89.0, + "y": 71.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_B10", + "uuid": "655fbf65-5fcf-40f7-abc3-a7f6b4c92efd", + "name": "tip_box_64_tipspot_B10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 89.0, + "y": 62.0, + "z": 0.0 + }, + "position3d": { + "x": 89.0, + "y": 62.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_B10#1", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_B10#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + }, + "tip_state": { + "thing": "tip_box_64_tipspot_B10#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_B10#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 89.0, + "y": 62.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_C10", + "uuid": "9bce6d37-274e-4fea-869c-eb3210ea2126", + "name": "tip_box_64_tipspot_C10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 89.0, + "y": 53.0, + "z": 0.0 + }, + "position3d": { + "x": 89.0, + "y": 53.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_C10#1", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_C10#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + }, + "tip_state": { + "thing": "tip_box_64_tipspot_C10#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_C10#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 89.0, + "y": 53.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_D10", + "uuid": "e9cbc344-9408-4175-a8cc-96e121428051", + "name": "tip_box_64_tipspot_D10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 89.0, + "y": 44.0, + "z": 0.0 + }, + "position3d": { + "x": 89.0, + "y": 44.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_D10#1", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_D10#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + }, + "tip_state": { + "thing": "tip_box_64_tipspot_D10#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_D10#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 89.0, + "y": 44.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_E10", + "uuid": "0b3cacbe-10e8-4ceb-90df-9bb5bb6b0d45", + "name": "tip_box_64_tipspot_E10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 89.0, + "y": 35.0, + "z": 0.0 + }, + "position3d": { + "x": 89.0, + "y": 35.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_E10#1", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_E10#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + }, + "tip_state": { + "thing": "tip_box_64_tipspot_E10#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_E10#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 89.0, + "y": 35.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_F10", + "uuid": "461b95fe-b97e-4b53-b113-24200fb568c1", + "name": "tip_box_64_tipspot_F10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 89.0, + "y": 26.0, + "z": 0.0 + }, + "position3d": { + "x": 89.0, + "y": 26.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_F10#1", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_F10#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + }, + "tip_state": { + "thing": "tip_box_64_tipspot_F10#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_F10#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 89.0, + "y": 26.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_G10", + "uuid": "fa1c9bc5-766a-4d03-ad69-623adc89a806", + "name": "tip_box_64_tipspot_G10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 89.0, + "y": 17.0, + "z": 0.0 + }, + "position3d": { + "x": 89.0, + "y": 17.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_G10#1", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_G10#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + }, + "tip_state": { + "thing": "tip_box_64_tipspot_G10#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_G10#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 89.0, + "y": 17.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_H10", + "uuid": "4fa9343f-58b8-4aa2-88a5-77ef52e36d51", + "name": "tip_box_64_tipspot_H10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 89.0, + "y": 8.0, + "z": 0.0 + }, + "position3d": { + "x": 89.0, + "y": 8.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_H10#1", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_H10#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + }, + "tip_state": { + "thing": "tip_box_64_tipspot_H10#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_H10#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 89.0, + "y": 8.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_A11", + "uuid": "851b04fc-45a7-4731-a236-87da30f2569d", + "name": "tip_box_64_tipspot_A11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 98.0, + "y": 71.0, + "z": 0.0 + }, + "position3d": { + "x": 98.0, + "y": 71.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_A11#1", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_A11#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + }, + "tip_state": { + "thing": "tip_box_64_tipspot_A11#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_A11#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 98.0, + "y": 71.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_B11", + "uuid": "2f6d4a06-4693-4d5c-9596-7d9ec89e1ee7", + "name": "tip_box_64_tipspot_B11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 98.0, + "y": 62.0, + "z": 0.0 + }, + "position3d": { + "x": 98.0, + "y": 62.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_B11#1", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_B11#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + }, + "tip_state": { + "thing": "tip_box_64_tipspot_B11#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_B11#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 98.0, + "y": 62.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_C11", + "uuid": "fbb1ae0f-d7c3-4ae3-bd9e-5cf6cc4b1fd3", + "name": "tip_box_64_tipspot_C11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 98.0, + "y": 53.0, + "z": 0.0 + }, + "position3d": { + "x": 98.0, + "y": 53.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_C11#1", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_C11#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + }, + "tip_state": { + "thing": "tip_box_64_tipspot_C11#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_C11#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 98.0, + "y": 53.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_D11", + "uuid": "5f00bb26-8bb9-499b-b32f-0758476bd5e0", + "name": "tip_box_64_tipspot_D11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 98.0, + "y": 44.0, + "z": 0.0 + }, + "position3d": { + "x": 98.0, + "y": 44.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_D11#1", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_D11#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + }, + "tip_state": { + "thing": "tip_box_64_tipspot_D11#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_D11#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 98.0, + "y": 44.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_E11", + "uuid": "7a7648f6-2e4c-4907-a740-3c146a9c2f0c", + "name": "tip_box_64_tipspot_E11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 98.0, + "y": 35.0, + "z": 0.0 + }, + "position3d": { + "x": 98.0, + "y": 35.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_E11#1", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_E11#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + }, + "tip_state": { + "thing": "tip_box_64_tipspot_E11#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_E11#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 98.0, + "y": 35.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_F11", + "uuid": "b77e5feb-8ed1-4661-8359-7f2389986117", + "name": "tip_box_64_tipspot_F11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 98.0, + "y": 26.0, + "z": 0.0 + }, + "position3d": { + "x": 98.0, + "y": 26.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_F11#1", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_F11#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + }, + "tip_state": { + "thing": "tip_box_64_tipspot_F11#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_F11#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 98.0, + "y": 26.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_G11", + "uuid": "cdf71ef7-d859-4d6d-8043-3c7fe3994b69", + "name": "tip_box_64_tipspot_G11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 98.0, + "y": 17.0, + "z": 0.0 + }, + "position3d": { + "x": 98.0, + "y": 17.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_G11#1", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_G11#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + }, + "tip_state": { + "thing": "tip_box_64_tipspot_G11#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_G11#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 98.0, + "y": 17.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_H11", + "uuid": "f37e399d-5a9f-4125-9a83-0da1424f7595", + "name": "tip_box_64_tipspot_H11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 98.0, + "y": 8.0, + "z": 0.0 + }, + "position3d": { + "x": 98.0, + "y": 8.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_H11#1", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_H11#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + }, + "tip_state": { + "thing": "tip_box_64_tipspot_H11#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_H11#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 98.0, + "y": 8.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_A12", + "uuid": "dd5cb656-e166-4aa8-ac1a-0fc8407307bf", + "name": "tip_box_64_tipspot_A12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 107.0, + "y": 71.0, + "z": 0.0 + }, + "position3d": { + "x": 107.0, + "y": 71.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_A12#1", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_A12#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + }, + "tip_state": { + "thing": "tip_box_64_tipspot_A12#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_A12#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 107.0, + "y": 71.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_B12", + "uuid": "9a0dcc3f-1b16-4a87-b765-8c86719ee655", + "name": "tip_box_64_tipspot_B12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 107.0, + "y": 62.0, + "z": 0.0 + }, + "position3d": { + "x": 107.0, + "y": 62.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_B12#1", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_B12#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + }, + "tip_state": { + "thing": "tip_box_64_tipspot_B12#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_B12#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 107.0, + "y": 62.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_C12", + "uuid": "a46b7343-9e46-4dc2-9d70-157e69005e49", + "name": "tip_box_64_tipspot_C12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 107.0, + "y": 53.0, + "z": 0.0 + }, + "position3d": { + "x": 107.0, + "y": 53.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_C12#1", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_C12#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + }, + "tip_state": { + "thing": "tip_box_64_tipspot_C12#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_C12#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 107.0, + "y": 53.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_D12", + "uuid": "720d6f86-5d23-493e-ac82-5697c7f8389c", + "name": "tip_box_64_tipspot_D12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 107.0, + "y": 44.0, + "z": 0.0 + }, + "position3d": { + "x": 107.0, + "y": 44.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_D12#1", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_D12#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + }, + "tip_state": { + "thing": "tip_box_64_tipspot_D12#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_D12#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 107.0, + "y": 44.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_E12", + "uuid": "2a0709d8-e22f-49b1-b3ac-5d60d7d37cba", + "name": "tip_box_64_tipspot_E12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 107.0, + "y": 35.0, + "z": 0.0 + }, + "position3d": { + "x": 107.0, + "y": 35.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_E12#1", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_E12#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + }, + "tip_state": { + "thing": "tip_box_64_tipspot_E12#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_E12#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 107.0, + "y": 35.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_F12", + "uuid": "4b2ddd84-69db-47c8-8709-e40f98cf8647", + "name": "tip_box_64_tipspot_F12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 107.0, + "y": 26.0, + "z": 0.0 + }, + "position3d": { + "x": 107.0, + "y": 26.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_F12#1", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_F12#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + }, + "tip_state": { + "thing": "tip_box_64_tipspot_F12#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_F12#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 107.0, + "y": 26.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_G12", + "uuid": "c26c9091-5b3c-4a01-a3c0-2dabb4ce0255", + "name": "tip_box_64_tipspot_G12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 107.0, + "y": 17.0, + "z": 0.0 + }, + "position3d": { + "x": 107.0, + "y": 17.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_G12#1", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_G12#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + }, + "tip_state": { + "thing": "tip_box_64_tipspot_G12#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_G12#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 107.0, + "y": 17.0, + "z": 0.0 + } + }, + { + "id": "tip_box_64_tipspot_H12", + "uuid": "f062485f-cda8-4387-9eee-64b101c8c13e", + "name": "tip_box_64_tipspot_H12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "6acef56b-f00e-4bce-ae06-90ac516b3ef1", + "type": "tip_spot", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 107.0, + "y": 8.0, + "z": 0.0 + }, + "position3d": { + "x": 107.0, + "y": 8.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "TipSpot", + "size_x": 10, + "size_y": 10, + "size_z": 0.0, + "category": "tip_spot", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "prototype_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_H12#1", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "data": { + "tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_H12#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + }, + "tip_state": { + "thing": "tip_box_64_tipspot_H12#0", + "max_volume": 1000, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "pending_tip": { + "type": "Tip", + "name": "tip_box_64_tipspot_H12#0", + "total_tip_length": 20.0, + "has_filter": false, + "maximal_volume": 1000, + "fitting_depth": 8.0 + } + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 107.0, + "y": 8.0, + "z": 0.0 + } + }, + { + "id": "waste_tip_box", + "uuid": "a788ad85-6228-4c19-8b64-f44b9cf0e1a3", + "name": "waste_tip_box", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "24b64c33-ddb4-409e-8b71-aa3721c52a0f", + "type": "trash", + "class": "", + "pose": { + "size": { + "depth": 60.0, + "width": 127.8, + "height": 85.5 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 778.0, + "y": 622.0, + "z": 0.0 + }, + "position3d": { + "x": 778.0, + "y": 622.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "WasteTipBox", + "size_x": 127.8, + "size_y": 85.5, + "size_z": 60.0, + "category": "trash", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": "Infinity", + "material_z_thickness": 0, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "waste_tip_box_volume_tracker", + "max_volume": "Infinity", + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 778.0, + "y": 622.0, + "z": 0.0 + } + } + ] + }, + { + "id": "YB_20ml_fenyeping", + "category": [ + "yb3", + "YB_bottle" + ], + "class": { + "module": "unilabos.resources.bioyond.YB_bottles:YB_20ml_fenyeping", + "type": "pylabrobot" + }, + "description": "YB_20ml_fenyeping", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/bioyond/YB_bottle.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "YB_20ml_fenyeping", + "uuid": "5a852c3d-2c0b-43c7-b777-c5983e7d8d42", + "name": "YB_20ml_fenyeping", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 65.0, + "width": 30.0, + "height": 30.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 30.0, + "size_y": 30.0, + "size_z": 65.0, + "category": "container", + "model": "YB_20ml_fenyeping", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 20000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 30.0, + "height": 65.0 + }, + "data": { + "thing": "YB_20ml_fenyeping_volume_tracker", + "max_volume": 20000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + ] + }, + { + "id": "YB_5ml_fenyeping", + "category": [ + "yb3", + "YB_bottle" + ], + "class": { + "module": "unilabos.resources.bioyond.YB_bottles:YB_5ml_fenyeping", + "type": "pylabrobot" + }, + "description": "YB_5ml_fenyeping", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/bioyond/YB_bottle.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "YB_5ml_fenyeping", + "uuid": "21fcbf0c-359c-4471-8aee-16ea5ed1876a", + "name": "YB_5ml_fenyeping", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 20.0, + "height": 20.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 20.0, + "size_y": 20.0, + "size_z": 50.0, + "category": "container", + "model": "YB_5ml_fenyeping", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 5000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 20.0, + "height": 50.0 + }, + "data": { + "thing": "YB_5ml_fenyeping_volume_tracker", + "max_volume": 5000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + ] + }, + { + "id": "YB_jia_yang_tou_da", + "category": [ + "yb3", + "YB_bottle" + ], + "class": { + "module": "unilabos.resources.bioyond.YB_bottles:YB_jia_yang_tou_da", + "type": "pylabrobot" + }, + "description": "YB_jia_yang_tou_da", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/bioyond/YB_bottle.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "YB_jia_yang_tou_da", + "uuid": "aa687881-2565-4729-8852-a443406055ea", + "name": "YB_jia_yang_tou_da", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 100.0, + "width": 20.0, + "height": 20.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 20.0, + "size_y": 20.0, + "size_z": 100.0, + "category": "container", + "model": "YB_jia_yang_tou_da", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 30000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 20.0, + "height": 100.0 + }, + "data": { + "thing": "YB_jia_yang_tou_da_volume_tracker", + "max_volume": 30000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + ] + }, + { + "id": "YB_pei_ye_da_Bottle", + "category": [ + "yb3", + "YB_bottle" + ], + "class": { + "module": "unilabos.resources.bioyond.YB_bottles:YB_pei_ye_da_Bottle", + "type": "pylabrobot" + }, + "description": "YB_pei_ye_da_Bottle", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/bioyond/YB_bottle.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "YB_pei_ye_da_Bottle", + "uuid": "1608801d-7ce0-4c36-ad25-9217345157c0", + "name": "YB_pei_ye_da_Bottle", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 100.0, + "width": 55.0, + "height": 55.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 55.0, + "size_y": 55.0, + "size_z": 100.0, + "category": "container", + "model": "YB_pei_ye_da_Bottle", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 150000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 55.0, + "height": 100.0 + }, + "data": { + "thing": "YB_pei_ye_da_Bottle_volume_tracker", + "max_volume": 150000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + ] + }, + { + "id": "YB_pei_ye_xiao_Bottle", + "category": [ + "yb3", + "YB_bottle" + ], + "class": { + "module": "unilabos.resources.bioyond.YB_bottles:YB_pei_ye_xiao_Bottle", + "type": "pylabrobot" + }, + "description": "YB_pei_ye_xiao_Bottle", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/bioyond/YB_bottle.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "YB_pei_ye_xiao_Bottle", + "uuid": "7c564f85-1789-4556-9ddf-aa231f729372", + "name": "YB_pei_ye_xiao_Bottle", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 60.0, + "width": 35.0, + "height": 35.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 35.0, + "size_y": 35.0, + "size_z": 60.0, + "category": "container", + "model": "YB_pei_ye_xiao_Bottle", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 30000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 35.0, + "height": 60.0 + }, + "data": { + "thing": "YB_pei_ye_xiao_Bottle_volume_tracker", + "max_volume": 30000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + ] + }, + { + "id": "YB_qiang_tou", + "category": [ + "yb3", + "YB_bottle" + ], + "class": { + "module": "unilabos.resources.bioyond.YB_bottles:YB_qiang_tou", + "type": "pylabrobot" + }, + "description": "YB_qiang_tou", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/bioyond/YB_bottle.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "YB_qiang_tou", + "uuid": "18652f26-08e3-47a7-9bd9-d4cd5735f800", + "name": "YB_qiang_tou", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + ] + }, + { + "id": "YB_ye_Bottle", + "category": [ + "yb3", + "YB_bottle_carriers", + "YB_bottle" + ], + "class": { + "module": "unilabos.resources.bioyond.YB_bottles:YB_ye_Bottle", + "type": "pylabrobot" + }, + "description": "YB_ye_Bottle", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/bioyond/YB_bottle.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "YB_ye_Bottle", + "uuid": "5437b1f9-1ff4-4fd6-9a48-f09afbf31d6a", + "name": "YB_ye_Bottle", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 70.0, + "width": 40.0, + "height": 40.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 40.0, + "size_y": 40.0, + "size_z": 70.0, + "category": "container", + "model": "YB_ye_Bottle", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 40.0, + "height": 70.0 + }, + "data": { + "thing": "YB_ye_Bottle_volume_tracker", + "max_volume": 50000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + ] + }, + { + "id": "YB_100ml_yeti", + "category": [ + "yb3", + "YB_bottle_carriers" + ], + "class": { + "module": "unilabos.resources.bioyond.YB_bottle_carriers:YB_100ml_yeti", + "type": "pylabrobot" + }, + "description": "YB_100ml_yeti", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/bioyond/YB_bottle_carriers.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "YB_100ml_yeti", + "uuid": "e5f009e9-2160-48b0-a896-759c2ffa79f2", + "name": "YB_100ml_yeti", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "bottle_carrier", + "class": "", + "pose": { + "size": { + "depth": 20.0, + "width": 127.8, + "height": 85.5 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "BottleCarrier", + "size_x": 127.8, + "size_y": 85.5, + "size_z": 20.0, + "category": "bottle_carrier", + "model": "YB_100ml_yeti", + "barcode": null, + "preferred_pickup_location": null, + "num_items_x": 1, + "num_items_y": 1, + "num_items_z": 1, + "layout": "x-y", + "sites": [ + { + "label": "0", + "visible": true, + "occupied_by": "YB_100ml_yeti_flask_1", + "position": { + "x": 33.9, + "y": 12.75, + "z": 5.0 + }, + "size": { + "width": 60.0, + "height": 60.0, + "depth": 0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + } + ] + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "YB_100ml_yeti_flask_1", + "uuid": "af9f9676-df43-4e69-b687-1c0477ba4bb0", + "name": "YB_100ml_yeti_flask_1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e5f009e9-2160-48b0-a896-759c2ffa79f2", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 90.0, + "width": 50.0, + "height": 50.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 33.9, + "y": 12.75, + "z": 5.0 + }, + "position3d": { + "x": 33.9, + "y": 12.75, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 50.0, + "size_y": 50.0, + "size_z": 90.0, + "category": "container", + "model": "YB_100ml_yeti", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 50.0, + "height": 90.0 + }, + "data": { + "thing": "YB_100ml_yeti_flask_1_volume_tracker", + "max_volume": 100000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 33.9, + "y": 12.75, + "z": 5.0 + } + } + ] + }, + { + "id": "YB_20ml_fenyepingban", + "category": [ + "yb3", + "YB_bottle_carriers" + ], + "class": { + "module": "unilabos.resources.bioyond.YB_bottle_carriers:YB_20ml_fenyepingban", + "type": "pylabrobot" + }, + "description": "YB_20ml_fenyepingban", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/bioyond/YB_bottle_carriers.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "YB_20ml_fenyepingban", + "uuid": "e6da0858-c75d-461f-b41b-517e383c5a41", + "name": "YB_20ml_fenyepingban", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "bottle_carrier", + "class": "", + "pose": { + "size": { + "depth": 70.0, + "width": 127.8, + "height": 85.5 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "BottleCarrier", + "size_x": 127.8, + "size_y": 85.5, + "size_z": 70.0, + "category": "bottle_carrier", + "model": "YB_20ml_fenyepingban", + "barcode": null, + "preferred_pickup_location": null, + "num_items_x": 4, + "num_items_y": 2, + "num_items_z": 1, + "layout": "x-y", + "sites": [ + { + "label": "A1", + "visible": true, + "occupied_by": "YB_20ml_fenyepingban_vial_A1", + "position": { + "x": -9.1, + "y": 50.25, + "z": 5.0 + }, + "size": { + "width": 20.0, + "height": 20.0, + "depth": 70.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "B1", + "visible": true, + "occupied_by": "YB_20ml_fenyepingban_vial_A2", + "position": { + "x": -9.1, + "y": 15.25, + "z": 5.0 + }, + "size": { + "width": 20.0, + "height": 20.0, + "depth": 70.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "A2", + "visible": true, + "occupied_by": "YB_20ml_fenyepingban_vial_A3", + "position": { + "x": 32.9, + "y": 50.25, + "z": 5.0 + }, + "size": { + "width": 20.0, + "height": 20.0, + "depth": 70.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "B2", + "visible": true, + "occupied_by": "YB_20ml_fenyepingban_vial_A4", + "position": { + "x": 32.9, + "y": 15.25, + "z": 5.0 + }, + "size": { + "width": 20.0, + "height": 20.0, + "depth": 70.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "A3", + "visible": true, + "occupied_by": "YB_20ml_fenyepingban_vial_B1", + "position": { + "x": 74.9, + "y": 50.25, + "z": 5.0 + }, + "size": { + "width": 20.0, + "height": 20.0, + "depth": 70.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "B3", + "visible": true, + "occupied_by": "YB_20ml_fenyepingban_vial_B2", + "position": { + "x": 74.9, + "y": 15.25, + "z": 5.0 + }, + "size": { + "width": 20.0, + "height": 20.0, + "depth": 70.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "A4", + "visible": true, + "occupied_by": "YB_20ml_fenyepingban_vial_B3", + "position": { + "x": 116.9, + "y": 50.25, + "z": 5.0 + }, + "size": { + "width": 20.0, + "height": 20.0, + "depth": 70.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "B4", + "visible": true, + "occupied_by": "YB_20ml_fenyepingban_vial_B4", + "position": { + "x": 116.9, + "y": 15.25, + "z": 5.0 + }, + "size": { + "width": 20.0, + "height": 20.0, + "depth": 70.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + } + ] + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "YB_20ml_fenyepingban_vial_A1", + "uuid": "61f4da2b-b4a9-4054-ac30-43ddb1d147cf", + "name": "YB_20ml_fenyepingban_vial_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e6da0858-c75d-461f-b41b-517e383c5a41", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 65.0, + "width": 30.0, + "height": 30.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": -9.1, + "y": 50.25, + "z": 5.0 + }, + "position3d": { + "x": -9.1, + "y": 50.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 30.0, + "size_y": 30.0, + "size_z": 65.0, + "category": "container", + "model": "YB_20ml_fenyeping", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 20000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 30.0, + "height": 65.0 + }, + "data": { + "thing": "YB_20ml_fenyepingban_vial_A1_volume_tracker", + "max_volume": 20000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": -9.1, + "y": 50.25, + "z": 5.0 + } + }, + { + "id": "YB_20ml_fenyepingban_vial_A2", + "uuid": "9e229d38-c4b5-489b-89a5-84593db206e0", + "name": "YB_20ml_fenyepingban_vial_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e6da0858-c75d-461f-b41b-517e383c5a41", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 65.0, + "width": 30.0, + "height": 30.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": -9.1, + "y": 15.25, + "z": 5.0 + }, + "position3d": { + "x": -9.1, + "y": 15.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 30.0, + "size_y": 30.0, + "size_z": 65.0, + "category": "container", + "model": "YB_20ml_fenyeping", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 20000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 30.0, + "height": 65.0 + }, + "data": { + "thing": "YB_20ml_fenyepingban_vial_A2_volume_tracker", + "max_volume": 20000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": -9.1, + "y": 15.25, + "z": 5.0 + } + }, + { + "id": "YB_20ml_fenyepingban_vial_A3", + "uuid": "48d5aeb5-7e15-45ef-9da6-1de0c5fab788", + "name": "YB_20ml_fenyepingban_vial_A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e6da0858-c75d-461f-b41b-517e383c5a41", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 65.0, + "width": 30.0, + "height": 30.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 32.9, + "y": 50.25, + "z": 5.0 + }, + "position3d": { + "x": 32.9, + "y": 50.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 30.0, + "size_y": 30.0, + "size_z": 65.0, + "category": "container", + "model": "YB_20ml_fenyeping", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 20000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 30.0, + "height": 65.0 + }, + "data": { + "thing": "YB_20ml_fenyepingban_vial_A3_volume_tracker", + "max_volume": 20000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 32.9, + "y": 50.25, + "z": 5.0 + } + }, + { + "id": "YB_20ml_fenyepingban_vial_A4", + "uuid": "8e73466a-bfe3-4996-90cb-7191763fd2b9", + "name": "YB_20ml_fenyepingban_vial_A4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e6da0858-c75d-461f-b41b-517e383c5a41", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 65.0, + "width": 30.0, + "height": 30.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 32.9, + "y": 15.25, + "z": 5.0 + }, + "position3d": { + "x": 32.9, + "y": 15.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 30.0, + "size_y": 30.0, + "size_z": 65.0, + "category": "container", + "model": "YB_20ml_fenyeping", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 20000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 30.0, + "height": 65.0 + }, + "data": { + "thing": "YB_20ml_fenyepingban_vial_A4_volume_tracker", + "max_volume": 20000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 32.9, + "y": 15.25, + "z": 5.0 + } + }, + { + "id": "YB_20ml_fenyepingban_vial_B1", + "uuid": "113f658b-6fa6-4d01-bf35-c6f813276ece", + "name": "YB_20ml_fenyepingban_vial_B1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e6da0858-c75d-461f-b41b-517e383c5a41", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 65.0, + "width": 30.0, + "height": 30.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.9, + "y": 50.25, + "z": 5.0 + }, + "position3d": { + "x": 74.9, + "y": 50.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 30.0, + "size_y": 30.0, + "size_z": 65.0, + "category": "container", + "model": "YB_20ml_fenyeping", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 20000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 30.0, + "height": 65.0 + }, + "data": { + "thing": "YB_20ml_fenyepingban_vial_B1_volume_tracker", + "max_volume": 20000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.9, + "y": 50.25, + "z": 5.0 + } + }, + { + "id": "YB_20ml_fenyepingban_vial_B2", + "uuid": "1a267e8d-51df-4ca4-9740-7aed12b03689", + "name": "YB_20ml_fenyepingban_vial_B2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e6da0858-c75d-461f-b41b-517e383c5a41", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 65.0, + "width": 30.0, + "height": 30.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 74.9, + "y": 15.25, + "z": 5.0 + }, + "position3d": { + "x": 74.9, + "y": 15.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 30.0, + "size_y": 30.0, + "size_z": 65.0, + "category": "container", + "model": "YB_20ml_fenyeping", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 20000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 30.0, + "height": 65.0 + }, + "data": { + "thing": "YB_20ml_fenyepingban_vial_B2_volume_tracker", + "max_volume": 20000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 74.9, + "y": 15.25, + "z": 5.0 + } + }, + { + "id": "YB_20ml_fenyepingban_vial_B3", + "uuid": "c5ff23d0-ee24-4439-bab7-699143ada0ff", + "name": "YB_20ml_fenyepingban_vial_B3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e6da0858-c75d-461f-b41b-517e383c5a41", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 65.0, + "width": 30.0, + "height": 30.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 116.9, + "y": 50.25, + "z": 5.0 + }, + "position3d": { + "x": 116.9, + "y": 50.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 30.0, + "size_y": 30.0, + "size_z": 65.0, + "category": "container", + "model": "YB_20ml_fenyeping", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 20000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 30.0, + "height": 65.0 + }, + "data": { + "thing": "YB_20ml_fenyepingban_vial_B3_volume_tracker", + "max_volume": 20000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 116.9, + "y": 50.25, + "z": 5.0 + } + }, + { + "id": "YB_20ml_fenyepingban_vial_B4", + "uuid": "f93377fb-f225-4033-8005-b7aa874f48be", + "name": "YB_20ml_fenyepingban_vial_B4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "e6da0858-c75d-461f-b41b-517e383c5a41", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 65.0, + "width": 30.0, + "height": 30.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 116.9, + "y": 15.25, + "z": 5.0 + }, + "position3d": { + "x": 116.9, + "y": 15.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 30.0, + "size_y": 30.0, + "size_z": 65.0, + "category": "container", + "model": "YB_20ml_fenyeping", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 20000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 30.0, + "height": 65.0 + }, + "data": { + "thing": "YB_20ml_fenyepingban_vial_B4_volume_tracker", + "max_volume": 20000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 116.9, + "y": 15.25, + "z": 5.0 + } + } + ] + }, + { + "id": "YB_5ml_fenyepingban", + "category": [ + "yb3", + "YB_bottle_carriers" + ], + "class": { + "module": "unilabos.resources.bioyond.YB_bottle_carriers:YB_5ml_fenyepingban", + "type": "pylabrobot" + }, + "description": "YB_5ml_fenyepingban", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/bioyond/YB_bottle_carriers.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "YB_5ml_fenyepingban", + "uuid": "c7b42f18-ca85-407b-95e5-8afc77cec09f", + "name": "YB_5ml_fenyepingban", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "bottle_carrier", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 127.8, + "height": 85.5 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "BottleCarrier", + "size_x": 127.8, + "size_y": 85.5, + "size_z": 50.0, + "category": "bottle_carrier", + "model": "YB_5ml_fenyepingban", + "barcode": null, + "preferred_pickup_location": null, + "num_items_x": 4, + "num_items_y": 2, + "num_items_z": 1, + "layout": "x-y", + "sites": [ + { + "label": "A1", + "visible": true, + "occupied_by": "YB_5ml_fenyepingban_vial_A1", + "position": { + "x": -6.6, + "y": 52.75, + "z": 5.0 + }, + "size": { + "width": 15.0, + "height": 15.0, + "depth": 50.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "B1", + "visible": true, + "occupied_by": "YB_5ml_fenyepingban_vial_A2", + "position": { + "x": -6.6, + "y": 17.75, + "z": 5.0 + }, + "size": { + "width": 15.0, + "height": 15.0, + "depth": 50.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "A2", + "visible": true, + "occupied_by": "YB_5ml_fenyepingban_vial_A3", + "position": { + "x": 35.4, + "y": 52.75, + "z": 5.0 + }, + "size": { + "width": 15.0, + "height": 15.0, + "depth": 50.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "B2", + "visible": true, + "occupied_by": "YB_5ml_fenyepingban_vial_A4", + "position": { + "x": 35.4, + "y": 17.75, + "z": 5.0 + }, + "size": { + "width": 15.0, + "height": 15.0, + "depth": 50.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "A3", + "visible": true, + "occupied_by": "YB_5ml_fenyepingban_vial_B1", + "position": { + "x": 77.4, + "y": 52.75, + "z": 5.0 + }, + "size": { + "width": 15.0, + "height": 15.0, + "depth": 50.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "B3", + "visible": true, + "occupied_by": "YB_5ml_fenyepingban_vial_B2", + "position": { + "x": 77.4, + "y": 17.75, + "z": 5.0 + }, + "size": { + "width": 15.0, + "height": 15.0, + "depth": 50.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "A4", + "visible": true, + "occupied_by": "YB_5ml_fenyepingban_vial_B3", + "position": { + "x": 119.4, + "y": 52.75, + "z": 5.0 + }, + "size": { + "width": 15.0, + "height": 15.0, + "depth": 50.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "B4", + "visible": true, + "occupied_by": "YB_5ml_fenyepingban_vial_B4", + "position": { + "x": 119.4, + "y": 17.75, + "z": 5.0 + }, + "size": { + "width": 15.0, + "height": 15.0, + "depth": 50.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + } + ] + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "YB_5ml_fenyepingban_vial_A1", + "uuid": "1a57177d-4a44-4d25-b166-76f0c0e90810", + "name": "YB_5ml_fenyepingban_vial_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "c7b42f18-ca85-407b-95e5-8afc77cec09f", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 20.0, + "height": 20.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": -6.6, + "y": 52.75, + "z": 5.0 + }, + "position3d": { + "x": -6.6, + "y": 52.75, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 20.0, + "size_y": 20.0, + "size_z": 50.0, + "category": "container", + "model": "YB_5ml_fenyeping", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 5000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 20.0, + "height": 50.0 + }, + "data": { + "thing": "YB_5ml_fenyepingban_vial_A1_volume_tracker", + "max_volume": 5000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": -6.6, + "y": 52.75, + "z": 5.0 + } + }, + { + "id": "YB_5ml_fenyepingban_vial_A2", + "uuid": "6a11fae7-dad0-47db-b0ad-17558e47a73d", + "name": "YB_5ml_fenyepingban_vial_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "c7b42f18-ca85-407b-95e5-8afc77cec09f", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 20.0, + "height": 20.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": -6.6, + "y": 17.75, + "z": 5.0 + }, + "position3d": { + "x": -6.6, + "y": 17.75, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 20.0, + "size_y": 20.0, + "size_z": 50.0, + "category": "container", + "model": "YB_5ml_fenyeping", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 5000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 20.0, + "height": 50.0 + }, + "data": { + "thing": "YB_5ml_fenyepingban_vial_A2_volume_tracker", + "max_volume": 5000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": -6.6, + "y": 17.75, + "z": 5.0 + } + }, + { + "id": "YB_5ml_fenyepingban_vial_A3", + "uuid": "82225209-1607-42de-99c2-e0cba9db6035", + "name": "YB_5ml_fenyepingban_vial_A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "c7b42f18-ca85-407b-95e5-8afc77cec09f", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 20.0, + "height": 20.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 35.4, + "y": 52.75, + "z": 5.0 + }, + "position3d": { + "x": 35.4, + "y": 52.75, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 20.0, + "size_y": 20.0, + "size_z": 50.0, + "category": "container", + "model": "YB_5ml_fenyeping", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 5000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 20.0, + "height": 50.0 + }, + "data": { + "thing": "YB_5ml_fenyepingban_vial_A3_volume_tracker", + "max_volume": 5000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 35.4, + "y": 52.75, + "z": 5.0 + } + }, + { + "id": "YB_5ml_fenyepingban_vial_A4", + "uuid": "0e2edfba-cbeb-483c-bdc9-6b9492ee9911", + "name": "YB_5ml_fenyepingban_vial_A4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "c7b42f18-ca85-407b-95e5-8afc77cec09f", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 20.0, + "height": 20.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 35.4, + "y": 17.75, + "z": 5.0 + }, + "position3d": { + "x": 35.4, + "y": 17.75, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 20.0, + "size_y": 20.0, + "size_z": 50.0, + "category": "container", + "model": "YB_5ml_fenyeping", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 5000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 20.0, + "height": 50.0 + }, + "data": { + "thing": "YB_5ml_fenyepingban_vial_A4_volume_tracker", + "max_volume": 5000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 35.4, + "y": 17.75, + "z": 5.0 + } + }, + { + "id": "YB_5ml_fenyepingban_vial_B1", + "uuid": "e4d6bc7d-417f-42c5-9877-fd13ebb95e45", + "name": "YB_5ml_fenyepingban_vial_B1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "c7b42f18-ca85-407b-95e5-8afc77cec09f", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 20.0, + "height": 20.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 77.4, + "y": 52.75, + "z": 5.0 + }, + "position3d": { + "x": 77.4, + "y": 52.75, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 20.0, + "size_y": 20.0, + "size_z": 50.0, + "category": "container", + "model": "YB_5ml_fenyeping", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 5000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 20.0, + "height": 50.0 + }, + "data": { + "thing": "YB_5ml_fenyepingban_vial_B1_volume_tracker", + "max_volume": 5000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 77.4, + "y": 52.75, + "z": 5.0 + } + }, + { + "id": "YB_5ml_fenyepingban_vial_B2", + "uuid": "c2dc13be-2aba-4788-ab1e-45c6071e0398", + "name": "YB_5ml_fenyepingban_vial_B2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "c7b42f18-ca85-407b-95e5-8afc77cec09f", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 20.0, + "height": 20.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 77.4, + "y": 17.75, + "z": 5.0 + }, + "position3d": { + "x": 77.4, + "y": 17.75, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 20.0, + "size_y": 20.0, + "size_z": 50.0, + "category": "container", + "model": "YB_5ml_fenyeping", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 5000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 20.0, + "height": 50.0 + }, + "data": { + "thing": "YB_5ml_fenyepingban_vial_B2_volume_tracker", + "max_volume": 5000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 77.4, + "y": 17.75, + "z": 5.0 + } + }, + { + "id": "YB_5ml_fenyepingban_vial_B3", + "uuid": "65257518-ed30-40df-80ad-9c72822fca0e", + "name": "YB_5ml_fenyepingban_vial_B3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "c7b42f18-ca85-407b-95e5-8afc77cec09f", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 20.0, + "height": 20.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 119.4, + "y": 52.75, + "z": 5.0 + }, + "position3d": { + "x": 119.4, + "y": 52.75, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 20.0, + "size_y": 20.0, + "size_z": 50.0, + "category": "container", + "model": "YB_5ml_fenyeping", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 5000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 20.0, + "height": 50.0 + }, + "data": { + "thing": "YB_5ml_fenyepingban_vial_B3_volume_tracker", + "max_volume": 5000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 119.4, + "y": 52.75, + "z": 5.0 + } + }, + { + "id": "YB_5ml_fenyepingban_vial_B4", + "uuid": "1e7f73c8-1e3c-421e-b73c-f0615d70ad2c", + "name": "YB_5ml_fenyepingban_vial_B4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "c7b42f18-ca85-407b-95e5-8afc77cec09f", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 20.0, + "height": 20.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 119.4, + "y": 17.75, + "z": 5.0 + }, + "position3d": { + "x": 119.4, + "y": 17.75, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 20.0, + "size_y": 20.0, + "size_z": 50.0, + "category": "container", + "model": "YB_5ml_fenyeping", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 5000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 20.0, + "height": 50.0 + }, + "data": { + "thing": "YB_5ml_fenyepingban_vial_B4_volume_tracker", + "max_volume": 5000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 119.4, + "y": 17.75, + "z": 5.0 + } + } + ] + }, + { + "id": "YB_6StockCarrier", + "category": [ + "yb3", + "YB_bottle_carriers" + ], + "class": { + "module": "unilabos.resources.bioyond.YB_bottle_carriers:YB_6StockCarrier", + "type": "pylabrobot" + }, + "description": "YB_6StockCarrier", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/bioyond/YB_bottle_carriers.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "YB_6StockCarrier", + "uuid": "3220e716-5ced-40e9-86d3-93ee9ffbc936", + "name": "YB_6StockCarrier", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "bottle_carrier", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 127.8, + "height": 85.5 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "BottleCarrier", + "size_x": 127.8, + "size_y": 85.5, + "size_z": 50.0, + "category": "bottle_carrier", + "model": "6StockCarrier", + "barcode": null, + "preferred_pickup_location": null, + "num_items_x": 3, + "num_items_y": 2, + "num_items_z": 1, + "layout": "x-y", + "sites": [ + { + "label": "A1", + "visible": true, + "occupied_by": null, + "position": { + "x": 11.9, + "y": 50.25, + "z": 5.0 + }, + "size": { + "width": 20.0, + "height": 20.0, + "depth": 50.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "B1", + "visible": true, + "occupied_by": null, + "position": { + "x": 11.9, + "y": 15.25, + "z": 5.0 + }, + "size": { + "width": 20.0, + "height": 20.0, + "depth": 50.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "A2", + "visible": true, + "occupied_by": null, + "position": { + "x": 53.9, + "y": 50.25, + "z": 5.0 + }, + "size": { + "width": 20.0, + "height": 20.0, + "depth": 50.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "B2", + "visible": true, + "occupied_by": null, + "position": { + "x": 53.9, + "y": 15.25, + "z": 5.0 + }, + "size": { + "width": 20.0, + "height": 20.0, + "depth": 50.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "A3", + "visible": true, + "occupied_by": null, + "position": { + "x": 95.9, + "y": 50.25, + "z": 5.0 + }, + "size": { + "width": 20.0, + "height": 20.0, + "depth": 50.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "B3", + "visible": true, + "occupied_by": null, + "position": { + "x": 95.9, + "y": 15.25, + "z": 5.0 + }, + "size": { + "width": 20.0, + "height": 20.0, + "depth": 50.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + } + ] + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + ] + }, + { + "id": "YB_6VialCarrier", + "category": [ + "yb3", + "YB_bottle_carriers" + ], + "class": { + "module": "unilabos.resources.bioyond.YB_bottle_carriers:YB_6VialCarrier", + "type": "pylabrobot" + }, + "description": "YB_6VialCarrier", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/bioyond/YB_bottle_carriers.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "YB_6VialCarrier", + "uuid": "1d7f9c47-1c07-4a18-b82c-07d149a26b19", + "name": "YB_6VialCarrier", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "bottle_carrier", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 127.8, + "height": 85.5 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "BottleCarrier", + "size_x": 127.8, + "size_y": 85.5, + "size_z": 50.0, + "category": "bottle_carrier", + "model": "6VialCarrier", + "barcode": null, + "preferred_pickup_location": null, + "num_items_x": 3, + "num_items_y": 2, + "num_items_z": 1, + "layout": "x-y", + "sites": [ + { + "label": "A1", + "visible": true, + "occupied_by": null, + "position": { + "x": 6.9, + "y": 45.25, + "z": 5.0 + }, + "size": { + "width": 30.0, + "height": 30.0, + "depth": 50.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "B1", + "visible": true, + "occupied_by": null, + "position": { + "x": 6.9, + "y": 10.25, + "z": 5.0 + }, + "size": { + "width": 30.0, + "height": 30.0, + "depth": 50.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "A2", + "visible": true, + "occupied_by": null, + "position": { + "x": 48.9, + "y": 45.25, + "z": 5.0 + }, + "size": { + "width": 30.0, + "height": 30.0, + "depth": 50.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "B2", + "visible": true, + "occupied_by": null, + "position": { + "x": 48.9, + "y": 10.25, + "z": 5.0 + }, + "size": { + "width": 30.0, + "height": 30.0, + "depth": 50.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "A3", + "visible": true, + "occupied_by": null, + "position": { + "x": 90.9, + "y": 45.25, + "z": 5.0 + }, + "size": { + "width": 30.0, + "height": 30.0, + "depth": 50.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "B3", + "visible": true, + "occupied_by": null, + "position": { + "x": 90.9, + "y": 10.25, + "z": 5.0 + }, + "size": { + "width": 30.0, + "height": 30.0, + "depth": 50.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + } + ] + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + ] + }, + { + "id": "YB_gao_nian_ye_Bottle", + "category": [ + "yb3", + "YB_bottle_carriers" + ], + "class": { + "module": "unilabos.resources.bioyond.YB_bottles:YB_gao_nian_ye_Bottle", + "type": "pylabrobot" + }, + "description": "YB_gao_nian_ye_Bottle", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/bioyond/YB_bottle_carriers.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "YB_gao_nian_ye_Bottle", + "uuid": "be6b901e-8c87-4336-8311-abc7c8cbc28b", + "name": "YB_gao_nian_ye_Bottle", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 70.0, + "width": 40.0, + "height": 40.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 40.0, + "size_y": 40.0, + "size_z": 70.0, + "category": "container", + "model": "High_Viscosity_Liquid", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 40.0, + "height": 70.0 + }, + "data": { + "thing": "YB_gao_nian_ye_Bottle_volume_tracker", + "max_volume": 50000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + ] + }, + { + "id": "YB_gaonianye", + "category": [ + "yb3", + "YB_bottle_carriers" + ], + "class": { + "module": "unilabos.resources.bioyond.YB_bottle_carriers:YB_gaonianye", + "type": "pylabrobot" + }, + "description": "YB_gaonianye", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/bioyond/YB_bottle_carriers.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "YB_gaonianye", + "uuid": "7198cff5-bd5e-4d30-bd7d-d928670a9560", + "name": "YB_gaonianye", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "bottle_carrier", + "class": "", + "pose": { + "size": { + "depth": 20.0, + "width": 127.8, + "height": 85.5 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "BottleCarrier", + "size_x": 127.8, + "size_y": 85.5, + "size_z": 20.0, + "category": "bottle_carrier", + "model": "YB_gaonianye", + "barcode": null, + "preferred_pickup_location": null, + "num_items_x": 1, + "num_items_y": 1, + "num_items_z": 1, + "layout": "x-y", + "sites": [ + { + "label": "0", + "visible": true, + "occupied_by": "YB_gaonianye_flask_1", + "position": { + "x": 33.9, + "y": 12.75, + "z": 5.0 + }, + "size": { + "width": 60.0, + "height": 60.0, + "depth": 0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + } + ] + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "YB_gaonianye_flask_1", + "uuid": "c2010f38-4884-4daa-8bae-23f1735250a2", + "name": "YB_gaonianye_flask_1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "7198cff5-bd5e-4d30-bd7d-d928670a9560", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 70.0, + "width": 40.0, + "height": 40.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 33.9, + "y": 12.75, + "z": 5.0 + }, + "position3d": { + "x": 33.9, + "y": 12.75, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 40.0, + "size_y": 40.0, + "size_z": 70.0, + "category": "container", + "model": "High_Viscosity_Liquid", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 40.0, + "height": 70.0 + }, + "data": { + "thing": "YB_gaonianye_flask_1_volume_tracker", + "max_volume": 50000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 33.9, + "y": 12.75, + "z": 5.0 + } + } + ] + }, + { + "id": "YB_jia_yang_tou_da_Carrier", + "category": [ + "yb3", + "YB_bottle_carriers" + ], + "class": { + "module": "unilabos.resources.bioyond.YB_bottle_carriers:YB_jia_yang_tou_da_Carrier", + "type": "pylabrobot" + }, + "description": "YB_jia_yang_tou_da_Carrier", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/bioyond/YB_bottle_carriers.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "YB_jia_yang_tou_da_Carrier", + "uuid": "be6b727a-01c8-4670-8da7-585e4b7e4f3a", + "name": "YB_jia_yang_tou_da_Carrier", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "bottle_carrier", + "class": "", + "pose": { + "size": { + "depth": 95.0, + "width": 127.8, + "height": 85.5 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "BottleCarrier", + "size_x": 127.8, + "size_y": 85.5, + "size_z": 95.0, + "category": "bottle_carrier", + "model": "YB_jia_yang_tou_da_Carrier", + "barcode": null, + "preferred_pickup_location": null, + "num_items_x": 1, + "num_items_y": 1, + "num_items_z": 1, + "layout": "x-y", + "sites": [ + { + "label": "A1", + "visible": true, + "occupied_by": "YB_jia_yang_tou_da_Carrier_head_1", + "position": { + "x": 46.4, + "y": 25.25, + "z": 5.0 + }, + "size": { + "width": 35.0, + "height": 35.0, + "depth": 95.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + } + ] + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "YB_jia_yang_tou_da_Carrier_head_1", + "uuid": "22c78442-fb81-4d3b-8edf-cd94491d11a9", + "name": "YB_jia_yang_tou_da_Carrier_head_1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "be6b727a-01c8-4670-8da7-585e4b7e4f3a", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 100.0, + "width": 20.0, + "height": 20.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 46.4, + "y": 25.25, + "z": 5.0 + }, + "position3d": { + "x": 46.4, + "y": 25.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 20.0, + "size_y": 20.0, + "size_z": 100.0, + "category": "container", + "model": "YB_jia_yang_tou_da", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 30000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 20.0, + "height": 100.0 + }, + "data": { + "thing": "YB_jia_yang_tou_da_Carrier_head_1_volume_tracker", + "max_volume": 30000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 46.4, + "y": 25.25, + "z": 5.0 + } + } + ] + }, + { + "id": "YB_peiyepingdaban", + "category": [ + "yb3", + "YB_bottle_carriers" + ], + "class": { + "module": "unilabos.resources.bioyond.YB_bottle_carriers:YB_peiyepingdaban", + "type": "pylabrobot" + }, + "description": "YB_peiyepingdaban", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/bioyond/YB_bottle_carriers.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "YB_peiyepingdaban", + "uuid": "fa74298d-f4f2-4607-b173-686f1fe841fc", + "name": "YB_peiyepingdaban", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "bottle_carrier", + "class": "", + "pose": { + "size": { + "depth": 95.0, + "width": 127.8, + "height": 85.5 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "BottleCarrier", + "size_x": 127.8, + "size_y": 85.5, + "size_z": 95.0, + "category": "bottle_carrier", + "model": "YB_peiyepingdaban", + "barcode": null, + "preferred_pickup_location": null, + "num_items_x": 2, + "num_items_y": 2, + "num_items_z": 1, + "layout": "x-y", + "sites": [ + { + "label": "A1", + "visible": true, + "occupied_by": "YB_peiyepingdaban_bottle_A1", + "position": { + "x": 6.4, + "y": 45.25, + "z": 5.0 + }, + "size": { + "width": 55.0, + "height": 55.0, + "depth": 95.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "B1", + "visible": true, + "occupied_by": "YB_peiyepingdaban_bottle_A2", + "position": { + "x": 6.4, + "y": -14.75, + "z": 5.0 + }, + "size": { + "width": 55.0, + "height": 55.0, + "depth": 95.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "A2", + "visible": true, + "occupied_by": "YB_peiyepingdaban_bottle_B1", + "position": { + "x": 66.4, + "y": 45.25, + "z": 5.0 + }, + "size": { + "width": 55.0, + "height": 55.0, + "depth": 95.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "B2", + "visible": true, + "occupied_by": "YB_peiyepingdaban_bottle_B2", + "position": { + "x": 66.4, + "y": -14.75, + "z": 5.0 + }, + "size": { + "width": 55.0, + "height": 55.0, + "depth": 95.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + } + ] + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "YB_peiyepingdaban_bottle_A1", + "uuid": "77979b7a-f1f8-4e37-a1d9-535ab7a2aca2", + "name": "YB_peiyepingdaban_bottle_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fa74298d-f4f2-4607-b173-686f1fe841fc", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 100.0, + "width": 55.0, + "height": 55.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 6.4, + "y": 45.25, + "z": 5.0 + }, + "position3d": { + "x": 6.4, + "y": 45.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 55.0, + "size_y": 55.0, + "size_z": 100.0, + "category": "container", + "model": "YB_pei_ye_da_Bottle", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 150000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 55.0, + "height": 100.0 + }, + "data": { + "thing": "YB_peiyepingdaban_bottle_A1_volume_tracker", + "max_volume": 150000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 6.4, + "y": 45.25, + "z": 5.0 + } + }, + { + "id": "YB_peiyepingdaban_bottle_A2", + "uuid": "30c2abaa-58b3-4097-844b-7b756203f705", + "name": "YB_peiyepingdaban_bottle_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fa74298d-f4f2-4607-b173-686f1fe841fc", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 100.0, + "width": 55.0, + "height": 55.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 6.4, + "y": -14.75, + "z": 5.0 + }, + "position3d": { + "x": 6.4, + "y": -14.75, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 55.0, + "size_y": 55.0, + "size_z": 100.0, + "category": "container", + "model": "YB_pei_ye_da_Bottle", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 150000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 55.0, + "height": 100.0 + }, + "data": { + "thing": "YB_peiyepingdaban_bottle_A2_volume_tracker", + "max_volume": 150000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 6.4, + "y": -14.75, + "z": 5.0 + } + }, + { + "id": "YB_peiyepingdaban_bottle_B1", + "uuid": "a66c0953-1ef6-4f17-90f3-e719b0719f3f", + "name": "YB_peiyepingdaban_bottle_B1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fa74298d-f4f2-4607-b173-686f1fe841fc", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 100.0, + "width": 55.0, + "height": 55.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 66.4, + "y": 45.25, + "z": 5.0 + }, + "position3d": { + "x": 66.4, + "y": 45.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 55.0, + "size_y": 55.0, + "size_z": 100.0, + "category": "container", + "model": "YB_pei_ye_da_Bottle", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 150000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 55.0, + "height": 100.0 + }, + "data": { + "thing": "YB_peiyepingdaban_bottle_B1_volume_tracker", + "max_volume": 150000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 66.4, + "y": 45.25, + "z": 5.0 + } + }, + { + "id": "YB_peiyepingdaban_bottle_B2", + "uuid": "89a82f43-bb71-44a1-8d4e-09b974216118", + "name": "YB_peiyepingdaban_bottle_B2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fa74298d-f4f2-4607-b173-686f1fe841fc", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 100.0, + "width": 55.0, + "height": 55.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 66.4, + "y": -14.75, + "z": 5.0 + }, + "position3d": { + "x": 66.4, + "y": -14.75, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 55.0, + "size_y": 55.0, + "size_z": 100.0, + "category": "container", + "model": "YB_pei_ye_da_Bottle", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 150000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 55.0, + "height": 100.0 + }, + "data": { + "thing": "YB_peiyepingdaban_bottle_B2_volume_tracker", + "max_volume": 150000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 66.4, + "y": -14.75, + "z": 5.0 + } + } + ] + }, + { + "id": "YB_peiyepingxiaoban", + "category": [ + "yb3", + "YB_bottle_carriers" + ], + "class": { + "module": "unilabos.resources.bioyond.YB_bottle_carriers:YB_peiyepingxiaoban", + "type": "pylabrobot" + }, + "description": "YB_peiyepingxiaoban", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/bioyond/YB_bottle_carriers.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "YB_peiyepingxiaoban", + "uuid": "eeeb1a0e-3e0c-4384-bb7a-7a187e405d8d", + "name": "YB_peiyepingxiaoban", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "bottle_carrier", + "class": "", + "pose": { + "size": { + "depth": 65.0, + "width": 127.8, + "height": 85.5 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "BottleCarrier", + "size_x": 127.8, + "size_y": 85.5, + "size_z": 65.0, + "category": "bottle_carrier", + "model": "YB_peiyepingxiaoban", + "barcode": null, + "preferred_pickup_location": null, + "num_items_x": 4, + "num_items_y": 2, + "num_items_z": 1, + "layout": "x-y", + "sites": [ + { + "label": "A1", + "visible": true, + "occupied_by": "YB_peiyepingxiaoban_bottle_A1", + "position": { + "x": -16.6, + "y": 42.75, + "z": 5.0 + }, + "size": { + "width": 35.0, + "height": 35.0, + "depth": 65.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "B1", + "visible": true, + "occupied_by": "YB_peiyepingxiaoban_bottle_A2", + "position": { + "x": -16.6, + "y": 7.75, + "z": 5.0 + }, + "size": { + "width": 35.0, + "height": 35.0, + "depth": 65.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "A2", + "visible": true, + "occupied_by": "YB_peiyepingxiaoban_bottle_A3", + "position": { + "x": 25.4, + "y": 42.75, + "z": 5.0 + }, + "size": { + "width": 35.0, + "height": 35.0, + "depth": 65.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "B2", + "visible": true, + "occupied_by": "YB_peiyepingxiaoban_bottle_A4", + "position": { + "x": 25.4, + "y": 7.75, + "z": 5.0 + }, + "size": { + "width": 35.0, + "height": 35.0, + "depth": 65.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "A3", + "visible": true, + "occupied_by": "YB_peiyepingxiaoban_bottle_B1", + "position": { + "x": 67.4, + "y": 42.75, + "z": 5.0 + }, + "size": { + "width": 35.0, + "height": 35.0, + "depth": 65.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "B3", + "visible": true, + "occupied_by": "YB_peiyepingxiaoban_bottle_B2", + "position": { + "x": 67.4, + "y": 7.75, + "z": 5.0 + }, + "size": { + "width": 35.0, + "height": 35.0, + "depth": 65.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "A4", + "visible": true, + "occupied_by": "YB_peiyepingxiaoban_bottle_B3", + "position": { + "x": 109.4, + "y": 42.75, + "z": 5.0 + }, + "size": { + "width": 35.0, + "height": 35.0, + "depth": 65.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "B4", + "visible": true, + "occupied_by": "YB_peiyepingxiaoban_bottle_B4", + "position": { + "x": 109.4, + "y": 7.75, + "z": 5.0 + }, + "size": { + "width": 35.0, + "height": 35.0, + "depth": 65.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + } + ] + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "YB_peiyepingxiaoban_bottle_A1", + "uuid": "9aa5869d-0381-4dd3-a215-37821885c91b", + "name": "YB_peiyepingxiaoban_bottle_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "eeeb1a0e-3e0c-4384-bb7a-7a187e405d8d", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 60.0, + "width": 35.0, + "height": 35.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": -16.6, + "y": 42.75, + "z": 5.0 + }, + "position3d": { + "x": -16.6, + "y": 42.75, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 35.0, + "size_y": 35.0, + "size_z": 60.0, + "category": "container", + "model": "YB_pei_ye_xiao_Bottle", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 30000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 35.0, + "height": 60.0 + }, + "data": { + "thing": "YB_peiyepingxiaoban_bottle_A1_volume_tracker", + "max_volume": 30000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": -16.6, + "y": 42.75, + "z": 5.0 + } + }, + { + "id": "YB_peiyepingxiaoban_bottle_A2", + "uuid": "964dd9ed-afec-4b53-ae17-01aa245d6af8", + "name": "YB_peiyepingxiaoban_bottle_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "eeeb1a0e-3e0c-4384-bb7a-7a187e405d8d", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 60.0, + "width": 35.0, + "height": 35.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": -16.6, + "y": 7.75, + "z": 5.0 + }, + "position3d": { + "x": -16.6, + "y": 7.75, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 35.0, + "size_y": 35.0, + "size_z": 60.0, + "category": "container", + "model": "YB_pei_ye_xiao_Bottle", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 30000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 35.0, + "height": 60.0 + }, + "data": { + "thing": "YB_peiyepingxiaoban_bottle_A2_volume_tracker", + "max_volume": 30000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": -16.6, + "y": 7.75, + "z": 5.0 + } + }, + { + "id": "YB_peiyepingxiaoban_bottle_A3", + "uuid": "9c2b7847-c629-4348-99b8-cf03f3891067", + "name": "YB_peiyepingxiaoban_bottle_A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "eeeb1a0e-3e0c-4384-bb7a-7a187e405d8d", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 60.0, + "width": 35.0, + "height": 35.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 25.4, + "y": 42.75, + "z": 5.0 + }, + "position3d": { + "x": 25.4, + "y": 42.75, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 35.0, + "size_y": 35.0, + "size_z": 60.0, + "category": "container", + "model": "YB_pei_ye_xiao_Bottle", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 30000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 35.0, + "height": 60.0 + }, + "data": { + "thing": "YB_peiyepingxiaoban_bottle_A3_volume_tracker", + "max_volume": 30000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 25.4, + "y": 42.75, + "z": 5.0 + } + }, + { + "id": "YB_peiyepingxiaoban_bottle_A4", + "uuid": "03f024c8-b0dd-49e5-a26e-e23f87fbe290", + "name": "YB_peiyepingxiaoban_bottle_A4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "eeeb1a0e-3e0c-4384-bb7a-7a187e405d8d", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 60.0, + "width": 35.0, + "height": 35.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 25.4, + "y": 7.75, + "z": 5.0 + }, + "position3d": { + "x": 25.4, + "y": 7.75, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 35.0, + "size_y": 35.0, + "size_z": 60.0, + "category": "container", + "model": "YB_pei_ye_xiao_Bottle", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 30000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 35.0, + "height": 60.0 + }, + "data": { + "thing": "YB_peiyepingxiaoban_bottle_A4_volume_tracker", + "max_volume": 30000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 25.4, + "y": 7.75, + "z": 5.0 + } + }, + { + "id": "YB_peiyepingxiaoban_bottle_B1", + "uuid": "3722e95c-bb75-464f-8580-40a65913e1fc", + "name": "YB_peiyepingxiaoban_bottle_B1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "eeeb1a0e-3e0c-4384-bb7a-7a187e405d8d", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 60.0, + "width": 35.0, + "height": 35.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 67.4, + "y": 42.75, + "z": 5.0 + }, + "position3d": { + "x": 67.4, + "y": 42.75, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 35.0, + "size_y": 35.0, + "size_z": 60.0, + "category": "container", + "model": "YB_pei_ye_xiao_Bottle", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 30000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 35.0, + "height": 60.0 + }, + "data": { + "thing": "YB_peiyepingxiaoban_bottle_B1_volume_tracker", + "max_volume": 30000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 67.4, + "y": 42.75, + "z": 5.0 + } + }, + { + "id": "YB_peiyepingxiaoban_bottle_B2", + "uuid": "0590107f-0e1a-4b1a-9fd3-bb044728bed4", + "name": "YB_peiyepingxiaoban_bottle_B2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "eeeb1a0e-3e0c-4384-bb7a-7a187e405d8d", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 60.0, + "width": 35.0, + "height": 35.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 67.4, + "y": 7.75, + "z": 5.0 + }, + "position3d": { + "x": 67.4, + "y": 7.75, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 35.0, + "size_y": 35.0, + "size_z": 60.0, + "category": "container", + "model": "YB_pei_ye_xiao_Bottle", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 30000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 35.0, + "height": 60.0 + }, + "data": { + "thing": "YB_peiyepingxiaoban_bottle_B2_volume_tracker", + "max_volume": 30000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 67.4, + "y": 7.75, + "z": 5.0 + } + }, + { + "id": "YB_peiyepingxiaoban_bottle_B3", + "uuid": "556a03b2-4ebc-423f-8e9a-179dac874964", + "name": "YB_peiyepingxiaoban_bottle_B3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "eeeb1a0e-3e0c-4384-bb7a-7a187e405d8d", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 60.0, + "width": 35.0, + "height": 35.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.4, + "y": 42.75, + "z": 5.0 + }, + "position3d": { + "x": 109.4, + "y": 42.75, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 35.0, + "size_y": 35.0, + "size_z": 60.0, + "category": "container", + "model": "YB_pei_ye_xiao_Bottle", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 30000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 35.0, + "height": 60.0 + }, + "data": { + "thing": "YB_peiyepingxiaoban_bottle_B3_volume_tracker", + "max_volume": 30000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.4, + "y": 42.75, + "z": 5.0 + } + }, + { + "id": "YB_peiyepingxiaoban_bottle_B4", + "uuid": "be8ebd02-e30c-4304-9b5f-29cf9d876038", + "name": "YB_peiyepingxiaoban_bottle_B4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "eeeb1a0e-3e0c-4384-bb7a-7a187e405d8d", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 60.0, + "width": 35.0, + "height": 35.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 109.4, + "y": 7.75, + "z": 5.0 + }, + "position3d": { + "x": 109.4, + "y": 7.75, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 35.0, + "size_y": 35.0, + "size_z": 60.0, + "category": "container", + "model": "YB_pei_ye_xiao_Bottle", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 30000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 35.0, + "height": 60.0 + }, + "data": { + "thing": "YB_peiyepingxiaoban_bottle_B4_volume_tracker", + "max_volume": 30000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 109.4, + "y": 7.75, + "z": 5.0 + } + } + ] + }, + { + "id": "YB_qiang_tou_he", + "category": [ + "yb3", + "YB_bottle_carriers" + ], + "class": { + "module": "unilabos.resources.bioyond.YB_bottle_carriers:YB_qiang_tou_he", + "type": "pylabrobot" + }, + "description": "YB_qiang_tou_he", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/bioyond/YB_bottle_carriers.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "YB_qiang_tou_he", + "uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "name": "YB_qiang_tou_he", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "bottle_carrier", + "class": "", + "pose": { + "size": { + "depth": 55.0, + "width": 127.8, + "height": 85.5 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "BottleCarrier", + "size_x": 127.8, + "size_y": 85.5, + "size_z": 55.0, + "category": "bottle_carrier", + "model": "YB_qiang_tou_he", + "barcode": null, + "preferred_pickup_location": null, + "num_items_x": 12, + "num_items_y": 8, + "num_items_z": 1, + "layout": "x-y", + "sites": [ + { + "label": "A1", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_A1", + "position": { + "x": 9.4, + "y": 69.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "B1", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_A2", + "position": { + "x": 9.4, + "y": 60.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "C1", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_A3", + "position": { + "x": 9.4, + "y": 51.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "D1", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_A4", + "position": { + "x": 9.4, + "y": 42.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "E1", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_A5", + "position": { + "x": 9.4, + "y": 33.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "F1", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_A6", + "position": { + "x": 9.4, + "y": 24.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "G1", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_A7", + "position": { + "x": 9.4, + "y": 15.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "H1", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_A8", + "position": { + "x": 9.4, + "y": 6.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "A2", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_A9", + "position": { + "x": 18.4, + "y": 69.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "B2", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_A10", + "position": { + "x": 18.4, + "y": 60.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "C2", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_A11", + "position": { + "x": 18.4, + "y": 51.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "D2", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_A12", + "position": { + "x": 18.4, + "y": 42.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "E2", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_B1", + "position": { + "x": 18.4, + "y": 33.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "F2", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_B2", + "position": { + "x": 18.4, + "y": 24.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "G2", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_B3", + "position": { + "x": 18.4, + "y": 15.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "H2", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_B4", + "position": { + "x": 18.4, + "y": 6.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "A3", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_B5", + "position": { + "x": 27.4, + "y": 69.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "B3", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_B6", + "position": { + "x": 27.4, + "y": 60.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "C3", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_B7", + "position": { + "x": 27.4, + "y": 51.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "D3", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_B8", + "position": { + "x": 27.4, + "y": 42.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "E3", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_B9", + "position": { + "x": 27.4, + "y": 33.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "F3", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_B10", + "position": { + "x": 27.4, + "y": 24.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "G3", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_B11", + "position": { + "x": 27.4, + "y": 15.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "H3", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_B12", + "position": { + "x": 27.4, + "y": 6.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "A4", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_C1", + "position": { + "x": 36.4, + "y": 69.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "B4", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_C2", + "position": { + "x": 36.4, + "y": 60.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "C4", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_C3", + "position": { + "x": 36.4, + "y": 51.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "D4", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_C4", + "position": { + "x": 36.4, + "y": 42.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "E4", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_C5", + "position": { + "x": 36.4, + "y": 33.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "F4", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_C6", + "position": { + "x": 36.4, + "y": 24.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "G4", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_C7", + "position": { + "x": 36.4, + "y": 15.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "H4", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_C8", + "position": { + "x": 36.4, + "y": 6.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "A5", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_C9", + "position": { + "x": 45.4, + "y": 69.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "B5", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_C10", + "position": { + "x": 45.4, + "y": 60.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "C5", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_C11", + "position": { + "x": 45.4, + "y": 51.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "D5", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_C12", + "position": { + "x": 45.4, + "y": 42.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "E5", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_D1", + "position": { + "x": 45.4, + "y": 33.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "F5", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_D2", + "position": { + "x": 45.4, + "y": 24.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "G5", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_D3", + "position": { + "x": 45.4, + "y": 15.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "H5", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_D4", + "position": { + "x": 45.4, + "y": 6.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "A6", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_D5", + "position": { + "x": 54.4, + "y": 69.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "B6", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_D6", + "position": { + "x": 54.4, + "y": 60.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "C6", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_D7", + "position": { + "x": 54.4, + "y": 51.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "D6", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_D8", + "position": { + "x": 54.4, + "y": 42.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "E6", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_D9", + "position": { + "x": 54.4, + "y": 33.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "F6", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_D10", + "position": { + "x": 54.4, + "y": 24.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "G6", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_D11", + "position": { + "x": 54.4, + "y": 15.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "H6", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_D12", + "position": { + "x": 54.4, + "y": 6.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "A7", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_E1", + "position": { + "x": 63.4, + "y": 69.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "B7", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_E2", + "position": { + "x": 63.4, + "y": 60.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "C7", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_E3", + "position": { + "x": 63.4, + "y": 51.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "D7", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_E4", + "position": { + "x": 63.4, + "y": 42.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "E7", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_E5", + "position": { + "x": 63.4, + "y": 33.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "F7", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_E6", + "position": { + "x": 63.4, + "y": 24.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "G7", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_E7", + "position": { + "x": 63.4, + "y": 15.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "H7", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_E8", + "position": { + "x": 63.4, + "y": 6.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "A8", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_E9", + "position": { + "x": 72.4, + "y": 69.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "B8", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_E10", + "position": { + "x": 72.4, + "y": 60.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "C8", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_E11", + "position": { + "x": 72.4, + "y": 51.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "D8", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_E12", + "position": { + "x": 72.4, + "y": 42.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "E8", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_F1", + "position": { + "x": 72.4, + "y": 33.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "F8", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_F2", + "position": { + "x": 72.4, + "y": 24.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "G8", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_F3", + "position": { + "x": 72.4, + "y": 15.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "H8", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_F4", + "position": { + "x": 72.4, + "y": 6.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "A9", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_F5", + "position": { + "x": 81.4, + "y": 69.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "B9", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_F6", + "position": { + "x": 81.4, + "y": 60.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "C9", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_F7", + "position": { + "x": 81.4, + "y": 51.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "D9", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_F8", + "position": { + "x": 81.4, + "y": 42.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "E9", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_F9", + "position": { + "x": 81.4, + "y": 33.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "F9", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_F10", + "position": { + "x": 81.4, + "y": 24.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "G9", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_F11", + "position": { + "x": 81.4, + "y": 15.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "H9", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_F12", + "position": { + "x": 81.4, + "y": 6.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "A10", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_G1", + "position": { + "x": 90.4, + "y": 69.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "B10", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_G2", + "position": { + "x": 90.4, + "y": 60.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "C10", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_G3", + "position": { + "x": 90.4, + "y": 51.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "D10", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_G4", + "position": { + "x": 90.4, + "y": 42.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "E10", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_G5", + "position": { + "x": 90.4, + "y": 33.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "F10", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_G6", + "position": { + "x": 90.4, + "y": 24.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "G10", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_G7", + "position": { + "x": 90.4, + "y": 15.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "H10", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_G8", + "position": { + "x": 90.4, + "y": 6.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "A11", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_G9", + "position": { + "x": 99.4, + "y": 69.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "B11", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_G10", + "position": { + "x": 99.4, + "y": 60.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "C11", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_G11", + "position": { + "x": 99.4, + "y": 51.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "D11", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_G12", + "position": { + "x": 99.4, + "y": 42.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "E11", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_H1", + "position": { + "x": 99.4, + "y": 33.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "F11", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_H2", + "position": { + "x": 99.4, + "y": 24.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "G11", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_H3", + "position": { + "x": 99.4, + "y": 15.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "H11", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_H4", + "position": { + "x": 99.4, + "y": 6.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "A12", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_H5", + "position": { + "x": 108.4, + "y": 69.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "B12", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_H6", + "position": { + "x": 108.4, + "y": 60.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "C12", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_H7", + "position": { + "x": 108.4, + "y": 51.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "D12", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_H8", + "position": { + "x": 108.4, + "y": 42.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "E12", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_H9", + "position": { + "x": 108.4, + "y": 33.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "F12", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_H10", + "position": { + "x": 108.4, + "y": 24.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "G12", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_H11", + "position": { + "x": 108.4, + "y": 15.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + }, + { + "label": "H12", + "visible": true, + "occupied_by": "YB_qiang_tou_he_tip_H12", + "position": { + "x": 108.4, + "y": 6.25, + "z": 5.0 + }, + "size": { + "width": 10.0, + "height": 10.0, + "depth": 55.0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + } + ] + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_A1", + "uuid": "4c3a1f21-3564-43f5-9a96-ae35689ca5ad", + "name": "YB_qiang_tou_he_tip_A1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 9.4, + "y": 69.25, + "z": 5.0 + }, + "position3d": { + "x": 9.4, + "y": 69.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_A1_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 9.4, + "y": 69.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_A2", + "uuid": "156b5c44-2a23-4e7d-8fe6-43ec0424b237", + "name": "YB_qiang_tou_he_tip_A2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 9.4, + "y": 60.25, + "z": 5.0 + }, + "position3d": { + "x": 9.4, + "y": 60.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_A2_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 9.4, + "y": 60.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_A3", + "uuid": "eef14b3a-a88e-4059-a834-0dd443fa7de8", + "name": "YB_qiang_tou_he_tip_A3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 9.4, + "y": 51.25, + "z": 5.0 + }, + "position3d": { + "x": 9.4, + "y": 51.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_A3_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 9.4, + "y": 51.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_A4", + "uuid": "81c9f7e9-dc4e-495e-97f2-b5d79afcaa4d", + "name": "YB_qiang_tou_he_tip_A4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 9.4, + "y": 42.25, + "z": 5.0 + }, + "position3d": { + "x": 9.4, + "y": 42.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_A4_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 9.4, + "y": 42.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_A5", + "uuid": "cf4b41de-1670-480d-8ff8-b24e5eebd9e7", + "name": "YB_qiang_tou_he_tip_A5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 9.4, + "y": 33.25, + "z": 5.0 + }, + "position3d": { + "x": 9.4, + "y": 33.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_A5_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 9.4, + "y": 33.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_A6", + "uuid": "6faf9286-232d-47f5-aebd-4d32a97ec515", + "name": "YB_qiang_tou_he_tip_A6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 9.4, + "y": 24.25, + "z": 5.0 + }, + "position3d": { + "x": 9.4, + "y": 24.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_A6_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 9.4, + "y": 24.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_A7", + "uuid": "1c8dead2-c9ea-4a3e-8598-efbbe64a8b56", + "name": "YB_qiang_tou_he_tip_A7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 9.4, + "y": 15.25, + "z": 5.0 + }, + "position3d": { + "x": 9.4, + "y": 15.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_A7_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 9.4, + "y": 15.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_A8", + "uuid": "9ea31999-782d-4a71-8b51-6bc8c3cc5fe4", + "name": "YB_qiang_tou_he_tip_A8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 9.4, + "y": 6.25, + "z": 5.0 + }, + "position3d": { + "x": 9.4, + "y": 6.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_A8_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 9.4, + "y": 6.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_A9", + "uuid": "baaeaf8d-a464-41fd-b344-929ced4c7af6", + "name": "YB_qiang_tou_he_tip_A9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 18.4, + "y": 69.25, + "z": 5.0 + }, + "position3d": { + "x": 18.4, + "y": 69.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_A9_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 18.4, + "y": 69.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_A10", + "uuid": "d63a18a8-3b71-41b5-8f8f-39bde9e1e7bf", + "name": "YB_qiang_tou_he_tip_A10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 18.4, + "y": 60.25, + "z": 5.0 + }, + "position3d": { + "x": 18.4, + "y": 60.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_A10_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 18.4, + "y": 60.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_A11", + "uuid": "41b10588-7391-441e-af3c-753099045a44", + "name": "YB_qiang_tou_he_tip_A11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 18.4, + "y": 51.25, + "z": 5.0 + }, + "position3d": { + "x": 18.4, + "y": 51.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_A11_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 18.4, + "y": 51.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_A12", + "uuid": "f6c064fc-247c-45e5-8f31-6cd339ffd4df", + "name": "YB_qiang_tou_he_tip_A12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 18.4, + "y": 42.25, + "z": 5.0 + }, + "position3d": { + "x": 18.4, + "y": 42.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_A12_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 18.4, + "y": 42.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_B1", + "uuid": "5bab1552-9517-4215-99b3-75f4f32278df", + "name": "YB_qiang_tou_he_tip_B1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 18.4, + "y": 33.25, + "z": 5.0 + }, + "position3d": { + "x": 18.4, + "y": 33.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_B1_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 18.4, + "y": 33.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_B2", + "uuid": "8f80ea96-0bd4-4644-b359-50c183c8a777", + "name": "YB_qiang_tou_he_tip_B2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 18.4, + "y": 24.25, + "z": 5.0 + }, + "position3d": { + "x": 18.4, + "y": 24.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_B2_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 18.4, + "y": 24.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_B3", + "uuid": "7b98b530-713b-464e-a51e-c11546561de5", + "name": "YB_qiang_tou_he_tip_B3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 18.4, + "y": 15.25, + "z": 5.0 + }, + "position3d": { + "x": 18.4, + "y": 15.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_B3_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 18.4, + "y": 15.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_B4", + "uuid": "4e63c375-66a1-4c9f-8ff3-1aa3448bc717", + "name": "YB_qiang_tou_he_tip_B4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 18.4, + "y": 6.25, + "z": 5.0 + }, + "position3d": { + "x": 18.4, + "y": 6.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_B4_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 18.4, + "y": 6.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_B5", + "uuid": "c8d3d099-4603-4a30-b39f-d1f915c28318", + "name": "YB_qiang_tou_he_tip_B5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 27.4, + "y": 69.25, + "z": 5.0 + }, + "position3d": { + "x": 27.4, + "y": 69.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_B5_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 27.4, + "y": 69.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_B6", + "uuid": "74ab5506-b02f-4b76-b4c3-60edabaa7fb4", + "name": "YB_qiang_tou_he_tip_B6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 27.4, + "y": 60.25, + "z": 5.0 + }, + "position3d": { + "x": 27.4, + "y": 60.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_B6_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 27.4, + "y": 60.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_B7", + "uuid": "6568bfdc-e4c2-4249-978a-6774a9429887", + "name": "YB_qiang_tou_he_tip_B7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 27.4, + "y": 51.25, + "z": 5.0 + }, + "position3d": { + "x": 27.4, + "y": 51.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_B7_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 27.4, + "y": 51.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_B8", + "uuid": "6a73a003-2399-4947-9d7f-9aa38a36c655", + "name": "YB_qiang_tou_he_tip_B8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 27.4, + "y": 42.25, + "z": 5.0 + }, + "position3d": { + "x": 27.4, + "y": 42.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_B8_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 27.4, + "y": 42.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_B9", + "uuid": "00dc02c0-8592-4d66-ab2b-182fd273e48d", + "name": "YB_qiang_tou_he_tip_B9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 27.4, + "y": 33.25, + "z": 5.0 + }, + "position3d": { + "x": 27.4, + "y": 33.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_B9_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 27.4, + "y": 33.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_B10", + "uuid": "23ad10d7-3570-4cf8-b918-028a80197d12", + "name": "YB_qiang_tou_he_tip_B10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 27.4, + "y": 24.25, + "z": 5.0 + }, + "position3d": { + "x": 27.4, + "y": 24.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_B10_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 27.4, + "y": 24.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_B11", + "uuid": "242cb1a8-47f1-4f86-b06b-ac3d660056f1", + "name": "YB_qiang_tou_he_tip_B11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 27.4, + "y": 15.25, + "z": 5.0 + }, + "position3d": { + "x": 27.4, + "y": 15.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_B11_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 27.4, + "y": 15.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_B12", + "uuid": "753d3de9-3ad6-49c0-9e11-590a7c9f10a4", + "name": "YB_qiang_tou_he_tip_B12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 27.4, + "y": 6.25, + "z": 5.0 + }, + "position3d": { + "x": 27.4, + "y": 6.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_B12_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 27.4, + "y": 6.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_C1", + "uuid": "9cce837e-f890-4e8e-bb1c-e4b656108bac", + "name": "YB_qiang_tou_he_tip_C1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 36.4, + "y": 69.25, + "z": 5.0 + }, + "position3d": { + "x": 36.4, + "y": 69.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_C1_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 36.4, + "y": 69.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_C2", + "uuid": "e52e7f87-b109-4e05-b95d-169314dc5802", + "name": "YB_qiang_tou_he_tip_C2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 36.4, + "y": 60.25, + "z": 5.0 + }, + "position3d": { + "x": 36.4, + "y": 60.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_C2_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 36.4, + "y": 60.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_C3", + "uuid": "5ec69cf3-022b-4bb7-b712-99940ad280bc", + "name": "YB_qiang_tou_he_tip_C3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 36.4, + "y": 51.25, + "z": 5.0 + }, + "position3d": { + "x": 36.4, + "y": 51.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_C3_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 36.4, + "y": 51.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_C4", + "uuid": "18d51d30-a3c6-4ab3-9c3b-71a0f6ba00f6", + "name": "YB_qiang_tou_he_tip_C4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 36.4, + "y": 42.25, + "z": 5.0 + }, + "position3d": { + "x": 36.4, + "y": 42.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_C4_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 36.4, + "y": 42.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_C5", + "uuid": "ae57fbb5-53f2-47b9-b406-a96b236e4dbe", + "name": "YB_qiang_tou_he_tip_C5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 36.4, + "y": 33.25, + "z": 5.0 + }, + "position3d": { + "x": 36.4, + "y": 33.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_C5_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 36.4, + "y": 33.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_C6", + "uuid": "8a3ac64e-85f6-4683-9a1b-f1c0ad1f55a5", + "name": "YB_qiang_tou_he_tip_C6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 36.4, + "y": 24.25, + "z": 5.0 + }, + "position3d": { + "x": 36.4, + "y": 24.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_C6_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 36.4, + "y": 24.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_C7", + "uuid": "f100e964-d5e5-431c-835a-b633467e0a2e", + "name": "YB_qiang_tou_he_tip_C7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 36.4, + "y": 15.25, + "z": 5.0 + }, + "position3d": { + "x": 36.4, + "y": 15.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_C7_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 36.4, + "y": 15.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_C8", + "uuid": "813749c5-0a3e-4022-a2f8-09348d381d78", + "name": "YB_qiang_tou_he_tip_C8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 36.4, + "y": 6.25, + "z": 5.0 + }, + "position3d": { + "x": 36.4, + "y": 6.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_C8_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 36.4, + "y": 6.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_C9", + "uuid": "1a3ca3a5-5bb3-4a62-a338-545a6ec49716", + "name": "YB_qiang_tou_he_tip_C9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 45.4, + "y": 69.25, + "z": 5.0 + }, + "position3d": { + "x": 45.4, + "y": 69.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_C9_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 45.4, + "y": 69.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_C10", + "uuid": "b4b37903-56e9-45c6-9310-6ec741db9a12", + "name": "YB_qiang_tou_he_tip_C10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 45.4, + "y": 60.25, + "z": 5.0 + }, + "position3d": { + "x": 45.4, + "y": 60.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_C10_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 45.4, + "y": 60.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_C11", + "uuid": "88a42986-f185-4644-a9e7-18576c16ce79", + "name": "YB_qiang_tou_he_tip_C11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 45.4, + "y": 51.25, + "z": 5.0 + }, + "position3d": { + "x": 45.4, + "y": 51.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_C11_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 45.4, + "y": 51.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_C12", + "uuid": "968ba430-bb8a-4d3e-892f-32696641589c", + "name": "YB_qiang_tou_he_tip_C12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 45.4, + "y": 42.25, + "z": 5.0 + }, + "position3d": { + "x": 45.4, + "y": 42.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_C12_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 45.4, + "y": 42.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_D1", + "uuid": "3706c3e9-2568-4836-a195-b33cf530cbd9", + "name": "YB_qiang_tou_he_tip_D1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 45.4, + "y": 33.25, + "z": 5.0 + }, + "position3d": { + "x": 45.4, + "y": 33.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_D1_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 45.4, + "y": 33.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_D2", + "uuid": "3aa2d0ac-c70d-4104-900d-67a6ef1512f9", + "name": "YB_qiang_tou_he_tip_D2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 45.4, + "y": 24.25, + "z": 5.0 + }, + "position3d": { + "x": 45.4, + "y": 24.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_D2_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 45.4, + "y": 24.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_D3", + "uuid": "2acd0a23-8d6d-4844-a9d8-089a4a857654", + "name": "YB_qiang_tou_he_tip_D3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 45.4, + "y": 15.25, + "z": 5.0 + }, + "position3d": { + "x": 45.4, + "y": 15.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_D3_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 45.4, + "y": 15.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_D4", + "uuid": "70e9c080-0221-472f-b21d-17ba79afd87f", + "name": "YB_qiang_tou_he_tip_D4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 45.4, + "y": 6.25, + "z": 5.0 + }, + "position3d": { + "x": 45.4, + "y": 6.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_D4_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 45.4, + "y": 6.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_D5", + "uuid": "6366625c-8f90-47e8-88a0-a1523f373ff3", + "name": "YB_qiang_tou_he_tip_D5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 54.4, + "y": 69.25, + "z": 5.0 + }, + "position3d": { + "x": 54.4, + "y": 69.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_D5_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 54.4, + "y": 69.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_D6", + "uuid": "9eac9908-8560-45e2-a8bf-0b793666267a", + "name": "YB_qiang_tou_he_tip_D6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 54.4, + "y": 60.25, + "z": 5.0 + }, + "position3d": { + "x": 54.4, + "y": 60.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_D6_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 54.4, + "y": 60.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_D7", + "uuid": "3bb3a861-6d4a-4f8d-b8af-a18a26578bbe", + "name": "YB_qiang_tou_he_tip_D7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 54.4, + "y": 51.25, + "z": 5.0 + }, + "position3d": { + "x": 54.4, + "y": 51.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_D7_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 54.4, + "y": 51.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_D8", + "uuid": "43795c7f-f815-4147-b778-96faaa3ca1f8", + "name": "YB_qiang_tou_he_tip_D8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 54.4, + "y": 42.25, + "z": 5.0 + }, + "position3d": { + "x": 54.4, + "y": 42.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_D8_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 54.4, + "y": 42.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_D9", + "uuid": "417776b7-564f-467a-9278-463110d8f438", + "name": "YB_qiang_tou_he_tip_D9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 54.4, + "y": 33.25, + "z": 5.0 + }, + "position3d": { + "x": 54.4, + "y": 33.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_D9_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 54.4, + "y": 33.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_D10", + "uuid": "b4830ca4-f4c8-4e5d-8149-060053176308", + "name": "YB_qiang_tou_he_tip_D10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 54.4, + "y": 24.25, + "z": 5.0 + }, + "position3d": { + "x": 54.4, + "y": 24.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_D10_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 54.4, + "y": 24.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_D11", + "uuid": "f97be80a-fba9-4b65-8760-25f7c7f9b534", + "name": "YB_qiang_tou_he_tip_D11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 54.4, + "y": 15.25, + "z": 5.0 + }, + "position3d": { + "x": 54.4, + "y": 15.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_D11_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 54.4, + "y": 15.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_D12", + "uuid": "80f95da7-4745-4e08-83ac-7e3e446f36f2", + "name": "YB_qiang_tou_he_tip_D12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 54.4, + "y": 6.25, + "z": 5.0 + }, + "position3d": { + "x": 54.4, + "y": 6.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_D12_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 54.4, + "y": 6.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_E1", + "uuid": "29aca22a-f5b4-405d-b93d-01709aa6087f", + "name": "YB_qiang_tou_he_tip_E1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 63.4, + "y": 69.25, + "z": 5.0 + }, + "position3d": { + "x": 63.4, + "y": 69.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_E1_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 63.4, + "y": 69.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_E2", + "uuid": "12664031-01c2-4643-a41a-26265e6783e3", + "name": "YB_qiang_tou_he_tip_E2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 63.4, + "y": 60.25, + "z": 5.0 + }, + "position3d": { + "x": 63.4, + "y": 60.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_E2_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 63.4, + "y": 60.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_E3", + "uuid": "b00be33f-71e5-4cdc-bdbc-d4770a2f85a0", + "name": "YB_qiang_tou_he_tip_E3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 63.4, + "y": 51.25, + "z": 5.0 + }, + "position3d": { + "x": 63.4, + "y": 51.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_E3_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 63.4, + "y": 51.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_E4", + "uuid": "b887451b-0bc9-4a3f-ac2f-4f61f49c11d0", + "name": "YB_qiang_tou_he_tip_E4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 63.4, + "y": 42.25, + "z": 5.0 + }, + "position3d": { + "x": 63.4, + "y": 42.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_E4_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 63.4, + "y": 42.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_E5", + "uuid": "647bcee3-9acc-424a-9b29-fc7175d2fe48", + "name": "YB_qiang_tou_he_tip_E5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 63.4, + "y": 33.25, + "z": 5.0 + }, + "position3d": { + "x": 63.4, + "y": 33.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_E5_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 63.4, + "y": 33.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_E6", + "uuid": "83d1dd3f-d39f-418e-acbe-de50143c4806", + "name": "YB_qiang_tou_he_tip_E6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 63.4, + "y": 24.25, + "z": 5.0 + }, + "position3d": { + "x": 63.4, + "y": 24.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_E6_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 63.4, + "y": 24.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_E7", + "uuid": "22dbd56b-d6ef-478b-b0d5-ec7b43ba69a2", + "name": "YB_qiang_tou_he_tip_E7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 63.4, + "y": 15.25, + "z": 5.0 + }, + "position3d": { + "x": 63.4, + "y": 15.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_E7_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 63.4, + "y": 15.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_E8", + "uuid": "158da913-f577-487b-8bb0-509d70def9e6", + "name": "YB_qiang_tou_he_tip_E8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 63.4, + "y": 6.25, + "z": 5.0 + }, + "position3d": { + "x": 63.4, + "y": 6.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_E8_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 63.4, + "y": 6.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_E9", + "uuid": "50f5737f-aa67-44cc-946b-0c60c5ab6adf", + "name": "YB_qiang_tou_he_tip_E9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 72.4, + "y": 69.25, + "z": 5.0 + }, + "position3d": { + "x": 72.4, + "y": 69.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_E9_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 72.4, + "y": 69.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_E10", + "uuid": "f4399daa-5953-4b96-b516-9c59b4b1686c", + "name": "YB_qiang_tou_he_tip_E10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 72.4, + "y": 60.25, + "z": 5.0 + }, + "position3d": { + "x": 72.4, + "y": 60.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_E10_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 72.4, + "y": 60.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_E11", + "uuid": "e977f80f-0167-439b-82a5-aca85fb584d7", + "name": "YB_qiang_tou_he_tip_E11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 72.4, + "y": 51.25, + "z": 5.0 + }, + "position3d": { + "x": 72.4, + "y": 51.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_E11_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 72.4, + "y": 51.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_E12", + "uuid": "6174d363-3e85-4d33-9164-b36186c41141", + "name": "YB_qiang_tou_he_tip_E12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 72.4, + "y": 42.25, + "z": 5.0 + }, + "position3d": { + "x": 72.4, + "y": 42.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_E12_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 72.4, + "y": 42.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_F1", + "uuid": "619109e6-a97b-4f0f-b750-010aa525422f", + "name": "YB_qiang_tou_he_tip_F1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 72.4, + "y": 33.25, + "z": 5.0 + }, + "position3d": { + "x": 72.4, + "y": 33.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_F1_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 72.4, + "y": 33.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_F2", + "uuid": "b296b496-d4fd-48df-88a3-a4d3c85dbf59", + "name": "YB_qiang_tou_he_tip_F2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 72.4, + "y": 24.25, + "z": 5.0 + }, + "position3d": { + "x": 72.4, + "y": 24.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_F2_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 72.4, + "y": 24.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_F3", + "uuid": "5b1a6b8d-e27c-4827-a38d-336a6afbd061", + "name": "YB_qiang_tou_he_tip_F3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 72.4, + "y": 15.25, + "z": 5.0 + }, + "position3d": { + "x": 72.4, + "y": 15.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_F3_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 72.4, + "y": 15.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_F4", + "uuid": "b61d921c-d5b3-4481-ad84-ef0388d83c09", + "name": "YB_qiang_tou_he_tip_F4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 72.4, + "y": 6.25, + "z": 5.0 + }, + "position3d": { + "x": 72.4, + "y": 6.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_F4_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 72.4, + "y": 6.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_F5", + "uuid": "a5426fe0-f551-4cca-b260-5aec866f6b16", + "name": "YB_qiang_tou_he_tip_F5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 81.4, + "y": 69.25, + "z": 5.0 + }, + "position3d": { + "x": 81.4, + "y": 69.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_F5_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 81.4, + "y": 69.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_F6", + "uuid": "a456947d-fe69-4c10-b3ee-5480d8c70636", + "name": "YB_qiang_tou_he_tip_F6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 81.4, + "y": 60.25, + "z": 5.0 + }, + "position3d": { + "x": 81.4, + "y": 60.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_F6_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 81.4, + "y": 60.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_F7", + "uuid": "a5cc2cfd-da28-4136-9ff0-e81cfb208bf4", + "name": "YB_qiang_tou_he_tip_F7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 81.4, + "y": 51.25, + "z": 5.0 + }, + "position3d": { + "x": 81.4, + "y": 51.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_F7_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 81.4, + "y": 51.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_F8", + "uuid": "af703f37-6171-4869-b5f6-38e78147ce38", + "name": "YB_qiang_tou_he_tip_F8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 81.4, + "y": 42.25, + "z": 5.0 + }, + "position3d": { + "x": 81.4, + "y": 42.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_F8_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 81.4, + "y": 42.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_F9", + "uuid": "c97fc5dc-0105-4a2a-890b-6f4d60e01b75", + "name": "YB_qiang_tou_he_tip_F9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 81.4, + "y": 33.25, + "z": 5.0 + }, + "position3d": { + "x": 81.4, + "y": 33.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_F9_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 81.4, + "y": 33.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_F10", + "uuid": "5e9b0668-c5a0-41ad-910a-b599b6b2e153", + "name": "YB_qiang_tou_he_tip_F10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 81.4, + "y": 24.25, + "z": 5.0 + }, + "position3d": { + "x": 81.4, + "y": 24.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_F10_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 81.4, + "y": 24.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_F11", + "uuid": "caefca65-5c17-4d9d-88b1-95581fef2e23", + "name": "YB_qiang_tou_he_tip_F11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 81.4, + "y": 15.25, + "z": 5.0 + }, + "position3d": { + "x": 81.4, + "y": 15.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_F11_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 81.4, + "y": 15.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_F12", + "uuid": "7c5a3386-6559-4a3c-a89a-5429edf21e9e", + "name": "YB_qiang_tou_he_tip_F12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 81.4, + "y": 6.25, + "z": 5.0 + }, + "position3d": { + "x": 81.4, + "y": 6.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_F12_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 81.4, + "y": 6.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_G1", + "uuid": "094873f3-718b-44c0-9c42-36c33f18cfa6", + "name": "YB_qiang_tou_he_tip_G1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 90.4, + "y": 69.25, + "z": 5.0 + }, + "position3d": { + "x": 90.4, + "y": 69.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_G1_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 90.4, + "y": 69.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_G2", + "uuid": "5cc093d8-52ae-40a3-b3fb-78e519b98161", + "name": "YB_qiang_tou_he_tip_G2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 90.4, + "y": 60.25, + "z": 5.0 + }, + "position3d": { + "x": 90.4, + "y": 60.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_G2_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 90.4, + "y": 60.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_G3", + "uuid": "746ddbe9-3614-4786-a011-c55d8f93d003", + "name": "YB_qiang_tou_he_tip_G3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 90.4, + "y": 51.25, + "z": 5.0 + }, + "position3d": { + "x": 90.4, + "y": 51.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_G3_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 90.4, + "y": 51.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_G4", + "uuid": "11fb839f-6d65-4797-be35-a1b8000f6967", + "name": "YB_qiang_tou_he_tip_G4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 90.4, + "y": 42.25, + "z": 5.0 + }, + "position3d": { + "x": 90.4, + "y": 42.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_G4_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 90.4, + "y": 42.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_G5", + "uuid": "c6288c36-b0ec-416a-80f0-5ca9c9d745b5", + "name": "YB_qiang_tou_he_tip_G5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 90.4, + "y": 33.25, + "z": 5.0 + }, + "position3d": { + "x": 90.4, + "y": 33.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_G5_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 90.4, + "y": 33.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_G6", + "uuid": "1d509200-6a94-46e0-89e4-87e83b5c19d7", + "name": "YB_qiang_tou_he_tip_G6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 90.4, + "y": 24.25, + "z": 5.0 + }, + "position3d": { + "x": 90.4, + "y": 24.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_G6_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 90.4, + "y": 24.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_G7", + "uuid": "1f2c2581-6554-4da9-80ac-f158df68e5b3", + "name": "YB_qiang_tou_he_tip_G7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 90.4, + "y": 15.25, + "z": 5.0 + }, + "position3d": { + "x": 90.4, + "y": 15.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_G7_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 90.4, + "y": 15.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_G8", + "uuid": "791dfe96-f050-40bd-b42d-95533183a3fa", + "name": "YB_qiang_tou_he_tip_G8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 90.4, + "y": 6.25, + "z": 5.0 + }, + "position3d": { + "x": 90.4, + "y": 6.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_G8_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 90.4, + "y": 6.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_G9", + "uuid": "fb68d237-559d-47bb-945e-b27ee6e64abb", + "name": "YB_qiang_tou_he_tip_G9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 99.4, + "y": 69.25, + "z": 5.0 + }, + "position3d": { + "x": 99.4, + "y": 69.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_G9_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 99.4, + "y": 69.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_G10", + "uuid": "6e77c407-e9b2-4729-91ea-93df84074c5e", + "name": "YB_qiang_tou_he_tip_G10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 99.4, + "y": 60.25, + "z": 5.0 + }, + "position3d": { + "x": 99.4, + "y": 60.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_G10_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 99.4, + "y": 60.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_G11", + "uuid": "1c3615aa-f72d-4c6d-be73-3ad9f5a164c0", + "name": "YB_qiang_tou_he_tip_G11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 99.4, + "y": 51.25, + "z": 5.0 + }, + "position3d": { + "x": 99.4, + "y": 51.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_G11_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 99.4, + "y": 51.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_G12", + "uuid": "4b87f85e-f578-4635-bd79-f3224ed3db2f", + "name": "YB_qiang_tou_he_tip_G12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 99.4, + "y": 42.25, + "z": 5.0 + }, + "position3d": { + "x": 99.4, + "y": 42.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_G12_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 99.4, + "y": 42.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_H1", + "uuid": "a41c0b51-3135-4a4b-8ba2-dd5540234844", + "name": "YB_qiang_tou_he_tip_H1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 99.4, + "y": 33.25, + "z": 5.0 + }, + "position3d": { + "x": 99.4, + "y": 33.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_H1_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 99.4, + "y": 33.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_H2", + "uuid": "7ef66c65-2fe2-4942-a5ba-d2fb7a4d2056", + "name": "YB_qiang_tou_he_tip_H2", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 99.4, + "y": 24.25, + "z": 5.0 + }, + "position3d": { + "x": 99.4, + "y": 24.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_H2_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 99.4, + "y": 24.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_H3", + "uuid": "5fc311e6-0c44-4e60-94dc-47171e409b33", + "name": "YB_qiang_tou_he_tip_H3", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 99.4, + "y": 15.25, + "z": 5.0 + }, + "position3d": { + "x": 99.4, + "y": 15.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_H3_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 99.4, + "y": 15.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_H4", + "uuid": "a329a078-974e-4be3-8cab-884225846403", + "name": "YB_qiang_tou_he_tip_H4", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 99.4, + "y": 6.25, + "z": 5.0 + }, + "position3d": { + "x": 99.4, + "y": 6.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_H4_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 99.4, + "y": 6.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_H5", + "uuid": "29a4e8a0-cb90-4af3-988f-b9a5edbd9b6a", + "name": "YB_qiang_tou_he_tip_H5", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 108.4, + "y": 69.25, + "z": 5.0 + }, + "position3d": { + "x": 108.4, + "y": 69.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_H5_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 108.4, + "y": 69.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_H6", + "uuid": "5599c550-cca6-4a6c-b374-0e9d6cae1704", + "name": "YB_qiang_tou_he_tip_H6", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 108.4, + "y": 60.25, + "z": 5.0 + }, + "position3d": { + "x": 108.4, + "y": 60.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_H6_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 108.4, + "y": 60.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_H7", + "uuid": "dbbe55df-d0b1-48b5-bdeb-d02af5f3ebb8", + "name": "YB_qiang_tou_he_tip_H7", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 108.4, + "y": 51.25, + "z": 5.0 + }, + "position3d": { + "x": 108.4, + "y": 51.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_H7_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 108.4, + "y": 51.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_H8", + "uuid": "200bbee8-6a9c-49ba-a317-5de0e6efe82f", + "name": "YB_qiang_tou_he_tip_H8", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 108.4, + "y": 42.25, + "z": 5.0 + }, + "position3d": { + "x": 108.4, + "y": 42.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_H8_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 108.4, + "y": 42.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_H9", + "uuid": "c0fd9db2-913d-4085-bf96-4d2d8ecce12f", + "name": "YB_qiang_tou_he_tip_H9", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 108.4, + "y": 33.25, + "z": 5.0 + }, + "position3d": { + "x": 108.4, + "y": 33.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_H9_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 108.4, + "y": 33.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_H10", + "uuid": "bd7a60a9-6f93-468c-beb4-c2d93adf3249", + "name": "YB_qiang_tou_he_tip_H10", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 108.4, + "y": 24.25, + "z": 5.0 + }, + "position3d": { + "x": 108.4, + "y": 24.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_H10_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 108.4, + "y": 24.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_H11", + "uuid": "c69c02d6-1461-4608-872e-9c081d8166e4", + "name": "YB_qiang_tou_he_tip_H11", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 108.4, + "y": 15.25, + "z": 5.0 + }, + "position3d": { + "x": 108.4, + "y": 15.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_H11_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 108.4, + "y": 15.25, + "z": 5.0 + } + }, + { + "id": "YB_qiang_tou_he_tip_H12", + "uuid": "1bfb93ea-5e08-485a-a36a-16d9ab9c6e69", + "name": "YB_qiang_tou_he_tip_H12", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "fd6c4b56-e64d-4bf9-aadf-0b201c56a784", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 50.0, + "width": 10.0, + "height": 10.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 108.4, + "y": 6.25, + "z": 5.0 + }, + "position3d": { + "x": 108.4, + "y": 6.25, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 10.0, + "size_y": 10.0, + "size_z": 50.0, + "category": "container", + "model": "YB_qiang_tou", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 1000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 10.0, + "height": 50.0 + }, + "data": { + "thing": "YB_qiang_tou_he_tip_H12_volume_tracker", + "max_volume": 1000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 108.4, + "y": 6.25, + "z": 5.0 + } + } + ] + }, + { + "id": "YB_shi_pei_qi_kuai", + "category": [ + "yb3", + "YB_bottle_carriers" + ], + "class": { + "module": "unilabos.resources.bioyond.YB_bottle_carriers:YB_shi_pei_qi_kuai", + "type": "pylabrobot" + }, + "description": "YB_shi_pei_qi_kuai", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/bioyond/YB_bottle_carriers.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "YB_shi_pei_qi_kuai", + "uuid": "abf72f9f-254a-4ebd-ad4f-9cb1ecf2ef78", + "name": "YB_shi_pei_qi_kuai", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "bottle_carrier", + "class": "", + "pose": { + "size": { + "depth": 30.0, + "width": 127.8, + "height": 85.5 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "BottleCarrier", + "size_x": 127.8, + "size_y": 85.5, + "size_z": 30.0, + "category": "bottle_carrier", + "model": "YB_shi_pei_qi_kuai", + "barcode": null, + "preferred_pickup_location": null, + "num_items_x": 1, + "num_items_y": 1, + "num_items_z": 1, + "layout": "x-y", + "sites": [ + { + "label": "0", + "visible": true, + "occupied_by": null, + "position": { + "x": 23.9, + "y": 2.75, + "z": 0.0 + }, + "size": { + "width": 80.0, + "height": 80.0, + "depth": 0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + } + ] + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + ] + }, + { + "id": "YB_ye", + "category": [ + "yb3", + "YB_bottle_carriers" + ], + "class": { + "module": "unilabos.resources.bioyond.YB_bottle_carriers:YB_ye", + "type": "pylabrobot" + }, + "description": "YB_ye_Bottle_Carrier", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/bioyond/YB_bottle_carriers.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "YB_ye", + "uuid": "7ab42d7c-7c93-4032-a0ac-fce946e5c7a0", + "name": "YB_ye", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "bottle_carrier", + "class": "", + "pose": { + "size": { + "depth": 20.0, + "width": 127.8, + "height": 85.5 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "BottleCarrier", + "size_x": 127.8, + "size_y": 85.5, + "size_z": 20.0, + "category": "bottle_carrier", + "model": "YB_ye", + "barcode": null, + "preferred_pickup_location": null, + "num_items_x": 1, + "num_items_y": 1, + "num_items_z": 1, + "layout": "x-y", + "sites": [ + { + "label": "0", + "visible": true, + "occupied_by": "YB_ye_flask_1", + "position": { + "x": 33.9, + "y": 12.75, + "z": 5.0 + }, + "size": { + "width": 60.0, + "height": 60.0, + "depth": 0 + }, + "content_type": [ + "bottle", + "container", + "tube", + "bottle_carrier", + "tip_rack" + ] + } + ] + }, + "data": {}, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + { + "id": "YB_ye_flask_1", + "uuid": "60ec5b98-3a23-499b-844f-4a2576f035d4", + "name": "YB_ye_flask_1", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "7ab42d7c-7c93-4032-a0ac-fce946e5c7a0", + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 70.0, + "width": 40.0, + "height": 40.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 33.9, + "y": 12.75, + "z": 5.0 + }, + "position3d": { + "x": 33.9, + "y": 12.75, + "z": 5.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 40.0, + "size_y": 40.0, + "size_z": 70.0, + "category": "container", + "model": "YB_ye_Bottle", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 50000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 40.0, + "height": 70.0 + }, + "data": { + "thing": "YB_ye_flask_1_volume_tracker", + "max_volume": 50000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 33.9, + "y": 12.75, + "z": 5.0 + } + } + ] + }, + { + "id": "YB_ye_100ml_Bottle", + "category": [ + "yb3", + "YB_bottle_carriers" + ], + "class": { + "module": "unilabos.resources.bioyond.YB_bottles:YB_ye_100ml_Bottle", + "type": "pylabrobot" + }, + "description": "YB_ye_100ml_Bottle", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/bioyond/YB_bottle_carriers.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "YB_ye_100ml_Bottle", + "uuid": "b5ececc9-1872-4435-ba5a-706bd8e1be4e", + "name": "YB_ye_100ml_Bottle", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 90.0, + "width": 50.0, + "height": 50.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "circle", + "extra": null + }, + "config": { + "type": "Bottle", + "size_x": 50.0, + "size_y": 50.0, + "size_z": 90.0, + "category": "container", + "model": "YB_100ml_yeti", + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 100000.0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null, + "diameter": 50.0, + "height": 90.0 + }, + "data": { + "thing": "YB_ye_100ml_Bottle_volume_tracker", + "max_volume": 100000.0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + ] + }, + { + "id": "container", + "category": [ + "container" + ], + "class": { + "module": "unilabos.resources.container:get_regular_container", + "type": "pylabrobot" + }, + "description": "regular organic container", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/organic/container.yaml", + "handles": [ + { + "data_key": "fluid_in", + "data_source": "handle", + "data_type": "fluid", + "handler_key": "top", + "io_type": "target", + "label": "top", + "side": "NORTH" + }, + { + "data_key": "fluid_out", + "data_source": "handle", + "data_type": "fluid", + "handler_key": "bottom", + "io_type": "source", + "label": "bottom", + "side": "SOUTH" + }, + { + "data_key": "mechanical_port", + "data_source": "handle", + "data_type": "mechanical", + "handler_key": "bind", + "io_type": "target", + "label": "bind", + "side": "WEST" + } + ], + "icon": "Flask.webp", + "init_param_schema": {}, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [ + { + "id": "get_regular_container", + "uuid": "24b7cf04-ad95-4da0-9d62-28afd16c11db", + "name": "get_regular_container", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "container", + "class": "", + "pose": { + "size": { + "depth": 0.0, + "width": 0.0, + "height": 0.0 + }, + "scale": { + "x": 1.0, + "y": 1.0, + "z": 1.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": { + "type": "RegularContainer", + "size_x": 0, + "size_y": 0, + "size_z": 0, + "category": "container", + "model": null, + "barcode": null, + "preferred_pickup_location": null, + "max_volume": 0, + "material_z_thickness": null, + "compute_volume_from_height": null, + "compute_height_from_volume": null, + "height_volume_data": null + }, + "data": { + "thing": "get_regular_container_volume_tracker", + "max_volume": 0, + "volume": 0, + "liquids": [], + "liquid_history": [], + "unknown_counter": 0 + }, + "extra": {}, + "machine_name": "", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + ] + }, + { + "id": "TransformXYZDeck", + "category": [ + "deck" + ], + "class": { + "module": "unilabos.devices.liquid_handling.laiyu.laiyu:TransformXYZDeck", + "type": "pylabrobot" + }, + "description": "Laiyu deck", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/laiyu/deck.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "model": { + "mesh": "liquid_transform_xyz", + "path": "https://leap-lab.oss-cn-zhangjiakou.aliyuncs.com/uni-lab/devices/liquid_transform_xyz/macro_device.xacro", + "type": "device" + }, + "registry_type": "resource", + "version": "1.0.0", + "config_info": [] + }, + { + "id": "bottle_container", + "category": [ + "resource_container", + "container" + ], + "class": { + "module": "unilabos.devices.resource_container.container:BottleRackContainer", + "type": "python" + }, + "description": "96孔板", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/laiyu/container.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "model": { + "children_mesh": "bottle/meshes/bottle.stl", + "children_mesh_path": "https://leap-lab.oss-cn-zhangjiakou.aliyuncs.com/uni-lab/resources/bottle/modal.xacro", + "children_mesh_tf": [ + 0.04, + 0.04, + 0, + 0, + 0, + 0 + ], + "mesh": "bottle_container/meshes/bottle_container.stl", + "mesh_tf": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "path": "https://leap-lab.oss-cn-zhangjiakou.aliyuncs.com/uni-lab/resources/bottle_container/modal.xacro", + "type": "resource" + }, + "registry_type": "resource", + "version": "1.0.0" + }, + { + "id": "tube_container", + "category": [ + "resource_container", + "container" + ], + "class": { + "module": "unilabos.devices.resource_container.container:TubeRackContainer", + "type": "python" + }, + "description": "96孔板", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/laiyu/container.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "model": { + "children_mesh": "tube/meshes/tube.stl", + "children_mesh_path": "https://leap-lab.oss-cn-zhangjiakou.aliyuncs.com/uni-lab/resources/tube/modal.xacro", + "children_mesh_tf": [ + 0.017, + 0.017, + 0, + 0, + 0, + 0 + ], + "mesh": "tube_container/meshes/tube_container.stl", + "mesh_tf": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "path": "https://leap-lab.oss-cn-zhangjiakou.aliyuncs.com/uni-lab/resources/tube_container/modal.xacro", + "type": "resource" + }, + "registry_type": "resource", + "version": "1.0.0" + }, + { + "id": "hplc_plate", + "category": [ + "resource_container" + ], + "class": { + "module": "unilabos.devices.resource_container.container:PlateContainer", + "type": "python" + }, + "description": "HPLC板", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/common/resource_container.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "model": { + "mesh": "hplc_plate/meshes/hplc_plate.stl", + "mesh_tf": [ + 0, + 0, + 0, + 0, + 0, + 3.1416 + ], + "path": "https://leap-lab.oss-cn-zhangjiakou.aliyuncs.com/uni-lab/resources/hplc_plate/modal.xacro", + "type": "resource" + }, + "registry_type": "resource", + "version": "1.0.0" + }, + { + "id": "plate_96", + "category": [ + "resource_container" + ], + "class": { + "module": "unilabos.devices.resource_container.container:PlateContainer", + "type": "python" + }, + "description": "96孔板", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/common/resource_container.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "model": { + "mesh": "plate_96/meshes/plate_96.stl", + "mesh_tf": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "path": "https://leap-lab.oss-cn-zhangjiakou.aliyuncs.com/uni-lab/resources/plate_96/modal.xacro", + "type": "resource" + }, + "registry_type": "resource", + "version": "1.0.0" + }, + { + "id": "plate_96_high", + "category": [ + "resource_container" + ], + "class": { + "module": "unilabos.devices.resource_container.container:PlateContainer", + "type": "python" + }, + "description": "96孔板", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/common/resource_container.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "model": { + "mesh": "plate_96_high/meshes/plate_96_high.stl", + "mesh_tf": [ + 0, + 0.086, + 0, + 1.5708, + 0, + 1.5708 + ], + "path": "https://leap-lab.oss-cn-zhangjiakou.aliyuncs.com/uni-lab/resources/plate_96_high/modal.xacro", + "type": "resource" + }, + "registry_type": "resource", + "version": "1.0.0" + }, + { + "id": "tiprack_96_high", + "category": [ + "resource_container" + ], + "class": { + "module": "unilabos.devices.resource_container.container:TipRackContainer", + "type": "python" + }, + "description": "96孔板", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/common/resource_container.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "model": { + "children_mesh": "generic_labware_tube_10_75/meshes/0_base.stl", + "children_mesh_path": "https://leap-lab.oss-cn-zhangjiakou.aliyuncs.com/uni-lab/resources/generic_labware_tube_10_75/modal.xacro", + "children_mesh_tf": [ + 0.0018, + 0.0018, + -0.03, + -1.5708, + 0, + 0 + ], + "mesh": "tiprack_96_high/meshes/tiprack_96_high.stl", + "mesh_tf": [ + 0, + 0.086, + 0, + 1.5708, + 0, + 1.5708 + ], + "path": "https://leap-lab.oss-cn-zhangjiakou.aliyuncs.com/uni-lab/resources/tiprack_96_high/modal.xacro", + "type": "resource" + }, + "registry_type": "resource", + "version": "1.0.0" + }, + { + "id": "tiprack_box", + "category": [ + "resource_container" + ], + "class": { + "module": "unilabos.devices.resource_container.container:TipRackContainer", + "type": "python" + }, + "description": "96针头盒", + "file_path": "/Users/dp/software/GitHub/LeapLab/Uni-Lab-OS/unilabos/registry/resources/common/resource_container.yaml", + "handles": [], + "icon": "", + "init_param_schema": {}, + "model": { + "children_mesh": "tip/meshes/tip.stl", + "children_mesh_path": "https://leap-lab.oss-cn-zhangjiakou.aliyuncs.com/uni-lab/resources/tip/modal.xacro", + "children_mesh_tf": [ + 0.0045, + 0.0045, + 0, + 0, + 0, + 0 + ], + "mesh": "tiprack_box/meshes/tiprack_box.stl", + "mesh_tf": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "path": "https://leap-lab.oss-cn-zhangjiakou.aliyuncs.com/uni-lab/resources/tiprack_box/modal.xacro", + "type": "resource" + }, + "registry_type": "resource", + "version": "1.0.0" + } + ] +} \ No newline at end of file diff --git a/unilabos/test/experiments/req_resource_tree_add.json b/unilabos/test/experiments/req_resource_tree_add.json new file mode 100644 index 000000000..01bd00e5e --- /dev/null +++ b/unilabos/test/experiments/req_resource_tree_add.json @@ -0,0 +1,97 @@ +{ + "nodes": [ + { + "id": "host_node", + "uuid": "2eb25cbc-a9ce-4767-a15e-03d626487954", + "name": "host_node", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": "", + "type": "device", + "class": "host_node", + "pose": { + "size": { + "depth": 0.0, + "width": 0.0, + "height": 0.0 + }, + "scale": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": {}, + "data": {}, + "extra": {}, + "machine_name": "" + }, + { + "id": "fault_injection_device", + "uuid": "360ade99-b610-497a-bc8f-28181ca9e2da", + "name": "fault_injection_device", + "description": "", + "schema": {}, + "model": {}, + "icon": "", + "parent_uuid": null, + "type": "device", + "class": "fault_injection_device", + "pose": { + "size": { + "depth": 0.0, + "width": 0.0, + "height": 0.0 + }, + "scale": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "layout": "x-y", + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "position3d": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "cross_section_type": "rectangle", + "extra": null + }, + "config": {}, + "data": {}, + "extra": {}, + "machine_name": "bogon" + } + ], + "mount_uuid": "" +} \ No newline at end of file diff --git a/unilabos/test/experiments/res_device_registry_upload.json b/unilabos/test/experiments/res_device_registry_upload.json new file mode 100644 index 000000000..0dd944451 --- /dev/null +++ b/unilabos/test/experiments/res_device_registry_upload.json @@ -0,0 +1,2 @@ +200 +{"code":0} \ No newline at end of file diff --git a/unilabos/test/experiments/res_resource_registry_upload.json b/unilabos/test/experiments/res_resource_registry_upload.json new file mode 100644 index 000000000..0dd944451 --- /dev/null +++ b/unilabos/test/experiments/res_resource_registry_upload.json @@ -0,0 +1,2 @@ +200 +{"code":0} \ No newline at end of file diff --git a/unilabos/test/experiments/res_resource_tree_add.json b/unilabos/test/experiments/res_resource_tree_add.json new file mode 100644 index 000000000..19a85734c --- /dev/null +++ b/unilabos/test/experiments/res_resource_tree_add.json @@ -0,0 +1,2 @@ +200 +{"code":0,"data":[{"uuid":"360ade99-b610-497a-bc8f-28181ca9e2da","cloud_uuid":"048bcec1-09a1-4ebc-a7a7-830f764c2258","id":"fault_injection_device","name":"fault_injection_device"},{"uuid":"2eb25cbc-a9ce-4767-a15e-03d626487954","cloud_uuid":"38b63f19-888a-46db-9832-26f0232b6b32","id":"host_node","name":"host_node"}]} \ No newline at end of file diff --git a/unilabos/test/experiments/startup_config.json b/unilabos/test/experiments/startup_config.json new file mode 100644 index 000000000..390d47e4b --- /dev/null +++ b/unilabos/test/experiments/startup_config.json @@ -0,0 +1 @@ +{"code":0,"data":{"nodes":[{"uuid":"38b63f19-888a-46db-9832-26f0232b6b32","parent_uuid":"","id":"host_node","name":"host_node","type":"device","class":"host_node","parent":"","pose":{"layout":"x-y","position":{"x":0,"y":0,"z":0},"position_3d":{"x":0,"y":0,"z":0},"size":{"width":0,"height":0,"depth":0},"scale":{"x":1,"y":1,"z":1},"rotation":{"x":0,"y":0,"z":0},"extra":null,"cross_section_type":"rectangle"},"config":{},"data":{},"schema":{},"description":"","model":null,"position":{"x":0,"y":0,"z":0}},{"uuid":"048bcec1-09a1-4ebc-a7a7-830f764c2258","parent_uuid":"","id":"fault_injection_device","name":"fault_injection_device","type":"device","class":"fault_injection_device","parent":"","pose":{"layout":"x-y","position":{"x":0,"y":0,"z":0},"position_3d":{"x":0,"y":0,"z":0},"size":{"width":0,"height":0,"depth":0},"scale":{"x":1,"y":1,"z":1},"rotation":{"x":0,"y":0,"z":0},"extra":null,"cross_section_type":"rectangle"},"config":{},"data":{},"schema":{},"description":"","model":null,"position":{"x":0,"y":0,"z":0}}],"edges":[]}} \ No newline at end of file